:root {
  color-scheme: dark;
  --ink: #11110f;
  --ink-2: #161512;
  --ink-3: #1d1b17;
  --paper: #f5efe4;
  --muted: #a8a195;
  --muted-strong: #d2cabd;
  --acid: #e4663d;
  --acid-dark: #b74828;
  --orange: #e9a23b;
  --blue: #7aa2b8;
  --success: #90c590;
  --danger: #e47b6e;
  --line: rgba(245, 239, 228, 0.14);
  --line-strong: rgba(245, 239, 228, 0.3);
  --surface: #1b1a17;
  --surface-soft: #171613;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  --radius-sm: 0.35rem;
  --radius: 0.55rem;
  --radius-lg: 0.85rem;
  --radius-xl: 1rem;
  --content: 80rem;
  --font: "Helvetica Neue", Inter, Helvetica, Arial, sans-serif;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, #171612 0, var(--ink) 34rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: rgba(228, 102, 61, 0.2);
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.promo-bar {
  padding: 0.62rem 1rem;
  border-bottom: 1px solid rgba(17, 17, 15, 0.14);
  background: #e9dfcf;
  color: #1a1814;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 15, 0.97);
}

.header-inner {
  width: min(100%, var(--content));
  min-height: 4.8rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 15, 0.25);
  border-radius: 0.25rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: -0.06em;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav a,
.header-link {
  padding: 0.7rem 0.85rem;
  border-radius: 0.25rem;
  color: var(--muted-strong);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  min-height: 1.35rem;
  padding: 0.1rem;
  border-radius: 0.2rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.68rem;
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle {
  grid-template-rows: repeat(3, min-content);
  gap: 0.25rem;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-5px) rotate(-45deg);
}

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.4rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  border-top: 1px solid var(--line);
}

.section-compact {
  padding-block: clamp(2.8rem, 6vw, 5rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display,
h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 7.2vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.7vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.lead {
  max-width: 42rem;
  margin-bottom: 1.8rem;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.text-muted,
.section-heading > p:not(.eyebrow),
.product-copy,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.button {
  min-height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
  background: transparent;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.button.primary {
  background: var(--acid);
  color: var(--ink);
  box-shadow: none;
}

.button.primary:hover {
  background: #f07850;
  box-shadow: none;
}

.button.secondary,
.button.ghost {
  border-color: var(--line-strong);
  background: transparent;
}

.button.secondary:hover,
.button.ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
}

.button.danger:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.button.compact {
  min-height: 2.75rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.7rem;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero {
  min-height: min(46rem, calc(100svh - 6rem));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 6.25rem);
}

.hero-copy h1 {
  max-width: 10.5ch;
}

.hero-copy h1 em {
  color: var(--acid);
  font-style: normal;
}

.hero-selector {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.8rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #0c0c0a;
}

.hero-selector-button {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-selector-button:hover,
.hero-selector-button:focus-visible {
  color: var(--paper);
  border-color: var(--line-strong);
}

.hero-selector-button[aria-selected="true"] {
  border-color: rgba(228, 102, 61, 0.52);
  background: rgba(228, 102, 61, 0.12);
  color: var(--paper);
}

.hero-facts {
  max-width: 46rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 0;
  border-block: 1px solid var(--line);
}

.hero-facts div {
  padding: 1rem 1rem 1rem 0;
  border-right: 1px solid var(--line);
}

.hero-facts div + div {
  padding-left: 1rem;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-offer {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: #0a0a09;
  box-shadow: var(--shadow);
}

.hero-offer-meter {
  height: 2.45rem;
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--line);
  background: #11110f;
}

.hero-offer-meter span {
  width: 0.35rem;
  height: 35%;
  border-radius: 1rem;
  background: #403c36;
}

.hero-offer-meter span:nth-child(2),
.hero-offer-meter span:nth-child(7) { height: 60%; }

.hero-offer-meter span:nth-child(3),
.hero-offer-meter span:nth-child(6) { height: 82%; }

.hero-offer-meter span:nth-child(4),
.hero-offer-meter span:nth-child(5) {
  height: 100%;
  background: var(--acid);
  box-shadow: 0 0 0.8rem rgba(228, 102, 61, 0.28);
}

.hero-offer-media {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #070706;
}

.hero-offer .hero-offer-media img {
  display: block;
  aspect-ratio: 1.78;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  transition: opacity 150ms ease;
}

.hero-offer-body {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.hero-offer-kicker {
  margin-bottom: 0.55rem;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-offer-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.hero-offer-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
}

.hero-offer-heading strong {
  flex: 0 0 auto;
  color: var(--paper);
  font-size: 1.05rem;
}

.hero-offer-body > p:not(.hero-offer-kicker) {
  max-width: 46rem;
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero-demo-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.2rem 0 1.35rem;
  padding-block: 0.85rem;
  border-block: 1px solid var(--line);
}

.hero-demo-line a {
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--acid-dark);
  text-underline-offset: 0.22rem;
}

.floating-label {
  position: absolute;
  right: -0.6rem;
  bottom: 2rem;
  max-width: 13rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.35rem;
  background: #11110f;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.floating-label strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--acid);
}

.floating-label small {
  color: var(--muted);
  line-height: 1.4;
}

.home-product-showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #090908;
  box-shadow: var(--shadow);
}

.home-showcase-grid {
  min-height: 32rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.45rem;
  padding: 0.45rem;
}

.hero-visual .home-showcase-grid img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: calc(var(--radius) - 0.25rem);
  object-fit: cover;
  box-shadow: none;
}

.home-showcase-featured {
  grid-column: 1 / -1;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.studio-signal-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #0c0c0a;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.trust-item {
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.signal-led {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 190, 129, 0.75);
  border-radius: 50%;
  background: #e4663d;
  box-shadow: 0 0 0 0.22rem rgba(228, 102, 61, 0.12), 0 0 0.85rem rgba(228, 102, 61, 0.24);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.trust-item small {
  margin-bottom: 0.28rem;
  color: var(--acid);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.product-media {
  position: relative;
  aspect-ratio: 1.3;
  overflow: hidden;
  background: #0a0b0d;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.bundle-product-media {
  display: block;
}

.bundle-thumb-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #151719;
}

.bundle-thumb-grid img {
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}

.product-card:hover .bundle-thumb-grid img {
  transform: scale(1.035);
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.25rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.product-type {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy {
  min-height: 5.2rem;
  margin-bottom: 1.2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.38rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  color: var(--muted-strong);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-footer {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-price strong,
.store-price {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.product-price small,
.price-note {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.comparison-section {
  background: #e9dfcf;
  color: #1c1a16;
}

.comparison-section .eyebrow {
  color: var(--acid-dark);
}

.comparison-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: 2rem;
}

.comparison-heading p:last-child {
  margin-bottom: 0.45rem;
  color: #655f56;
  line-height: 1.65;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-block: 1px solid rgba(28, 26, 22, 0.25);
}

.product-comparison {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  text-align: left;
}

.product-comparison th,
.product-comparison td {
  padding: 1.15rem 1rem;
  border-bottom: 1px solid rgba(28, 26, 22, 0.16);
  vertical-align: top;
  line-height: 1.5;
}

.product-comparison thead th {
  color: #6c655b;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-comparison tbody th,
.product-comparison tbody td:last-child {
  font-weight: 800;
}

.product-comparison a {
  text-decoration: underline;
  text-decoration-color: rgba(183, 72, 40, 0.45);
  text-underline-offset: 0.25em;
}

.product-comparison a:hover {
  color: var(--acid-dark);
}

.comparison-note {
  margin: 1rem 0 0;
  color: #6c655b;
  font-size: 0.74rem;
  line-height: 1.55;
}

.decision-help {
  background: var(--ink-3);
}

.decision-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.decision-help-card {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--ink-2);
}

.decision-label {
  margin-bottom: 1.4rem;
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-help-card .button-row {
  margin-top: 1.7rem;
}

.recommendation-form {
  display: grid;
  gap: 1.25rem;
}

.recommendation-choices {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.recommendation-choices legend {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.recommendation-choices label {
  position: relative;
  cursor: pointer;
}

.recommendation-choices input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.recommendation-choices span {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.recommendation-choices span::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.recommendation-choices input:checked + span {
  border-color: rgba(228, 102, 61, 0.62);
  background: rgba(228, 102, 61, 0.08);
  color: var(--paper);
}

.recommendation-choices input:checked + span::before {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 0 0.22rem rgba(228, 102, 61, 0.13);
}

.recommendation-choices input:focus-visible + span {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.recommendation-result {
  display: grid;
  gap: 0.8rem;
}

.recommendation-result[hidden],
.recommendation-email[hidden],
.recommendation-form[hidden],
.recommendation-email-toggle[hidden] {
  display: none;
}

.recommendation-result h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
}

.recommendation-result > p:not(.decision-label):not(.recommendation-match) {
  color: var(--muted);
  line-height: 1.6;
}

.recommendation-match {
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(228, 102, 61, 0.34);
  border-radius: 0.2rem;
  color: var(--acid);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.recommendation-email {
  margin-top: 1.1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.recommendation-email p {
  margin: 0;
  line-height: 1.55;
}

.recommendation-email p small {
  color: var(--muted);
}

.recommendation-email-toggle {
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--acid-dark);
  text-underline-offset: 0.22rem;
  cursor: pointer;
}

.feature-grid,
.step-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.step-card,
.audience-card,
.info-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.feature-card,
.step-card,
.audience-card {
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.feature-number,
.step-number {
  display: grid;
  place-items: center;
  width: 2.7rem;
  aspect-ratio: 1;
  margin-bottom: 2.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.25rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card p,
.step-card p,
.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.audience-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink-3);
}

.recommendation-card {
  transition: transform 180ms ease, border-color 180ms ease;
}

.recommendation-card:hover,
.recommendation-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.recommendation-card span {
  margin-top: 1.4rem;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 60rem;
  margin-inline: auto;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 1.45rem 3rem 1.45rem 0;
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.2rem;
  color: var(--acid);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 52rem;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-3);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4.5rem);
}

.cta-band h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0b09;
}

.footer-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.4rem) 2.2rem;
  display: grid;
  grid-template-columns: minmax(15rem, 1.4fr) repeat(3, minmax(8rem, 0.6fr));
  gap: 2.2rem;
}

.footer-brand p {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-column strong {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: 1.4rem clamp(1rem, 4vw, 2.4rem) calc(1.4rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: #777b76;
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Product detail */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--paper);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(3rem, 7vw, 6rem);
}

.product-hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
}

.product-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.bundle-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #090908;
  box-shadow: var(--shadow);
}

.product-visual .bundle-hero-grid img {
  min-width: 0;
  height: 100%;
  aspect-ratio: 1.77;
  border: 0;
  border-radius: calc(var(--radius) - 0.25rem);
  object-fit: cover;
  box-shadow: none;
}

.product-visual figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: right;
}

.product-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.product-buy .store-price {
  margin-right: 0.5rem;
}

.microcopy {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.purchase-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 1.35rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.purchase-assurance li {
  color: var(--muted-strong);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.45;
}

.purchase-assurance li::before {
  content: "— ";
  color: var(--acid);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-item {
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.spec-item:last-child {
  border-right: 0;
}

.spec-item span,
.spec-item strong {
  display: block;
}

.spec-item span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-item strong {
  font-size: 0.92rem;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted-strong);
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  color: var(--acid);
  font-weight: 900;
}

.notice {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(228, 102, 61, 0.28);
  border-radius: var(--radius);
  background: rgba(228, 102, 61, 0.07);
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.6;
}

.product-demo-section {
  border-block: 1px solid var(--line);
  background: #151411;
}

.product-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.product-demo-copy {
  max-width: 43rem;
}

.product-demo-copy .button {
  margin-top: 0.8rem;
}

.product-demo-media {
  width: min(100%, 27rem);
  margin: 0 auto;
}

.product-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.product-demo-media figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

.plugin-catalog-section {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.plugin-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plugin-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11110f;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.plugin-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.plugin-tile > img {
  width: 100%;
  aspect-ratio: 1.77;
  object-fit: cover;
  background: #0b0b09;
}

.plugin-tile > div {
  min-height: 7.4rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.plugin-tile span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--acid);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plugin-tile h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.trademark-note {
  max-width: 62rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.lead-capture {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.lead-capture-copy h2 {
  max-width: 11ch;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form > .eyebrow {
  margin-bottom: 0.2rem;
}

.lead-privacy-note {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

/* Educational guides */
.guide-preview-section {
  background: #151411;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.guide-card {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.guide-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.guide-card-kicker,
.guide-meta {
  margin-bottom: 1rem;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.guide-card > p:not(.guide-card-kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.guide-card > a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-preview-action {
  margin-top: 1.5rem;
}

.guide-hero {
  max-width: 68rem;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.guide-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.32fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.guide-article {
  max-width: 48rem;
}

.guide-article h2 {
  margin: 3.8rem 0 1.2rem;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.guide-article h3 {
  margin: 2.5rem 0 0.9rem;
}

.guide-article p,
.guide-article li {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.85;
}

.guide-article a:not(.button) {
  color: var(--acid);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.guide-article ul,
.guide-article ol {
  padding-left: 1.4rem;
}

.guide-callout {
  margin: 2rem 0;
  padding: 1.4rem;
  border: 1px solid rgba(228, 102, 61, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(228, 102, 61, 0.07);
}

.guide-callout strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--paper);
}

.guide-aside {
  position: sticky;
  top: 7rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-3);
}

.guide-aside strong {
  display: block;
  margin-bottom: 0.8rem;
}

.guide-aside a {
  display: block;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.45;
}

.guide-aside a:last-child {
  border-bottom: 0;
}

.guide-aside a:hover {
  color: var(--acid);
}

.guide-product-box {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--ink-3);
}

.guide-product-box p {
  max-width: 42rem;
}

/* Forms and auth */
.auth-page {
  min-height: calc(100svh - 7rem);
  display: grid;
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.auth-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.6rem, 8vw, 7rem);
}

.auth-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
}

.auth-benefit {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.auth-benefit strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--paper);
}

.form-card,
.checkout-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  box-shadow: none;
}

.form-card {
  padding: clamp(1.35rem, 4vw, 2.25rem);
}

.form-card h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.form-intro {
  margin-bottom: 1.4rem;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid,
.profile-form,
.support-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.field-group label {
  font-size: 0.78rem;
  font-weight: 800;
}

.field-group label span,
.field-hint {
  color: var(--muted);
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  outline: 0;
  background: #0e0e0c;
  color: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.55;
}

input::placeholder,
textarea::placeholder {
  color: #646862;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(228, 102, 61, 0.12);
}

input:disabled {
  color: #858981;
  cursor: not-allowed;
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 4.6rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(-50%);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
}

.consent input {
  margin-top: 0.18rem;
  accent-color: var(--acid);
}

.consent a,
.inline-link,
.support-link {
  color: var(--paper);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--acid-dark);
  text-underline-offset: 0.22rem;
}

.measurement-consent {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(12, 14, 17, 0.97);
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.5);
}

.measurement-consent strong,
.measurement-consent p {
  margin: 0;
}

.measurement-consent p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.measurement-consent a {
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--acid-dark);
  text-underline-offset: 0.2rem;
}

.measurement-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
}

@media (max-width: 720px) {
  .measurement-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .measurement-consent-actions {
    flex-wrap: wrap;
  }
}

.form-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-message[data-state="error"] {
  color: var(--danger);
}

.form-message[data-state="success"] {
  color: var(--success);
}

.form-footer {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.mfa-field[hidden],
.mfa-enrollment[hidden],
.mfa-disable[hidden] {
  display: none;
}

/* Cart */
.cart-page,
.dashboard-page,
.legal-page,
.contact-page,
.status-page {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 27rem);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.cart-panel h1,
.dashboard-hero h1,
.contact-intro h1,
.legal-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
}

.cart-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.cart-item,
.empty-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.cart-item-copy {
  display: grid;
  gap: 0.25rem;
}

.cart-item-copy small {
  color: var(--muted);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
}

.quantity-control button {
  width: 2.35rem;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.quantity-control output {
  min-width: 1.8rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.remove-item {
  padding: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  cursor: pointer;
  text-decoration: underline;
}

.cart-summary {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-block: 1px solid var(--line);
}

.cart-total strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.checkout-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.fulfillment-note {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(228, 102, 61, 0.24);
  border-radius: var(--radius);
  background: rgba(228, 102, 61, 0.06);
  color: var(--muted-strong);
  font-size: 0.76rem;
  line-height: 1.55;
}

.secure-note {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.secure-note::before {
  content: "✓";
  color: var(--acid);
  font-weight: 900;
}

#checkoutButton.is-loading::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid rgba(8, 9, 11, 0.28);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Dashboard */
.dashboard-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-hero h1 {
  margin-bottom: 0.6rem;
}

.dashboard-hero .lead {
  margin-bottom: 0;
}

.account-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.summary-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 0.75rem;
  background: rgba(228, 102, 61, 0.1);
  color: var(--acid);
  font-weight: 900;
}

.summary-card strong,
.summary-card small {
  display: block;
}

.summary-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.68fr) minmax(0, 1.32fr);
  gap: 1rem;
  align-items: start;
}

.dashboard-stack {
  display: grid;
  gap: 1rem;
}

.profile-form,
.orders-panel,
.security-panel,
.tickets-panel {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.profile-heading,
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.profile-heading {
  justify-content: flex-start;
}

.profile-heading h2,
.profile-heading p,
.panel-heading h2,
.panel-heading p {
  margin-bottom: 0;
}

.profile-heading h2,
.panel-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.avatar {
  width: 4.4rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: #0e0e0c;
  background-position: center;
  background-size: cover;
  font-size: 1.5rem;
  font-weight: 900;
}

.avatar.has-image {
  color: transparent;
}

input[type="file"] {
  width: 100%;
  padding: 0.7rem;
  border: 1px dashed var(--line-strong);
  border-radius: 0.8rem;
  background: #090a0c;
  color: var(--muted);
}

input[type="file"]::file-selector-button {
  margin-right: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 0.55rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.orders-list,
.ticket-list {
  display: grid;
  gap: 0.75rem;
}

.order-card {
  display: grid;
  grid-template-columns: 7.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.order-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.8rem;
  background: #11110f;
}

.order-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.5rem;
}

.order-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.order-details p {
  color: var(--muted);
  line-height: 1.5;
}

.status-badge {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(135, 230, 165, 0.25);
  border-radius: 0.25rem;
  background: rgba(135, 230, 165, 0.08);
  color: var(--success);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ticket-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.ticket-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ticket-card p,
.ticket-card small {
  margin-bottom: 0;
  color: var(--muted);
}

.mfa-enrollment {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.mfa-disable {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.mfa-disable h3,
.mfa-disable p {
  margin-bottom: 0;
}

.mfa-qr {
  width: 11rem;
  border-radius: 0.8rem;
  background: white;
}

.loading-state,
.empty-state {
  padding: 2rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* Contact, legal and status */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(23rem, 1.05fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 7rem;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-point {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

.contact-point strong,
.contact-point span {
  display: block;
}

.contact-point span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.legal-copy {
  max-width: 54rem;
  margin-inline: auto;
}

.legal-copy h2 {
  margin-top: 3rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.legal-copy a {
  text-decoration: underline;
  text-decoration-color: var(--acid-dark);
  text-underline-offset: 0.2rem;
}

.legal-meta {
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.status-page {
  min-height: calc(100svh - 7rem);
  display: grid;
  place-items: center;
}

.status-card {
  width: min(100%, 42rem);
  padding: clamp(1.6rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow);
}

.status-icon {
  width: 4.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border-radius: 0.35rem;
  background: rgba(228, 102, 61, 0.1);
  color: var(--acid);
  font-size: 1.6rem;
  font-weight: 900;
}

.status-card h1 {
  max-width: none;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.status-card p {
  color: var(--muted);
  line-height: 1.65;
}

.toast-region {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: min(calc(100% - 2rem), 25rem);
  display: grid;
  gap: 0.6rem;
  pointer-events: none;
}

.toast {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
  background: rgba(14, 16, 19, 0.96);
  box-shadow: var(--shadow);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  animation: toast-in 180ms ease-out;
}

.toast[data-state="error"] {
  border-color: rgba(255, 141, 141, 0.5);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(0.6rem); }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding-inline: 0.6rem;
    font-size: 0.7rem;
  }

  .hero,
  .product-hero,
  .auth-shell,
  .contact-layout,
  .content-split,
  .lead-capture,
  .product-demo-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .decision-help-grid,
  .comparison-heading {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .home-showcase-grid {
    min-height: 31rem;
  }

  .hero-copy h1,
  .product-hero h1,
  .auth-copy h1 {
    max-width: 12ch;
  }

  .hero-visual,
  .product-visual {
    width: min(100%, 48rem);
    margin-inline: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plugin-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:first-child {
    grid-column: 1 / -1;
  }

  .product-card:first-child .product-media {
    aspect-ratio: 2.2;
  }

  .trust-row,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2),
  .spec-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2),
  .spec-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 4.25rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    display: grid;
    gap: 0.25rem;
    overflow: hidden;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .main-nav[data-open="true"] {
    max-height: 22rem;
    padding-bottom: 1rem;
    opacity: 1;
  }

  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.76rem;
  }

  .header-link {
    display: none;
  }

  .feature-grid,
  .step-grid,
  .audience-grid,
  .dashboard-grid,
  .cart-layout,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .account-summary {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .dashboard-hero,
  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .promo-bar {
    font-size: 0.62rem;
  }

  .brand-name {
    display: none;
  }

  .header-cart {
    padding-inline: 0.7rem;
  }

  .header-cart-label {
    display: none;
  }

  .display,
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero-copy h1,
  .product-hero h1,
  .auth-copy h1 {
    max-width: none;
  }

  .hero {
    padding-block: 2.8rem 4rem;
  }

  .hero-selector {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-selector-button {
    min-width: 0;
    padding-inline: 0.5rem;
    font-size: 0.62rem;
  }

  .hero-offer-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .home-showcase-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-showcase-featured {
    grid-column: auto;
  }

  .hero-visual .home-showcase-grid img {
    aspect-ratio: 1.77;
  }

  .floating-label {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .trust-row,
  .spec-grid,
  .product-grid,
  .plugin-catalog-grid,
  .auth-benefits,
  .field-row {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .spec-item,
  .spec-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child,
  .spec-item:last-child {
    border-bottom: 0;
  }

  .product-card:first-child {
    grid-column: auto;
  }

  .product-card:first-child .product-media,
  .product-media {
    aspect-ratio: 1.3;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .button-row,
  .product-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .product-buy .button,
  .form-card .button {
    width: 100%;
  }

  .cart-item,
  .empty-cart,
  .order-card {
    grid-template-columns: 1fr;
  }

  .order-card img {
    aspect-ratio: 16 / 8;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
