:root {
  --color-bg: #03070f;
  --color-surface: rgba(10, 18, 34, 0.82);
  --color-border: rgba(77, 206, 216, 0.32);
  --color-border-strong: rgba(77, 206, 216, 0.52);
  --color-text: #e6eaf0;
  --color-muted: #9fb9cf;
  --color-heading: #7de7f0;
  --color-accent: #4dd2e0;
  --color-accent-secondary: #6e9cff;
  --color-accent-amber: #ffbe55;
  --color-accent-mint: #72ffd9;
  --color-accent-violet: #a46bff;
  --color-accent-rose: #ff76da;
  --color-accent-electric: #69f2ff;
  --color-success: #4de1b5;
  --color-warning: #ffb84d;
  --marketing-bg: radial-gradient(circle at 16% 20%, rgba(58, 122, 220, 0.08) 0%, rgba(58, 122, 220, 0) 52%), radial-gradient(circle at 84% 10%, rgba(122, 78, 196, 0.12) 0%, rgba(122, 78, 196, 0) 50%), linear-gradient(180deg, #050608 0%, #010102 58%, #000000 100%);
  --gradient-bg: var(--marketing-bg);
  --gradient-bg-soft: linear-gradient(180deg, #071226 0%, #04070e 100%);
  --gradient-bg-high-contrast: linear-gradient(180deg, #030303 0%, #000000 100%);
  --gradient-panel: linear-gradient(145deg, rgba(10, 52, 112, 0.55), rgba(70, 24, 160, 0.55));
  --gradient-panel-soft: linear-gradient(145deg, rgba(13, 28, 55, 0.88), rgba(12, 19, 32, 0.88));
  --gradient-highlight: radial-gradient(circle at top, rgba(82, 224, 255, 0.4), rgba(82, 224, 255, 0));
  --shadow-soft: 0 35px 70px rgba(12, 30, 60, 0.45);
  --shadow-strong: 0 55px 90px rgba(18, 16, 55, 0.55);
  --shadow-focus: 0 0 0 1px rgba(52, 213, 255, 0.55), 0 0 0 8px rgba(52, 213, 255, 0.08);
  --particle-color: #59d9ff;
  --particle-color-secondary: #9058ff;
  --particle-color-tertiary: #ff61d4;
  --particle-connection: rgba(92, 220, 255, 0.26);
  --particle-connection-purple: rgba(166, 104, 255, 0.22);
  --radius-card: 18px;
  --radius-pill: 52px;
  --transition-base: 0.35s ease;
  --transition-fast: 0.2s ease;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-size-base: 1rem;
  --layout-max-width: 1200px;
  --header-offset: 0px;
  --header-height: 72px;
  --mx: 1.2rem;
  --stack-2: clamp(12px, 1.8vh, 16px);
  --stack-3: clamp(16px, 2.2vh, 20px);
  --stack-4: clamp(22px, 3vh, 28px);
  --radius-lg: 18px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --radius-auth-1: 10px;
  --radius-auth-2: 14px;
  --radius-auth-3: 18px;
  --auth-surface: rgba(16, 22, 30, 0.88);
  --auth-stroke: rgba(255, 255, 255, 0.12);
  --auth-muted: rgba(190, 210, 240, 0.72);
  --auth-text: #f4f7ff;
  --auth-accent-1: #58a6ff;
  --auth-accent-2: #a78bfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

[hidden],
.is-hidden {
  display: none !important;
}

/* --- Navigation --- */
.nav-bar {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  grid-template-areas: "nav-logo nav-primary nav-actions";
  align-items: center;
  column-gap: clamp(1.2rem, 2.6vw, 2.8rem);
  row-gap: clamp(0.6rem, 1.6vw, 1.4rem);
  margin: clamp(18px, 4vh, 30px) auto clamp(10px, 2.4vh, 20px);
  padding: clamp(12px, 1.8vw, 20px) clamp(24px, 5vw, 38px);
  width: min(1380px, calc(100% - clamp(28px, 5vw, 80px)));
  max-width: 100%;
  background: linear-gradient(135deg, rgba(9, 22, 44, 0.92), rgba(5, 14, 30, 0.9));
  border: 1px solid rgba(77, 210, 224, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 68px rgba(4, 12, 28, 0.52);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 6;
}

.nav-logo {
  grid-area: nav-logo;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #e4f4ff;
}

.nav-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(8, 26, 44, 0.92);
  border: 1px solid rgba(77, 210, 224, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(26, 96, 165, 0.45);
  overflow: hidden;
  position: relative;
  color: transparent;
  text-indent: -9999px;
}

.nav-logo__mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/stunneraffiliates-logo.webp') center/cover no-repeat;
  transform: scale(1.02);
}

.nav-logo__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo__text {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-logo__sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(205, 230, 255, 0.66);
}

.nav-primary {
  grid-area: nav-primary;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-primary__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  column-gap: clamp(8px, 1.2vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(12, 26, 48, 0.36);
  border-radius: 999px;
  padding: 6px 12px;
  overflow-x: auto;
}
@supports (scrollbar-width: none) {
  .nav-primary__list {
    scrollbar-width: none;
  }
}
.nav-primary__list::-webkit-scrollbar {
  display: none;
}

.nav-primary__link {
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 13px;
  color: rgba(215, 232, 255, 0.82);
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: transparent;
}

.nav-primary__link:hover {
  color: #ffffff;
  background: rgba(77, 210, 224, 0.14);
}

.nav-primary__link.is-current {
  background: linear-gradient(135deg, rgba(77, 210, 224, 0.28), rgba(90, 135, 255, 0.28));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(56, 125, 231, 0.26);
}

/* Compact primary nav: overflow pages live under “More” (native <details>). */
.nav-primary__more {
  position: relative;
  list-style: none;
}

.nav-primary__disclosure {
  position: relative;
}

.nav-primary__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 13px;
  color: rgba(215, 232, 255, 0.88);
  background: transparent;
  border: 0;
  font: inherit;
  transition: all 0.2s ease;
}

.nav-primary__summary::-webkit-details-marker {
  display: none;
}

.nav-primary__summary::marker {
  content: "";
}

.nav-primary__summary:hover,
.nav-primary__disclosure[open] > .nav-primary__summary {
  color: #ffffff;
  background: rgba(77, 210, 224, 0.14);
}

.nav-primary__summary-text::after {
  content: "▾";
  display: inline-block;
  margin-left: 5px;
  font-size: 0.65em;
  opacity: 0.75;
  transform: translateY(-0.08em);
}

.nav-primary__flyout {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(120, 224, 255, 0.28);
  background: linear-gradient(165deg, rgba(6, 18, 36, 0.98), rgba(10, 14, 34, 0.96));
  box-shadow: 0 24px 48px rgba(2, 8, 20, 0.65);
  min-width: 11.75rem;
  z-index: 400;
}

.nav-primary__link--flyout {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-primary__list li.is-hidden,
.nav-primary__link.is-hidden {
  display: none !important;
}

.nav-actions {
  grid-area: nav-actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.2vw, 16px);
  min-width: 0;
  overflow-x: auto;
}
@supports (scrollbar-width: none) {
  .nav-actions {
    scrollbar-width: none;
  }
}
.nav-actions::-webkit-scrollbar {
  display: none;
}

.nav-actions__link {
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 11px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(10, 24, 46, 0.5);
  color: rgba(210, 230, 255, 0.82);
  transition: all 0.2s ease;
}

.nav-actions__link:hover {
  color: #ffffff;
  border-color: rgba(124, 192, 255, 0.42);
}

.nav-actions__link--ghost {
  background: rgba(15, 32, 60, 0.38);
}

.nav-actions__link--cta {
  background: linear-gradient(135deg, #36e5ff, #5a7dff);
  color: #04121a;
  box-shadow: 0 18px 44px rgba(38, 120, 220, 0.45);
}

.nav-actions__link--ghost {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.site-header .nav-actions {
  gap: clamp(6px, 0.9vw, 12px);
}

.site-header .nav-actions__link {
  padding: 6px 12px;
  letter-spacing: 0.1em;
}

/* Nav chrome: sign-up via Sign in / pricing — no top-bar Register CTA (incl. stale cached JS). */
.site-header a.nav-actions__link[href="/register.html"],
.site-header a.nav-actions__link[href="register.html"],
.sa-menu__footer a[href="/register.html"],
.sa-menu__footer a[href="register.html"] {
  display: none !important;
}

.page-login .nav-bar {
  background: linear-gradient(135deg, rgba(6, 16, 32, 0.74), rgba(4, 12, 24, 0.68));
  border-color: rgba(77, 210, 224, 0.12);
  box-shadow: 0 18px 44px rgba(4, 10, 24, 0.45);
}
.page-login .nav-actions__link--cta {
  opacity: 0.6;
}

.page-login,
.page-register {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--gradient-bg);
  color: var(--auth-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

.page-login #mainContent.auth-shell,
.page-register #mainContent.auth-shell {
  flex: 1;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: clamp(16px, 3vh, 32px) clamp(12px, 2.5vw, 24px);
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  min-height: 0;
  gap: clamp(10px, 2vh, 18px);
  box-sizing: border-box;
}

/* Compact, viewport-aware auth chrome (login + register) */
.page-login,
.page-register {
  --auth-pad-x: clamp(16px, 3vw, 28px);
  --auth-pad-y: clamp(12px, 2vh, 20px);
  --auth-card-width: min(440px, calc(100vw - var(--auth-pad-x) * 2));
}

.page-login .site-header,
.page-register .site-header {
  padding: clamp(6px, 1vh, 10px) var(--auth-pad-x);
  min-height: 0;
  gap: 0;
  border-bottom-color: rgba(77, 206, 216, 0.18);
}

.page-login .site-footer,
.page-register .site-footer {
  display: none;
}

.page-login .nav-bar,
.page-register .nav-bar {
  margin: clamp(6px, 1vh, 10px) auto clamp(4px, 0.8vh, 8px);
  padding: clamp(8px, 1.2vw, 11px) clamp(12px, 2vw, 18px);
  width: min(1100px, calc(100% - var(--auth-pad-x) * 2));
  column-gap: clamp(0.65rem, 1.8vw, 1.25rem);
  row-gap: clamp(0.35rem, 0.8vh, 0.65rem);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(4, 10, 24, 0.38);
}

.page-login .nav-logo__mark,
.page-register .nav-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.page-login .nav-logo__text,
.page-register .nav-logo__text {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.page-login .nav-logo__sub,
.page-register .nav-logo__sub {
  font-size: 9px;
  letter-spacing: 0.1em;
}

.page-login .nav-primary__list,
.page-register .nav-primary__list {
  padding: 4px 8px;
  column-gap: clamp(4px, 0.8vw, 10px);
}

.page-login .nav-primary__link,
.page-register .nav-primary__link {
  padding: 5px 10px;
  font-size: clamp(10px, 0.35vw + 9px, 12px);
  border-radius: 8px;
}

.page-login .nav-actions__link,
.page-register .nav-actions__link {
  padding: 5px 10px;
  font-size: clamp(9px, 0.3vw + 8px, 11px);
  letter-spacing: 0.08em;
}

.page-login #mainContent.auth-shell,
.page-register #mainContent.auth-shell {
  padding: var(--auth-pad-y) var(--auth-pad-x);
}

.page-login #mainContent.auth-shell > .auth-orbit,
.page-login #mainContent.auth-shell > .auth-orbit.auth-orbit--solo,
.page-register #mainContent.auth-shell > .auth-orbit,
.page-register #mainContent.auth-shell > .auth-orbit.auth-orbit--solo {
  width: var(--auth-card-width);
  max-width: var(--auth-card-width);
  margin-inline: auto;
  justify-self: center;
  grid-template-columns: minmax(0, 1fr) !important;
}

.page-login .auth-orbit--solo,
.page-register .auth-orbit--solo {
  width: var(--auth-card-width);
  max-width: var(--auth-card-width);
}

.page-login .auth-orbit__panel,
.page-register .auth-orbit__panel {
  width: 100%;
  padding: clamp(20px, 3vw, 28px);
  gap: clamp(14px, 2vw, 18px);
  border-radius: var(--radius-auth-2);
  box-shadow:
    0 24px 56px rgba(3, 6, 20, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-login .auth-card__header,
.page-register .auth-card__header {
  gap: 6px;
}

.page-login .auth-card__eyebrow,
.page-register .auth-card__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.page-login .auth-card__title,
.page-register .auth-card__title {
  font-size: clamp(1.3rem, 1.1vw + 0.95rem, 1.65rem);
  line-height: 1.15;
}

.page-login .auth-card__sub,
.page-register .auth-card__sub {
  font-size: clamp(0.82rem, 0.35vw + 0.72rem, 0.9rem);
  line-height: 1.45;
}

.page-login .auth-form,
.page-register .auth-form {
  gap: clamp(10px, 1.4vw, 13px);
}

.page-login .auth-form--elevated,
.page-register .auth-form--elevated {
  padding: clamp(12px, 1.8vw, 14px);
}

.page-login .auth-field span,
.page-register .auth-field span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.page-login .auth-field input,
.page-register .auth-field input {
  padding: 10px 12px;
  font-size: 0.94rem;
}

.page-login .auth-submit,
.page-register .auth-submit {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.page-login .auth-otp,
.page-register .auth-otp {
  padding: 12px 14px;
  gap: 8px;
}

.page-login .auth-otp__input,
.page-register .auth-otp__input {
  padding: 10px 12px;
  font-size: 1.15rem;
}

@media (max-height: 760px) {
  .page-login .nav-bar,
  .page-register .nav-bar {
    margin-top: 6px;
    margin-bottom: 4px;
    padding-block: 7px;
  }

  .page-login #mainContent.auth-shell,
  .page-register #mainContent.auth-shell {
    padding-top: 6px;
    padding-bottom: 12px;
    gap: 8px;
  }

  .page-login .auth-orbit__panel,
  .page-register .auth-orbit__panel {
    padding: 12px 14px;
    gap: 8px;
  }

  .page-login .auth-card__title,
  .page-register .auth-card__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 520px) {
  .page-login,
  .page-register {
    --auth-card-width: min(100%, calc(100vw - 20px));
  }

  .page-login .nav-bar,
  .page-register .nav-bar {
    width: calc(100% - 16px);
    margin-inline: auto;
  }
}

/* --- Auth orbit (login) layout --- */
.auth-shell__notice {
  width: 100%;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 22px);
  border-radius: var(--radius-auth-3);
  border: 1px solid rgba(88, 214, 255, 0.28);
  background: rgba(6, 14, 26, 0.8);
  box-shadow: 0 28px 60px rgba(4, 10, 24, 0.45);
  color: var(--auth-muted);
  font-size: 0.95rem;
  text-align: center;
}

.auth-orbit {
  width: 100%;
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  align-items: stretch;
  position: relative;
}

.auth-orbit--solo {
  width: var(--auth-card-width, min(440px, 100%));
  max-width: var(--auth-card-width, min(440px, 100%));
  margin-inline: auto;
  justify-self: center;
}

.auth-orbit--solo .auth-orbit__panel {
  width: 100%;
  margin-inline: auto;
}

.auth-orbit::after {
  content: '';
  position: absolute;
  inset: 18% auto auto 40%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(90, 134, 255, 0.18), rgba(90, 134, 255, 0));
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 980px) {
  .auth-orbit {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .auth-orbit.auth-orbit--solo {
    grid-template-columns: minmax(0, 1fr);
  }
}

.auth-orbit > * {
  position: relative;
  z-index: 1;
}

.auth-orbit__hero {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 32px;
  border: 1px solid rgba(90, 188, 255, 0.28);
  background: linear-gradient(145deg, rgba(8, 20, 40, 0.92), rgba(30, 8, 52, 0.88));
  box-shadow: 0 40px 90px rgba(4, 8, 24, 0.55);
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.hero-signal {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(93, 235, 255, 0.3);
  background: rgba(8, 26, 46, 0.74);
  font-size: 0.9rem;
  color: var(--auth-muted);
  max-width: 320px;
}

.hero-signal__ledger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--auth-text);
}

.hero-signal__ledger strong {
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}

.hero-intro {
  display: grid;
  gap: 10px;
}

.hero-intro .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin: 0;
  color: rgba(194, 220, 255, 0.78);
}

.hero-intro h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-family: var(--font-display);
}

.hero-intro p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 1.04rem;
}

.hero-intro ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgba(202, 222, 255, 0.82);
  font-size: 0.95rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.hero-cards article {
  border-radius: 20px;
  border: 1px solid rgba(104, 156, 255, 0.32);
  background: rgba(6, 16, 32, 0.78);
  padding: 16px;
  display: grid;
  gap: 2px;
  box-shadow: inset 0 0 24px rgba(64, 124, 255, 0.08);
}

.hero-cards p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(176, 204, 255, 0.68);
}

.hero-cards strong {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: #f5f7ff;
}

.hero-cards span {
  font-size: 0.86rem;
  color: rgba(200, 220, 250, 0.68);
}

.auth-orbit__panel {
  border-radius: var(--radius-auth-3);
  border: 1px solid var(--auth-stroke);
  background: rgba(4, 12, 26, 0.92);
  box-shadow: 0 38px 80px rgba(3, 6, 20, 0.7);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 26px);
}

.auth-card__header {
  display: grid;
  gap: 10px;
}

.auth-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(201, 226, 255, 0.7);
  margin: 0;
}

.auth-card__title {
  margin: 0;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.1;
  font-family: var(--font-display);
}

.auth-card__sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--auth-muted);
}

.auth-card__message {
  min-height: 20px;
  font-size: 0.92rem;
  color: var(--auth-text);
}

.auth-card__message[data-variant='success'] {
  color: #9ef0d4;
}

.auth-card__message[data-variant='warning'] {
  color: #ffd9a0;
}

.auth-card__message[data-variant='error'] {
  color: #ffb4c4;
}

.auth-otp {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-auth-2);
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: rgba(8, 14, 28, 0.72);
}

.auth-otp[hidden] {
  display: none !important;
}

.auth-otp__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(203, 222, 255, 0.82);
}

.auth-otp__input {
  width: 100%;
  border-radius: var(--radius-auth-2);
  border: 1px solid rgba(114, 162, 255, 0.35);
  background: rgba(6, 14, 28, 0.9);
  padding: 14px 16px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  color: var(--auth-text);
  font-family: var(--font-display, var(--font-body));
}

.auth-otp__input:focus-visible {
  outline: none;
  border-color: rgba(111, 210, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(77, 210, 224, 0.18);
}

.auth-otp__btn {
  width: 100%;
  border: none;
  border-radius: var(--radius-auth-2);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #04121a;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.auth-otp__btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.auth-otp__msg {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(203, 222, 255, 0.88);
}

.auth-otp__msg[data-variant='error'] {
  color: #ffb4c4;
}

.auth-resend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(126, 200, 255, 0.12);
}

.auth-resend[hidden] {
  display: none !important;
}

.auth-resend__hint {
  font-size: 0.88rem;
  color: rgba(198, 214, 235, 0.78);
}

.auth-resend__btn {
  border: 1px solid rgba(126, 200, 255, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #e8f7ff;
  background: rgba(12, 22, 40, 0.85);
}

.auth-resend__btn:hover {
  border-color: rgba(150, 220, 255, 0.45);
  background: rgba(18, 30, 52, 0.92);
}

.auth-form {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}

.auth-form--elevated {
  padding: clamp(18px, 3vw, 22px);
  border-radius: var(--radius-auth-2);
  background: rgba(12, 20, 34, 0.72);
  border: 1px solid rgba(92, 150, 255, 0.18);
}

.auth-field {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--auth-text);
}

.auth-field span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(203, 222, 255, 0.7);
}

.auth-field input {
  appearance: none;
  width: 100%;
  border-radius: var(--radius-auth-2);
  border: 1px solid rgba(114, 162, 255, 0.35);
  background: rgba(6, 14, 28, 0.9);
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--auth-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-field input::placeholder {
  color: rgba(198, 210, 240, 0.5);
}

.auth-field input:focus-visible {
  outline: none;
  border-color: rgba(111, 210, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(111, 210, 255, 0.25);
}

.auth-password-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
  border-radius: var(--radius-auth-2);
  border: 1px solid rgba(114, 162, 255, 0.35);
  background: rgba(6, 14, 28, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-password-wrap:focus-within {
  border-color: rgba(111, 210, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(111, 210, 255, 0.25);
}

.auth-password-wrap input {
  flex: 1 1 auto;
  min-width: 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.auth-password-wrap input:focus-visible {
  outline: none;
}

.auth-password-toggle {
  flex: 0 0 auto;
  align-self: center;
  margin: 4px 6px 4px 0;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(90, 140, 220, 0.22);
  color: rgba(220, 234, 255, 0.95);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.auth-password-toggle:hover {
  background: rgba(111, 210, 255, 0.28);
  color: #fff;
}

.auth-password-toggle:focus-visible {
  outline: 2px solid rgba(111, 210, 255, 0.85);
  outline-offset: 2px;
}

.auth-field-hint {
  margin: 4px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(180, 204, 240, 0.72);
}

.auth-field--mfa {
  border-radius: var(--radius-auth-2);
  border: 1px solid rgba(114, 162, 255, 0.25);
  background: rgba(5, 12, 24, 0.7);
  overflow: hidden;
}

.auth-field--mfa summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.auth-field--mfa summary::-webkit-details-marker {
  display: none;
}

.auth-field--mfa summary::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(201, 226, 255, 0.6);
  transition: transform 0.2s ease;
}

.auth-field--mfa[open] summary::after {
  transform: rotate(45deg);
}

.auth-field--mfa label {
  display: grid;
  gap: 4px;
  padding: 0 16px 16px;
}

.auth-field--legal {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(120, 176, 255, 0.28);
  background: rgba(7, 16, 30, 0.56);
  display: grid;
  gap: 10px;
}

.auth-field--legal legend {
  padding: 0 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(194, 220, 248, 0.9);
}

.auth-field--legal .auth-remember a {
  color: var(--auth-text);
  text-decoration: underline;
}

.auth-remember {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--auth-muted);
}

.auth-remember input {
  margin-top: 4px;
}

.auth-field--legal .auth-remember input[type='checkbox'] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
  margin-top: 2px;
  border: 1px solid rgba(140, 176, 255, 0.75);
  border-radius: 3px;
  background: rgba(6, 14, 28, 0.95);
  cursor: pointer;
}

.auth-field--legal .auth-remember input[type='checkbox']:focus-visible {
  outline: 2px solid rgba(111, 210, 255, 0.7);
  outline-offset: 2px;
  box-shadow: none;
}

.auth-field--legal .auth-remember {
  align-items: flex-start;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: linear-gradient(120deg, #36e5ff, #5a7bff);
  color: #030812;
  box-shadow: 0 20px 60px rgba(54, 134, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(60, 154, 255, 0.6);
}

.auth-consent__item input[type='checkbox'] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--auth-muted);
}

.auth-links a {
  color: var(--auth-text);
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-orbit__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  border-radius: var(--radius-auth-2);
  border: 1px solid rgba(99, 150, 255, 0.18);
  background: rgba(3, 10, 22, 0.85);
  padding: 18px 20px;
  color: var(--auth-muted);
  font-size: 0.92rem;
}

.auth-orbit__meta p {
  margin: 0 0 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(201, 226, 255, 0.7);
}

.auth-support {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 4vw, 28px);
}

.auth-support article {
  border-radius: 24px;
  border: 1px solid rgba(87, 214, 255, 0.24);
  background: linear-gradient(135deg, rgba(7, 16, 30, 0.85), rgba(12, 8, 26, 0.9));
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 30px 70px rgba(3, 8, 20, 0.6);
  display: grid;
  gap: 12px;
}

.auth-support h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--auth-text);
}

.auth-support p,
.auth-support ul {
  margin: 0;
  color: var(--auth-muted);
  font-size: 0.95rem;
}

.auth-support ul {
  padding-left: 18px;
}

.auth-support__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(122, 182, 255, 0.35);
  color: var(--auth-text);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill:hover {
  border-color: rgba(150, 204, 255, 0.7);
}

@media (max-width: 720px) {
  .auth-shell__notice {
    text-align: left;
  }

  .auth-orbit::after {
    inset: auto auto 0 10%;
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 640px) {
  .auth-form--elevated {
    padding: 16px;
  }

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

@media (max-width: 520px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .auth-orbit {
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-submit,
  .auth-field input,
  .auth-field--mfa summary::after {
    transition: none;
  }
}

.nav-actions__link.is-current {
  border-color: rgba(126, 196, 255, 0.6);
  color: #ffffff;
}

@media (max-width: 1400px) {
  .nav-bar {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    grid-template-areas:
      "nav-logo nav-actions"
      "nav-primary nav-primary";
  }

  .nav-actions {
    justify-self: end;
    max-width: 100%;
  }
}

@media (max-width: 1280px) {
  .nav-primary__list {
    column-gap: clamp(6px, 0.9vw, 14px);
    padding: 6px 10px;
  }

  .nav-primary__link {
    padding: 7px 12px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .nav-actions__link {
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1080px) {
  .nav-primary__list {
    column-gap: clamp(6px, 1vw, 10px);
    padding: 6px 10px;
  }
  .nav-primary__link {
    padding: 7px 11px;
  }
}

@media (max-width: 1023px) {
  .nav-primary,
  .nav-actions {
    display: none;
  }
  .nav-bar {
    margin: 16px auto 12px;
    padding: 12px 18px;
    width: calc(100% - clamp(20px, 7vw, 42px));
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "nav-logo nav-actions";
    column-gap: 12px;
    row-gap: 10px;
  }

  .nav-logo__mark {
    width: 38px;
    height: 38px;
  }

  .nav-logo__text {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .nav-logo__sub {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

.site-nav__hamburger {
  grid-area: nav-actions;
  justify-self: end;
  align-self: center;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(77, 210, 224, 0.32);
  background: rgba(5, 18, 32, 0.82);
  cursor: pointer;
}

.site-nav__hamburger::before,
.site-nav__hamburger::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 999px;
  background: #d7eaff;
  transition: transform 0.2s ease;
}

.site-nav__hamburger::before {
  top: 15px;
  box-shadow: 0 9px 0 #d7eaff;
}

.site-nav__hamburger::after {
  bottom: 15px;
}

@media (min-width: 1024px) {
  .site-nav__hamburger {
    display: none;
  }
}

/* Show hamburger on mid-size desktop to avoid cramped nav */
@media (max-width: 1200px) {
  .site-nav__hamburger {
    display: inline-flex;
  }

  .nav-primary,
  .nav-actions {
    display: none;
  }
}

.sa-menu__link.is-current {
  background: rgba(90, 135, 255, 0.25);
  box-shadow: inset 0 0 0 1px rgba(90, 135, 255, 0.35);
}

.sa-menu__list li.is-hidden,
.sa-menu__link.is-hidden {
  display: none !important;
}

/* --- StunnerLabs layout --- */
.sl-container {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 64px);
}

.sl-section {
  position: relative;
  padding-block: clamp(48px, 12vw, 64px);
}

.sl-section:last-of-type {
  padding-bottom: clamp(40px, 10vw, 56px);
}

.sl-panel {
  position: relative;
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  padding: clamp(26px, 5vw, 36px);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(8, 20, 36, 0.86), rgba(20, 16, 48, 0.78));
  border: 1px solid rgba(77, 210, 224, 0.22);
  box-shadow: 0 28px 60px rgba(4, 12, 26, 0.45);
  overflow: hidden;
}

.sl-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 12% 18%, rgba(77, 210, 224, 0.16), transparent 60%), radial-gradient(circle at 82% 12%, rgba(150, 108, 255, 0.14), transparent 62%);
  opacity: 0.7;
  pointer-events: none;
}

.sl-panel > * {
  position: relative;
  z-index: 1;
}

.sl-panel--compact {
  padding: clamp(20px, 4.5vw, 28px);
  gap: clamp(14px, 3vw, 20px);
}

.sl-panel__header {
  display: grid;
  gap: clamp(10px, 2.6vw, 18px);
  max-width: 60ch;
}

.sl-panel__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(144, 224, 255, 0.72);
}

.sl-panel__lead {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.65;
  color: rgba(210, 232, 255, 0.86);
}

.sl-panel + * {
  margin-top: clamp(24px, 5vw, 32px);
}

.sl-panel .sl-heading {
  margin: 0;
}

.sl-panel--entries {
  padding: clamp(28px, 5.5vw, 40px);
  gap: clamp(20px, 4vw, 28px);
}

.sl-panel--entries .sl-panel__header {
  max-width: none;
}

.sl-panel .sl-bullet-list {
  margin-top: 0;
}

.sl-keypoints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 2.8vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sl-keypoints li {
  position: relative;
  padding: clamp(18px, 3.4vw, 24px) clamp(18px, 3.6vw, 26px) clamp(18px, 3.4vw, 24px) clamp(38px, 5vw, 48px);
  border-radius: 18px;
  background: rgba(10, 24, 42, 0.78);
  border: 1px solid rgba(77, 210, 224, 0.18);
  box-shadow: 0 16px 34px rgba(4, 12, 28, 0.3);
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  line-height: 1.6;
  color: rgba(215, 235, 255, 0.92);
}

.sl-keypoints li::before {
  content: '';
  position: absolute;
  top: clamp(18px, 3.2vw, 24px);
  left: clamp(18px, 3.2vw, 24px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(155, 230, 255, 0.9), rgba(32, 120, 220, 0.6) 55%, rgba(20, 40, 120, 0) 100%);
  box-shadow: 0 0 12px rgba(77, 210, 224, 0.45);
}

.sl-keypoints strong {
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(144, 224, 255, 0.8);
  margin-bottom: 6px;
}

.sl-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 2.75rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0;
}

.sl-hero {
  padding-block: clamp(80px, 20vh, 132px);
  background: linear-gradient(160deg, rgba(48, 118, 185, 0.18), rgba(5, 12, 24, 0.78));
}

.sl-hero__body {
  display: grid;
  gap: clamp(16px, 4vw, 24px);
  max-width: 72ch;
}

.sl-hero__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(144, 224, 255, 0.75);
}

.sl-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.26;
  margin: 0;
}

.sl-hero__lead {
  margin: 0;
  max-width: 64ch;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.65;
  color: rgba(222, 238, 255, 0.9);
}

.sl-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 5vw, 28px);
}

.sl-btn {
  --focus-ring: rgba(77, 210, 224, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  min-height: 44px;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.sl-btn--primary {
  background: linear-gradient(120deg, #36e5ff, #6e9cff);
  color: #04121a;
  box-shadow: 0 20px 40px rgba(59, 176, 255, 0.32);
}

.sl-btn--secondary {
  background: rgba(8, 20, 36, 0.8);
  border-color: rgba(77, 210, 224, 0.32);
  color: #e4f4ff;
  box-shadow: 0 14px 28px rgba(4, 14, 24, 0.32);
}

.sl-btn:hover,
.sl-btn:focus-visible {
  transform: translateY(-3px);
}

.sl-btn--primary:hover,
.sl-btn--primary:focus-visible {
  box-shadow: 0 26px 54px rgba(59, 176, 255, 0.38);
}

.sl-btn--secondary:hover,
.sl-btn--secondary:focus-visible {
  border-color: rgba(109, 235, 255, 0.6);
  box-shadow: 0 18px 40px rgba(4, 16, 32, 0.38);
}

.sl-btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.sl-btn:active {
  transform: translateY(-1px);
}

.sl-banner {
  padding-block: 16px;
  background: rgba(5, 16, 32, 0.85);
  border-block: 1px solid rgba(77, 210, 224, 0.18);
}

.sl-banner .sl-container {
  display: flex;
  justify-content: center;
}

.sl-banner p {
  margin: 0;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(220, 240, 255, 0.9);
  text-align: center;
  max-width: 70ch;
}

.sl-bullet-list {
  margin: clamp(24px, 5vw, 32px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 68ch;
  font-size: clamp(1.02rem, 2.6vw, 1.18rem);
  line-height: 1.65;
}

.sl-bullet-list li {
  position: relative;
  padding-left: 22px;
}

.sl-bullet-list li::before {
  content: '';
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(77, 210, 224, 0.9);
  box-shadow: 0 0 16px rgba(77, 210, 224, 0.45);
}

.sl-section-header {
  display: grid;
  gap: 12px;
  max-width: 70ch;
}

.sl-section-header p {
  margin: 0;
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  line-height: 1.65;
  color: rgba(218, 236, 255, 0.9);
}

.sl-entry-grid {
  margin-top: clamp(28px, 6vw, 36px);
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.sl-panel--entries .sl-entry-grid {
  margin-top: clamp(18px, 4vw, 28px);
}

.sl-entry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 4vw, 28px);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(8, 20, 36, 0.88), rgba(12, 18, 44, 0.74));
  border: 1px solid rgba(77, 210, 224, 0.24);
  box-shadow: 0 24px 50px rgba(4, 12, 26, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 100%;
}

.sl-entry-card:hover,
.sl-entry-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(109, 235, 255, 0.5);
  box-shadow: 0 30px 64px rgba(4, 16, 32, 0.42);
}

.sl-entry-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.3;
  color: var(--color-text);
}

.sl-entry-subhead {
  margin: 0;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(180, 210, 235, 0.9);
}

.sl-entry-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sl-entry-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.6;
}

.sl-entry-card ul li::before {
  content: '';
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(77, 210, 224, 0.85);
}

.sl-entry-card .sl-btn {
  margin-top: auto;
  align-self: flex-start;
}

.sl-entry-caption {
  margin: clamp(20px, 4vw, 28px) 0 0;
  text-align: center;
  color: rgba(215, 235, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sl-lifestyle__body {
  display: grid;
  gap: clamp(16px, 3vw, 20px);
  max-width: 60ch;
  padding: clamp(24px, 4vw, 32px);
  border-radius: 22px;
  background: rgba(8, 20, 34, 0.78);
  border: 1px solid rgba(77, 210, 224, 0.22);
  box-shadow: 0 22px 48px rgba(4, 12, 28, 0.3);
}

.sl-lifestyle__body p {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.65;
  color: rgba(220, 238, 255, 0.9);
}

.sl-proof {
  padding-block: clamp(40px, 8vw, 56px);
}

.sl-proof__chips {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.sl-proof__chips li {
  list-style: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(8, 22, 40, 0.82);
  border: 1px solid rgba(77, 210, 224, 0.28);
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #daf4ff;
}

.assistant-ocr-frame {
  position: fixed;
  pointer-events: none;
  border-radius: 18px;
  border: 3px solid rgba(178, 119, 255, 0.85);
  background: rgba(123, 58, 255, 0.12);
  box-shadow: 0 0 28px rgba(150, 77, 255, 0.55), inset 0 0 22px rgba(255, 255, 255, 0.2);
  z-index: 1400;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease, width 0.18s ease, height 0.18s ease;
  animation: assistant-ocr-pulse 1.8s ease-in-out infinite;
}

.assistant-ocr-frame.is-visible {
  opacity: 1;
}

.assistant-ocr-frame__label {
  position: absolute;
  top: -32px;
  left: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(96, 58, 255, 0.85);
  color: #f5e9ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(110, 48, 255, 0.35);
}

@keyframes assistant-ocr-pulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(150, 77, 255, 0.45), inset 0 0 18px rgba(255, 255, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 48px rgba(188, 110, 255, 0.72), inset 0 0 26px rgba(255, 255, 255, 0.26);
  }
}

@media (max-width: 780px) {
  .sl-hero {
    padding-block: clamp(72px, 24vh, 110px);
  }

  .sl-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .sl-entry-card {
    padding: 20px;
  }

  .accessibility-hub {
    left: clamp(16px, 6vw, 42px);
    top: clamp(68px, 14vh, 132px);
  }

  .accessibility-panel {
    left: 0;
    width: min(92vw, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sl-btn,
  .sl-entry-card {
    transition: none;
  }

  .sl-btn:hover,
  .sl-btn:focus-visible,
  .sl-btn:active,
  .sl-entry-card:hover,
  .sl-entry-card:focus-within {
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  background: var(--app-background, var(--gradient-bg));
  color: var(--color-text);
  line-height: 1.56;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  transition: background-color var(--transition-base), color var(--transition-base);
  position: relative;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  color: var(--color-heading);
}

p {
  font-size: clamp(15px, 2.9vw, 17px);
  line-height: 1.55;
  max-width: 70ch;
}

h1 {
  font-size: clamp(28px, 5.5vw, 38px);
  line-height: 1.15;
  word-break: keep-all;
}

h2 {
  font-size: clamp(22px, 4.8vw, 28px);
  line-height: 1.18;
}

h3 {
  font-size: clamp(18px, 3.8vw, 22px);
  line-height: 1.25;
}

h4 {
  font-size: clamp(16px, 3.2vw, 18px);
  line-height: 1.3;
}

.small {
  font-size: clamp(13px, 2.6vw, 15px);
}

.container {
  width: min(100%, var(--layout-max-width));
  margin-inline: auto;
  padding-inline: max(var(--mx), env(safe-area-inset-left), env(safe-area-inset-right));
}

.panel {
  border-radius: var(--radius-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast);
}

.btn:focus-visible {
  outline: 2px solid rgba(90, 220, 255, 0.85);
  outline-offset: 2px;
}

.btn-neon {
  background: linear-gradient(120deg, rgba(54, 229, 255, 0.95), rgba(90, 123, 255, 0.95));
  border-color: rgba(130, 240, 255, 0.9);
  color: #03121a;
  box-shadow: 0 16px 30px rgba(24, 120, 255, 0.42);
}

.btn-neon:hover,
.btn-neon:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(24, 120, 255, 0.6);
}

.btn-outline {
  background: rgba(4, 14, 28, 0.75);
  border-color: rgba(130, 240, 255, 0.45);
  color: rgba(220, 245, 255, 0.92);
  box-shadow: inset 0 0 18px rgba(40, 120, 200, 0.18);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(130, 240, 255, 0.8);
  background: rgba(12, 28, 54, 0.85);
  box-shadow: inset 0 0 20px rgba(60, 160, 255, 0.24);
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--mx);
  }

  section {
    margin-block: var(--stack-4);
  }

  section:first-of-type {
    margin-top: 0;
  }

  .panel {
    border-radius: var(--radius-lg);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--stack-2);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero--pricing .hero__inner {
    justify-items: stretch;
  }

  .hero--pricing h1 {
    max-width: none;
  }

  .hero--pricing .hero__actions {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .unified-home-main {
    padding: calc(var(--header-height) + 16px) 16px 22px;
  }

  .unified-home-shell__header {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .unified-home-shell__header h1 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .unified-home-shell__intro {
    font-size: 0.94rem;
  }

  .unified-home-shell__actions {
    gap: 10px;
  }

  .shell-chip {
    width: 100%;
    min-height: 42px;
    font-size: 0.68rem;
  }

  .unified-home-shell:not(.unified-home-shell--dock-only) .unified-codexa-shell__frame-wrap,
  .unified-home-shell:not(.unified-home-shell--dock-only) .unified-codexa-frame {
    min-height: calc(100dvh - var(--header-height) - 72px);
    border-radius: 24px;
  }
}

@media (min-width: 769px) {
  .btn-block {
    display: inline-flex;
    width: auto;
  }
}

@media (max-width: 600px) {
  h1 {
    letter-spacing: 0.04em;
  }

  .trustbar {
    gap: 0.4rem;
    padding-bottom: 1.2rem;
  }

  .account-grid {
    gap: var(--stack-3);
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .account-grid-section {
    margin-inline: var(--mx);
    padding: var(--stack-4);
  }

  .account-card {
    padding: var(--stack-3);
    gap: var(--stack-2);
  }

  .hero-media-card li {
    flex-direction: column;
    gap: 8px;
  }

  .hero-media-card li strong {
    flex: 0 0 auto;
  }

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(60, 179, 255, 0.16), transparent 58%),
    radial-gradient(circle at 90% 14%, rgba(208, 98, 255, 0.16), transparent 60%),
    radial-gradient(circle at 50% 88%, rgba(90, 255, 198, 0.12), transparent 72%),
    radial-gradient(circle at 70% 64%, rgba(255, 118, 218, 0.08), transparent 64%);
  opacity: 0.95;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 190, 85, 0.08), transparent 42%),
    radial-gradient(circle at 82% 84%, rgba(114, 255, 217, 0.08), transparent 40%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.026) 1px, transparent 1px, transparent 6px),
    repeating-linear-gradient(35deg, rgba(105, 242, 255, 0.024), rgba(105, 242, 255, 0.024) 1px, transparent 1px, transparent 12px);
  mix-blend-mode: screen;
  opacity: 0.38;
  z-index: -1;
}

body.accessibility-simple-background {
  --app-background: var(--gradient-bg-soft);
}

body.accessibility-simple-background .nav-logo__mark {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 30px rgba(18, 52, 102, 0.42);
}

body.accessibility-simple-background .nav-logo__mark::after {
  filter: brightness(1.08);
}

body.accessibility-high-contrast {
  --app-background: var(--gradient-bg-high-contrast);
  --color-text: #ffffff;
  --color-muted: #d7e6f8;
  --color-border: rgba(255, 255, 255, 0.38);
  --color-border-strong: rgba(255, 255, 255, 0.66);
  --color-surface: rgba(255, 255, 255, 0.14);
  --gradient-panel: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(120, 200, 255, 0.26));
  --shadow-soft: 0 0 26px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 0 40px rgba(0, 0, 0, 0.55);
}

body.accessibility-font-large {
  --font-size-base: 1.125rem;
}

body.accessibility-font-xlarge {
  --font-size-base: 1.22rem;
}

body.accessibility-reduce-motion *,
body.accessibility-reduce-motion *::before,
body.accessibility-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

body.accessibility-reduce-motion .fade-in {
  opacity: 1;
  transform: none;
}

body.accessibility-reduce-motion #particles,
body.accessibility-simple-background #particles {
  display: none;
}

body.accessibility-colorblind {
  --color-accent: #0496ff;
  --color-accent-secondary: #ffb500;
  --color-success: #42d77d;
  --color-warning: #ff7a5c;
  --color-muted: #dbe5ee;
  --gradient-panel: linear-gradient(145deg, rgba(9, 30, 68, 0.74), rgba(44, 19, 72, 0.7));
  --particle-color: #1d9fff;
  --particle-color-secondary: #18d6bd;
  --particle-color-tertiary: #ffc247;
  --particle-connection: rgba(255, 194, 71, 0.24);
  --particle-connection-purple: rgba(24, 214, 189, 0.2);
}

body.accessibility-colorblind .tag {
  border-color: rgba(4, 150, 255, 0.45);
  background: rgba(4, 150, 255, 0.26);
}

body.accessibility-colorblind .badge {
  border-color: rgba(255, 181, 0, 0.55);
  color: #ffb500;
  background: rgba(255, 181, 0, 0.16);
}

body.accessibility-colorblind .feature-card {
  border-color: rgba(4, 150, 255, 0.32);
}

body.accessibility-colorblind .feature-card::before {
  background: radial-gradient(circle at 20% 0%, rgba(4, 150, 255, 0.32), transparent 65%);
}

body.accessibility-colorblind .metric-card strong {
  color: #ffb500;
}

body.accessibility-colorblind .metric-card::before {
  background: radial-gradient(circle at 50% 0%, rgba(4, 150, 255, 0.3), transparent 70%);
}

body.accessibility-colorblind .section--collapsible details {
  background: linear-gradient(150deg, rgba(12, 34, 62, 0.82), rgba(26, 48, 78, 0.76));
  border-color: rgba(4, 150, 255, 0.34);
}

body.accessibility-colorblind .hero {
  background: linear-gradient(145deg, rgba(6, 24, 52, 0.75), rgba(25, 18, 58, 0.68));
}

body.accessibility-colorblind .hero__media {
  background: linear-gradient(150deg, rgba(12, 32, 60, 0.8), rgba(28, 20, 58, 0.74));
}

body.accessibility-colorblind .section {
  background: linear-gradient(150deg, rgba(8, 26, 54, 0.62), rgba(16, 34, 58, 0.58));
}

body.accessibility-visual-alerts .btn {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16), 0 25px 45px rgba(12, 38, 75, 0.55);
}

body.accessibility-visual-alerts .hero__copy::after {
  content: 'Visual alerts enabled';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-text);
}

body.accessibility-visual-alerts .form-note.success {
  color: var(--color-accent);
  position: relative;
  padding-left: 26px;
}

body.accessibility-visual-alerts .form-note.success::before {
  content: '🔔';
  position: absolute;
  left: 0;
  top: 2px;
}

body.accessibility-visual-alerts #synthToggle {
  position: relative;
  overflow: hidden;
}

body.accessibility-visual-alerts #synthToggle::after {
  content: 'Audio cue';
  position: absolute;
  inset: auto 10px 6px auto;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: visualPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
body[data-require-auth="true"]:not([data-auth-state="granted"]) {
  visibility: hidden;
}

.access-denied-overlay,
body[data-auth-state="denied"] {
  visibility: visible;
}

.access-denied-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: rgba(2, 4, 10, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-align: center;
  z-index: 2000;
}

.access-denied-overlay h1 {
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.access-denied-overlay p {
  max-width: 540px;
  color: var(--color-muted);
  margin: 0 auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-accent);
}

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

.skip-link {
  position: absolute;
  top: -999px;
  left: 11px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: var(--radius-pill);
  z-index: 2001;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(66, 128, 210, 0.09), transparent 60%),
    radial-gradient(circle at 82% 14%, rgba(130, 92, 210, 0.12), transparent 58%),
    repeating-linear-gradient(126deg, rgba(156, 126, 210, 0.03), rgba(156, 126, 210, 0.03) 1px, transparent 1px, transparent 11px),
    linear-gradient(180deg, rgba(5, 8, 12, 0.96), rgba(1, 2, 5, 0.99));
  opacity: 0.9;
}

@keyframes homeAmbientMesh {
  0% {
    transform: translate3d(-2.4%, -1.6%, 0) scale(1);
    filter: saturate(1) hue-rotate(0deg);
  }

  100% {
    transform: translate3d(2.2%, 1.8%, 0) scale(1.045);
    filter: saturate(1.12) hue-rotate(6deg);
  }
}

@keyframes homeCausticDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.48;
  }

  50% {
    transform: translate3d(-2.8%, 2.1%, 0) rotate(0.35deg);
    opacity: 0.62;
  }

  100% {
    transform: translate3d(2.1%, -2.2%, 0) rotate(-0.28deg);
    opacity: 0.5;
  }
}

@keyframes homeParticlesFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-1.2%, 0.9%, 0) scale(1.02);
  }
}

/* Optional: add class="home-root" on <html> for extra min-height; body still carries the marketing gradient. */
html.home-root {
  min-height: 100%;
  background: var(--marketing-bg);
}

/* Match auth/marketing pages: home must not rely on a missing html class (transparent body = white browser canvas). */
body.page-home:not(.accessibility-simple-background):not(.accessibility-high-contrast) {
  background: var(--gradient-bg) !important;
  min-height: 100dvh;
}

body.page-home.accessibility-simple-background:not(.accessibility-high-contrast) {
  background: var(--gradient-bg-soft) !important;
  min-height: 100dvh;
}

body.page-home.accessibility-high-contrast {
  background: var(--gradient-bg-high-contrast) !important;
  min-height: 100dvh;
}

body.page-home {
  --font-body: 'Space Grotesk', 'Inter', sans-serif;
}

body.page-home::before,
body.page-home::after {
  content: none !important;
  display: none !important;
}

/* Dock embed: canvas + layout live in assets/css/home-page.css + codexa-dock-embed.css */

body.page-home #particles {
  z-index: 2 !important;
  background: transparent;
  opacity: 0.86;
  transform: none;
  transform-origin: center center;
  will-change: auto;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  body.page-home::before,
  body.page-home::after,
  body.page-home #particles {
    animation: none !important;
  }
}

body.accessibility-reduce-motion.page-home::before,
body.accessibility-reduce-motion.page-home::after,
body.accessibility-simple-background.page-home::before,
body.accessibility-simple-background.page-home::after,
body.accessibility-reduce-motion.page-home #particles,
body.accessibility-simple-background.page-home #particles {
  animation: none !important;
}

body.page-home .nav-bar {
  border-color: rgba(120, 224, 255, 0.3);
  background:
    linear-gradient(132deg, rgba(8, 24, 46, 0.94), rgba(14, 14, 44, 0.88)),
    radial-gradient(circle at 8% 0%, rgba(105, 242, 255, 0.2), transparent 42%);
  box-shadow: 0 28px 74px rgba(4, 12, 28, 0.62), inset 0 0 22px rgba(28, 74, 160, 0.22);
}

body.page-home .assistant-launch__button {
  border-color: rgba(140, 234, 255, 0.62);
  background:
    linear-gradient(134deg, rgba(8, 24, 44, 0.96), rgba(18, 18, 52, 0.9)),
    radial-gradient(circle at 20% 0%, rgba(105, 242, 255, 0.28), transparent 44%),
    radial-gradient(circle at 88% 100%, rgba(164, 107, 255, 0.22), transparent 48%);
  box-shadow: 0 22px 44px rgba(2, 10, 24, 0.66), 0 0 0 1px rgba(122, 214, 255, 0.22);
}

body.page-home .assistant-launch__button:hover,
body.page-home .assistant-launch__button:focus-visible {
  border-color: rgba(170, 242, 255, 0.8);
  box-shadow: 0 28px 52px rgba(2, 10, 24, 0.76), 0 0 28px rgba(124, 212, 255, 0.32);
}

.unified-home-main {
  padding: calc(var(--header-height) + 22px) clamp(20px, 3vw, 34px) 32px;
}

/* Dock embed home: layout lives in home.html; strip legacy main padding here. */
body.page-home.home-dock-embed .unified-home-main {
  padding: 0;
}

body.page-home.home-dock-embed .unified-codexa-shell__frame-wrap,
body.page-home.home-dock-embed .unified-codexa-frame {
  min-height: 0 !important;
}

.unified-home-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.unified-home-shell--dock-only {
  gap: 0;
}

.unified-home-shell__header {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(120, 224, 255, 0.24);
  background:
    linear-gradient(136deg, rgba(7, 20, 38, 0.52), rgba(16, 18, 46, 0.42)),
    radial-gradient(circle at 0% 0%, rgba(106, 242, 255, 0.12), transparent 42%);
  box-shadow: 0 24px 60px rgba(2, 10, 24, 0.32);
  -webkit-backdrop-filter: blur(20px) saturate(1.06);
  backdrop-filter: blur(20px) saturate(1.06);
}

.unified-home-shell__copy {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.unified-home-shell__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(138, 224, 255, 0.24);
  background: rgba(8, 18, 36, 0.46);
  color: rgba(214, 238, 255, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.unified-home-shell__header h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #80c5ff;
}

.unified-home-shell__intro {
  margin: 0;
  max-width: 68ch;
  color: rgba(221, 236, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.unified-home-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shell-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(120, 224, 255, 0.24);
  background: rgba(8, 18, 36, 0.34);
  color: rgba(232, 244, 255, 0.92);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(28, 74, 160, 0.12);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.shell-chip:hover,
.shell-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(154, 232, 255, 0.44);
  box-shadow: 0 18px 36px rgba(2, 10, 24, 0.28), inset 0 0 18px rgba(28, 74, 160, 0.16);
  outline: none;
}

.shell-chip--active,
.shell-chip--accent {
  background: linear-gradient(135deg, rgba(46, 219, 255, 0.88), rgba(93, 144, 255, 0.82));
  color: #03111f;
  border-color: rgba(157, 237, 255, 0.54);
}

.shell-chip--upgrade {
  border-color: rgba(214, 157, 255, 0.28);
}

.unified-codexa-shell {
  display: block;
}

.unified-codexa-shell__frame-wrap {
  position: relative;
  min-height: calc(100dvh - var(--header-height) - 56px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(120, 224, 255, 0.22);
  background:
    linear-gradient(150deg, rgba(7, 20, 38, 0.16), rgba(18, 18, 50, 0.1)),
    radial-gradient(circle at 12% 10%, rgba(106, 242, 255, 0.08), transparent 42%);
  box-shadow: 0 28px 72px rgba(2, 10, 24, 0.34);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  backdrop-filter: blur(10px) saturate(1.04);
}

.unified-codexa-shell__frame-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%),
    radial-gradient(circle at 70% 0%, rgba(170, 112, 255, 0.14), transparent 28%);
  z-index: 0;
}

.unified-codexa-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100dvh - var(--header-height) - 56px);
  border: 0;
  display: block;
  background: transparent;
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 1002;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.6);
}

body.beta-notice-visible {
  --header-offset: 0;
}

.beta-notice {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: none;
  background: rgba(6, 16, 28, 0.85);
  color: var(--color-text);
  border-bottom: 1px solid rgba(77, 206, 216, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.beta-notice.is-visible {
  display: none !important;
}

.beta-notice {
  display: none !important;
}

.beta-notice__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 10px 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.beta-notice__message {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.beta-notice__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.beta-notice__action,
.beta-notice__dismiss {
  background: transparent;
  border: 1px solid rgba(77, 206, 216, 0.45);
  border-radius: var(--radius-pill);
  color: var(--color-heading);
  font-size: 0.82rem;
  padding: 6px 16px;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.beta-notice__action:hover,
.beta-notice__action:focus-visible,
.beta-notice__dismiss:hover,
.beta-notice__dismiss:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.accessibility-hub {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.accessibility-hub__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(5, 15, 26, 0.9);
  border: 1px solid rgba(0, 173, 204, 0.4);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background var(--transition-base), transform var(--transition-base);
  width: 100%;
}

.accessibility-hub__trigger:hover,
.accessibility-hub__trigger:focus {
  background: rgba(0, 22, 36, 0.95);
  transform: translateY(-1px);
}

.accessibility-panel {
  position: static;
  width: 100%;
  padding: 20px 22px;
  border-radius: var(--radius-card);
  background: rgba(6, 16, 28, 0.95);
  border: 1px solid rgba(0, 173, 204, 0.35);
  box-shadow: 0 24px 48px rgba(0, 8, 16, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: min(60vh, 520px);
  overflow: auto;
  overscroll-behavior: contain;
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.accessibility-panel__header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.accessibility-panel__header p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.accessibility-panel__close {
  background: transparent;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 1.05rem;
}

.accessibility-panel__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accessibility-panel__label {
  font-weight: 600;
  font-size: 0.9rem;
}

.accessibility-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.accessibility-option {
  flex: 1 1 auto;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 173, 204, 0.35);
  background: rgba(4, 12, 23, 0.9);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.accessibility-option[aria-pressed="true"] {
  border-color: rgba(0, 224, 255, 0.75);
  background: rgba(0, 173, 204, 0.2);
  color: var(--color-text);
}

.accessibility-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.accessibility-toggle input {
  width: 20px;
  height: 20px;
}

.accessibility-panel__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.accessibility-announcer {
  font-size: 0.85rem;
  color: var(--color-muted);
}

body.accessibility-high-contrast .accessibility-panel {
  background: rgba(12, 12, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}

body.accessibility-high-contrast .accessibility-option {
  background: rgba(10, 10, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .accessibility-panel {
    padding: 18px;
  }

  .accessibility-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  main {
    padding: 120px 5vw 80px;
  }

  .hero,
  .section,
  .timeline-section,
  .faq-section,
  .contact-section,
  .footer-cta {
    padding: 70px 5vw;
    margin-bottom: 52px;
    border-radius: var(--radius-card);
    box-shadow: 0 0 38px rgba(20, 60, 120, 0.28);
  }

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

  .hero__media {
    order: 2;
  }

  .section,
  .timeline-section,
  .faq-section,
  .contact-section,
  .footer-cta {
    max-width: min(100%, 960px);
  }

  .card {
    padding: 24px;
  }

  .card-grid {
    gap: 18px;
  }

  .codexa-panel {
    gap: 28px;
  }

  .section-lead,
  .hero-copy {
    font-size: 1.05rem;
  }

  .cta-row {
    gap: 14px;
  }
}

@media (max-width: 720px) {
  main {
    padding: 96px 4vw 68px;
  }

  .hero,
  .section,
  .timeline-section,
  .faq-section,
  .contact-section,
  .footer-cta {
    padding: clamp(26px, 7vw, 36px) clamp(16px, 6vw, 22px);
    margin-bottom: clamp(24px, 6vw, 32px);
    border-radius: var(--radius-card);
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 5vw, 24px);
    align-items: flex-start;
  }

  .hero h1 {
    letter-spacing: 0.04em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--stack-2);
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .card-grid,
  .mini-cards,
  .pricing__grid,
  .addons__chips,
  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--stack-3);
  }

  .comparison__table {
    display: block;
    overflow-x: auto;
  }

  .contact-preview__hud {
    grid-template-columns: 1fr;
  }

  .trustbar {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

/* Signed-in full-viewport: mobile web only (coarse pointer). Desktop keeps nav + footer. */
@media (max-width: 820px) and (hover: none) and (pointer: coarse) {
  body.auth-signed-in {
    --header-height: 0px;
  }

  body.auth-signed-in .site-header,
  body.auth-signed-in .site-footer {
    display: none !important;
  }
}

.site-header {
  position: sticky;
  top: var(--header-offset);
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 42px);
  padding: 16px 38px;
  min-height: var(--header-height);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(2, 8, 14, 0.72);
  border-bottom: 1px solid rgba(77, 206, 216, 0.28);
  box-shadow: 0 8px 24px rgba(0, 13, 25, 0.28);
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(4, 12, 21, 0.9);
  box-shadow: 0 12px 32px rgba(0, 13, 25, 0.36);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand a {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand span {
  font-size: 0.65rem;
  color: var(--color-muted);
  letter-spacing: 0.3em;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  padding: 16px clamp(18px, 4vw, 32px);
  margin: 18px auto 0;
  max-width: min(1180px, calc(100% - 32px));
  background: linear-gradient(120deg, rgba(12, 30, 58, 0.92), rgba(5, 14, 30, 0.88));
  border: 1px solid rgba(77, 210, 224, 0.24);
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(5, 16, 35, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 5;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: #cbe9ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-brand__title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
}

.nav-brand__tag {
  font-size: 12px;
  opacity: 0.65;
  letter-spacing: 0.18em;
}

.nav-groups {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10, 24, 46, 0.75);
  border: 1px solid rgba(77, 210, 224, 0.22);
  box-shadow: inset 0 1px 0 rgba(156, 210, 255, 0.12);
}

.nav-chip {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #97c1ff;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-chip:hover {
  color: #ffffff;
}

.nav-chip.is-active {
  background: linear-gradient(135deg, #3ce9ff, #5a7dff);
  color: #04121a;
  box-shadow: 0 16px 38px rgba(30, 114, 204, 0.35);
}

.nav-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-quick__link {
  text-decoration: none;
  color: #c0dcff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(12, 28, 52, 0.85);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-quick__link:hover {
  color: #ffffff;
  border-color: rgba(156, 210, 255, 0.38);
}

.nav-quick__link--ghost {
  background: transparent;
  border-color: rgba(77, 210, 224, 0.2);
}

.nav-quick__link--cta {
  background: linear-gradient(135deg, #36e5ff, #5a89ff);
  color: #04121a;
  box-shadow: 0 16px 40px rgba(28, 119, 202, 0.45);
}

.nav-quick__link.is-current {
  border-color: rgba(156, 210, 255, 0.6);
}

.nav-panels {
  display: flex;
  gap: 12px;
  max-width: min(1180px, calc(100% - 32px));
  margin: 10px auto 26px;
  padding: 0 clamp(18px, 4vw, 32px);
}

.nav-panel {
  flex: 1;
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(16px, 2vw, 22px);
  background: rgba(7, 18, 32, 0.9);
  border: 1px solid rgba(77, 210, 224, 0.18);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(4, 12, 26, 0.4);
}

.nav-panel.is-active {
  display: flex;
}

.nav-panel__link {
  text-decoration: none;
  color: #b9d7ff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(14, 30, 58, 0.65);
  transition: all 0.2s ease;
}

.nav-panel__link:hover {
  color: #ffffff;
}

.nav-panel__link.is-current {
  background: linear-gradient(135deg, rgba(76, 209, 224, 0.32), rgba(90, 130, 255, 0.32));
  color: #ffffff;
}

.sa-menu__link.is-current {
  background: rgba(90, 130, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(90, 130, 255, 0.35);
}



.site-nav__hamburger{position:relative;}
@media (min-width:1024px){
  .site-nav__hamburger{display:none;}
}

@media (max-width: 1023px) {
  .nav-shell {
    padding: 12px 18px;
    margin: 12px auto 10px;
    border-radius: 18px;
  }

  .nav-brand__tag,
  .nav-groups,
  .nav-panels,
  .nav-quick {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 32px);
  flex: 1;
  min-width: 0;
}

.primary-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 26px);
  flex: 1;
  min-width: 0;
}

.primary-nav__actions,
.primary-nav__auth,
.primary-nav__utility {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  white-space: nowrap;
}

.primary-nav__actions {
  margin-left: 0;
}

.primary-nav__auth {
  padding-left: clamp(6px, 1vw, 16px);
  border-left: 1px solid rgba(77, 206, 216, 0.24);
}

.primary-nav__utility {
  padding-left: clamp(6px, 1vw, 16px);
}

.primary-nav__utility .accessibility-hub {
  margin-left: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: clamp(0.88rem, 0.82rem + 0.25vw, 0.98rem);
  letter-spacing: 0.04em;
  padding: 6px 0;
  min-height: 40px;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-base);
}

.nav-link--button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(52, 213, 255, 0.45);
  background: linear-gradient(135deg, rgba(52, 213, 255, 0.18), rgba(183, 132, 255, 0.16));
  box-shadow: 0 15px 30px rgba(15, 63, 110, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.nav-link--button:hover,
.nav-link--button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(52, 213, 255, 0.8);
  box-shadow: 0 25px 45px rgba(15, 63, 110, 0.55);
}

.nav-link--button::after {
  display: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  margin: 0;
}

.nav-actions .btn {
  min-width: clamp(132px, 11vw, 156px);
  min-height: 44px;
  padding: 10px 20px;
}

[data-locked="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

[data-locked="true"].nav-link::after {
  width: 0;
}

.nav-cta {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.site-nav__hamburger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(77, 206, 216, 0.32);
  background: rgba(5, 18, 32, 0.82);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.site-nav__hamburger:hover,
.site-nav__hamburger:focus-visible {
  background: rgba(5, 18, 32, 0.92);
  border-color: rgba(77, 206, 216, 0.6);
  outline: none;
}

.site-nav__hamburger::before,
.site-nav__hamburger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav__hamburger::before {
  top: 16px;
  box-shadow: 0 10px 0 currentColor;
}

.site-nav__hamburger::after {
  bottom: 16px;
}

main {
  padding: calc(72px + var(--header-offset)) 0 64px;
}



.sa-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.sa-menu[aria-hidden="false"] {
  display: block;
}

.sa-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.sa-menu__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: radial-gradient(120% 120% at 50% 0%, #0e1526 0%, #0a1020 60%, #090f1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(8%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  will-change: transform, opacity;
  box-sizing: border-box;
  overflow: hidden;
}

.sa-menu__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sa-menu__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  color: #bfe9ff;
  text-transform: uppercase;
}

.sa-menu__close {
  background: none;
  border: 0;
  color: #bfe9ff;
  font-size: 28px;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
}

.sa-menu__scroll {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 8px 20px 24px;
}

.sa-menu__list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}

.sa-menu__list + .sa-menu__list {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sa-menu__link {
  display: block;
  width: 100%;
  padding: 14px 6px;
  font-size: 1.15rem;
  color: #d7eaff;
  text-align: left;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sa-menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sa-menu__link:active {
  transform: translateY(1px);
}

.sa-menu__list--util .sa-menu__link {
  font-size: 1rem;
  opacity: 0.9;
}

.sa-menu__accessibility {
  padding-top: 12px;
}

.sa-menu__footer {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 10px;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(9, 15, 26, 0) 0%, rgba(9, 15, 26, 0.9) 35%, rgba(9, 15, 26, 1) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sa-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font: inherit;
}

.sa-btn--primary {
  background: linear-gradient(90deg, #36e5ff, #5a7bff);
  color: #04121a;
}

.sa-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d7eaff;
  background: transparent;
}

.sa-menu[aria-hidden="false"] .sa-menu__backdrop {
  opacity: 1;
}

.sa-menu[aria-hidden="false"] .sa-menu__panel {
  transform: translateY(0);
  opacity: 1;
}

.sa-menu__link:focus-visible,
.sa-menu__close:focus-visible,
.sa-btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

@media (min-width: 1024px) {
  .sa-menu__panel {
    width: min(100%, 560px);
    margin: 6vh auto;
    inset: auto 0 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-menu__backdrop,
  .sa-menu__panel,
  .hero--solo .hero__copy::after,
  .hero--solo::after {
    transition: none !important;
    animation: none !important;
  }
}

.section,
.hero,
.timeline-section,
.faq-section,
.contact-section,
.footer-cta {
  position: relative;
  z-index: 0;
  padding: clamp(40px, 6.2vw, 68px) clamp(28px, 5.2vw, 52px);
  margin-bottom: clamp(40px, 6vw, 68px);
  border-radius: calc(var(--radius-card) + 16px);
  border: 1px solid rgba(77, 206, 216, 0.22);
  background: var(--gradient-panel);
  box-shadow: 0 18px 45px rgba(8, 20, 38, 0.4);
  overflow: hidden;
}

.section::before,
.hero::before,
.timeline-section::before,
.faq-section::before,
.contact-section::before,
.footer-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 224, 255, 0.28), rgba(160, 0, 255, 0.22));
  opacity: 0.55;
  z-index: -2;
}

.section::after,
.hero::after,
.timeline-section::after,
.faq-section::after,
.contact-section::after,
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 18%, rgba(77, 206, 216, 0.08), transparent 70%),
    radial-gradient(circle at 80% 8%, rgba(183, 132, 255, 0.08), transparent 68%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 14px),
    rgba(2, 8, 14, 0.6);
  z-index: -1;
}

.section,
.timeline-section,
.faq-section,
.contact-section,
.footer-cta,
.hero {
  width: min(100%, calc(var(--layout-max-width) + 140px));
  margin-inline: auto;
}

#workspace-includes {
  width: min(100%, calc(var(--layout-max-width) + 140px));
  margin-inline: auto;
  padding-block: clamp(36px, 6vw, 80px);
}
#workspace-includes .workspace-includes-card {
  border: 1px solid rgba(116, 206, 255, 0.26);
  background: linear-gradient(150deg, rgba(6, 16, 36, 0.86), rgba(16, 14, 40, 0.9));
  border-radius: 24px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 24px 60px rgba(4, 6, 20, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#workspace-includes .workspace-includes-card h3 {
  margin-bottom: clamp(20px, 4vw, 32px);
}

.section--offerings {
  background: linear-gradient(155deg, rgba(6, 20, 36, 0.78), rgba(18, 26, 54, 0.76));
}

.section--pricing {
  background: linear-gradient(160deg, rgba(10, 24, 42, 0.82), rgba(28, 18, 62, 0.78));
}
.section--pricing .pricing-overview-card {
  border: 1px solid rgba(108, 196, 255, 0.28);
  background: linear-gradient(150deg, rgba(4, 12, 30, 0.8), rgba(20, 12, 46, 0.88));
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 30px 65px rgba(2, 4, 18, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  margin-bottom: clamp(32px, 6vw, 76px);
}
.section--pricing .pricing-overview-card .section-header {
  margin-bottom: clamp(20px, 4vw, 36px);
}
.section--pricing .pricing-overview-card .addons {
  margin-bottom: clamp(20px, 4vw, 36px);
}

#workspace-includes .hero__actions,
#workspace-difference .hero__actions,
#managed-service .hero__actions {
  margin-top: clamp(18px, 3vw, 30px);
}

.pricing-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.section--portfolio {
  background: linear-gradient(150deg, rgba(6, 18, 38, 0.74), rgba(22, 28, 54, 0.7));
}

.section--about {
  background: linear-gradient(145deg, rgba(8, 20, 36, 0.76), rgba(20, 16, 48, 0.72));
}

.section--faq {
  background: linear-gradient(155deg, rgba(6, 18, 40, 0.78), rgba(24, 12, 52, 0.74));
}

.section--contact {
  background: linear-gradient(150deg, rgba(4, 16, 34, 0.82), rgba(20, 18, 50, 0.76));
}

.hero {
  position: relative;
  margin: 0 auto clamp(40px, 6vw, 68px);
  text-align: left;
  padding: clamp(44px, 8vw, 72px) 0;
  background: linear-gradient(155deg, rgba(4, 18, 36, 0.9), rgba(32, 18, 68, 0.78));
  border: 1px solid rgba(77, 206, 216, 0.28);
  box-shadow: var(--shadow-soft);
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
}

.hero--solo .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(22px, 4vw, 42px);
  max-width: min(1180px, 100%);
}

.hero--solo .hero__copy {
  max-width: none;
  padding-right: clamp(0px, 2vw, 20px);
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  align-content: center;
}

.hero.hero--solo h1 {
  max-width: 16ch;
  letter-spacing: 0.06em;
}

.hero--solo .hero-copy,
.hero--solo .hero-subtext,
.hero--solo .hero-highlights {
  max-width: 64ch;
}

.hero--solo .hero__actions {
  max-width: 640px;
}

.hero--pricing .hero__inner {
  align-items: stretch;
  gap: clamp(28px, 6vw, 52px);
}

.hero--pricing .hero__copy {
  max-width: min(580px, 100%);
  justify-self: start;
}

.hero--pricing h1 {
  max-width: 18ch;
  letter-spacing: 0.05em;
}

.hero--pricing .hero__actions {
  max-width: 420px;
}

.hero--pricing .hero__actions .btn {
  min-width: 0;
}

.hero--pricing .hero__media {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  padding: clamp(20px, 4.5vw, 30px);
  overflow: visible;
  height: auto;
}

body.page-legal .hero {
  margin-top: clamp(28px, 6vw, 88px);
}

body.page-legal .hero__inner {
  gap: clamp(28px, 6vw, 64px);
}

body.page-legal .hero__media {
  min-height: clamp(260px, 30vw, 380px);
  padding: clamp(18px, 5vw, 36px);
  display: flex;
  align-items: stretch;
}

body.page-projects .hero {
  margin-top: clamp(28px, 6vw, 88px);
}

body.page-projects .hero__inner {
  gap: clamp(28px, 6vw, 60px);
}

body.page-projects .hero__media {
  min-height: clamp(260px, 30vw, 380px);
  padding: clamp(18px, 4.5vw, 32px);
}

.hero--pricing .hero-media-card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 24px);
  width: 100%;
  padding: clamp(18px, 4.2vw, 26px);
  border-radius: calc(var(--radius-card) + 6px);
  background: linear-gradient(150deg, rgba(4, 16, 32, 0.85), rgba(18, 26, 52, 0.76));
  border: 1px solid rgba(77, 210, 224, 0.28);
  box-shadow: 0 28px 60px rgba(4, 16, 34, 0.35);
  justify-content: space-between;
}

.hero--pricing .hero-media-card ul {
  gap: clamp(12px, 3vw, 20px);
  flex: 1 1 auto;
}

.hero--portfolio .hero__inner {
  align-items: flex-start;
  gap: clamp(28px, 6vw, 54px);
}

.hero--portfolio .hero__copy {
  max-width: min(580px, 100%);
  display: grid;
  gap: clamp(16px, 4vw, 24px);
}

.hero--portfolio .hero__media {
  align-self: stretch;
  display: grid;
  gap: clamp(18px, 4vw, 26px);
  padding: clamp(18px, 4vw, 26px);
  grid-auto-rows: minmax(0, 1fr);
  align-content: start;
  justify-items: stretch;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero--portfolio .hero-media-card {
  border-radius: calc(var(--radius-card) + 4px);
  border: 1px solid rgba(77, 210, 224, 0.24);
  background: linear-gradient(145deg, rgba(6, 18, 36, 0.82), rgba(14, 18, 42, 0.74));
  box-shadow: 0 22px 48px rgba(4, 16, 32, 0.3);
  padding: clamp(18px, 3.6vw, 24px);
  display: grid;
  gap: 12px;
}

.hero--portfolio .hero-media-card h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-heading);
  margin: 0;
}

.hero--portfolio .hero-media-card p {
  margin: 0;
  color: rgba(212, 232, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero--portfolio .hero__media::before {
  display: none;
}

.hero--projects .hero__copy {
  max-width: min(600px, 100%);
  display: grid;
  gap: clamp(18px, 4vw, 28px);
}

.hero--projects .hero__actions {
  margin-top: 8px;
}

.hero--projects .hero__media {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 26px);
}

.hero--projects .hero-media-card ul {
  display: grid;
  gap: 16px;
}

.hero--projects .hero-media-card li span {
  display: block;
  margin-top: 6px;
  color: rgba(210, 230, 255, 0.85);
}

.hero--about .hero__inner {
  align-items: flex-start;
  gap: clamp(28px, 6vw, 54px);
}

.hero--about .hero__copy {
  max-width: min(560px, 100%);
  display: grid;
  gap: clamp(16px, 4vw, 24px);
}

.hero--about h1 {
  max-width: 20ch;
}

.hero--about .hero__media {
  align-self: stretch;
  display: grid;
  gap: clamp(18px, 4vw, 26px);
  padding: clamp(18px, 4vw, 26px);
  background: none;
  border: 0;
  box-shadow: none;
  width: min(100%, 520px);
}

.hero--about .hero__media::before {
  display: none;
}

.hero-media-card--guides {
  padding: clamp(20px, 4vw, 28px);
  border-radius: calc(var(--radius-card) + 6px);
  border: 1px solid rgba(77, 210, 224, 0.24);
  background: linear-gradient(150deg, rgba(6, 18, 36, 0.82), rgba(16, 28, 54, 0.74));
  box-shadow: 0 28px 58px rgba(4, 16, 32, 0.36);
  display: grid;
  gap: clamp(16px, 3.4vw, 22px);
}

.hero--contact .hero__inner {
  align-items: flex-start;
  gap: clamp(28px, 6vw, 54px);
}

.hero--contact .hero__copy {
  max-width: min(560px, 100%);
  display: grid;
  gap: clamp(16px, 4vw, 24px);
}

.hero--contact .hero__media {
  align-self: stretch;
  display: grid;
  gap: clamp(18px, 4vw, 26px);
  padding: clamp(18px, 4vw, 26px);
  background: none;
  border: 0;
  box-shadow: none;
  width: min(100%, 520px);
}

.hero--contact .hero__media::before {
  display: none;
}

.hero--lifestyle .hero__inner {
  align-items: flex-start;
  gap: clamp(28px, 6vw, 56px);
}

.hero--lifestyle .hero__copy {
  max-width: min(560px, 100%);
  display: grid;
  gap: clamp(16px, 4vw, 24px);
}

.hero--lifestyle h1 {
  max-width: 20ch;
}

.hero--lifestyle .hero__media {
  align-self: stretch;
  display: grid;
  gap: clamp(20px, 4.5vw, 28px);
  padding: clamp(20px, 4.2vw, 30px);
  background: none;
  border: 0;
  box-shadow: none;
  width: min(100%, 520px);
  justify-self: stretch;
}

.hero-media-card--signals,
.hero-media-card--guides {
  padding: clamp(20px, 4vw, 28px);
  border-radius: calc(var(--radius-card) + 6px);
  border: 1px solid rgba(77, 210, 224, 0.24);
  background: linear-gradient(150deg, rgba(6, 18, 38, 0.82), rgba(18, 26, 52, 0.78));
  box-shadow: 0 28px 58px rgba(4, 16, 32, 0.36);
  display: grid;
  gap: clamp(16px, 3.6vw, 22px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-signal-list,
.hero-guides-list,
.hero-working-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(12px, 3vw, 18px);
  width: 100%;
}

.hero-signal-list li,
.hero-guides-list li,
.hero-working-list li {
  padding: clamp(14px, 3.2vw, 20px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(77, 210, 224, 0.22);
  background: linear-gradient(145deg, rgba(8, 20, 38, 0.74), rgba(18, 16, 52, 0.72));
  box-shadow: inset 0 0 22px rgba(46, 108, 170, 0.24);
  display: grid;
  gap: 6px;
  width: 100%;
}

.hero-signal__title,
.hero-guide__title,
.hero-working__title {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(155, 227, 255, 0.9);
}

.hero-signal__desc,
.hero-guide__desc,
.hero-working__desc {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(212, 230, 255, 0.82);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(22px, 3vw, 32px);
}

.card {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border-radius: calc(var(--radius-card) + 4px);
  border: 1px solid rgba(52, 213, 255, 0.22);
  background: linear-gradient(155deg, rgba(4, 12, 28, 0.9), rgba(10, 22, 44, 0.82));
  box-shadow: 0 30px 60px rgba(5, 16, 34, 0.55), inset 0 0 18px rgba(20, 52, 110, 0.24);
  display: grid;
  gap: 12px;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 15% 0%, rgba(52, 213, 255, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 210, 224, 0.65);
  box-shadow: 0 35px 70px rgba(5, 16, 34, 0.65);
}

.card h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(200, 220, 240, 0.88);
  display: grid;
  gap: 8px;
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 18px;
  border: 1px solid rgba(52, 213, 255, 0.32);
  background: linear-gradient(135deg, rgba(52, 213, 255, 0.24), rgba(183, 132, 255, 0.18));
  color: rgba(189, 236, 255, 0.9);
  width: fit-content;
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.plan-card .badge {
  margin-bottom: 6px;
}

.plan-card h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.1em;
  color: var(--color-heading);
}

.plan-card p {
  margin: 0;
  color: rgba(205, 226, 248, 0.9);
}

.plan-card__segment {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(145, 206, 255, 0.86);
}

.plan-card__summary {
  min-height: 78px;
  font-size: 1.06rem;
  line-height: 1.5;
}

.plan-card__hype {
  margin: 2px 0 0;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(101, 242, 233, 0.35);
  background: linear-gradient(140deg, rgba(2, 46, 62, 0.46), rgba(30, 28, 74, 0.42));
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(175, 247, 255, 0.92);
  line-height: 1.45;
}

.plan-card ul {
  margin-top: 8px;
  font-size: 0.95rem;
}

.plan-eligibility-note {
  font-size: 0.82rem;
  color: rgba(148, 192, 228, 0.9);
}

.plan-card__actions {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.plan-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.plan-card__cta {
  min-height: 52px;
  border-radius: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.plan-card__link {
  font-size: 0.88rem;
  text-decoration: underline;
  color: rgba(200, 230, 255, 0.8);
}

.plan-card__link:hover,
.plan-card__link:focus-visible {
  color: #dff6ff;
}

.plan-card__note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(195, 218, 240, 0.75);
  line-height: 1.5;
}

.plan-card.featured {
  border-color: rgba(0, 255, 224, 0.4);
  box-shadow: 0 40px 80px rgba(0, 200, 255, 0.35);
}

.plan-card.featured .plan-card__cta {
  box-shadow: 0 12px 28px rgba(40, 184, 255, 0.35);
}

.plan-card.featured::after {
  background: radial-gradient(circle at 12% 10%, rgba(0, 255, 224, 0.22), transparent 50%);
}

.plan-footnote {
  margin: clamp(18px, 3vw, 26px) 0 0;
  font-size: 0.9rem;
  color: rgba(195, 218, 240, 0.8);
}

.plan-addons {
  margin-top: clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.plan-addons > div {
  padding: clamp(18px, 3vw, 26px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(52, 213, 255, 0.22);
  background: linear-gradient(160deg, rgba(6, 16, 32, 0.82), rgba(12, 22, 42, 0.78));
  box-shadow: 0 26px 46px rgba(5, 18, 38, 0.45);
}

.plan-addons h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.plan-addons ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(205, 226, 248, 0.85);
  display: grid;
  gap: 6px;
}

.contact-preview__layout {
  display: flex;
  justify-content: center;
  padding-top: clamp(8px, 2vw, 16px);
}

.contact-preview__panel {
  width: min(100%, 1080px);
  display: grid;
  gap: clamp(20px, 3.2vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-flow: row dense;
  padding: clamp(28px, 4.4vw, 40px);
  border-radius: calc(var(--radius-card) + 10px);
  border: 1px solid rgba(77, 206, 216, 0.35);
  background: radial-gradient(circle at 15% 15%, rgba(65, 154, 255, 0.18), transparent 48%), radial-gradient(circle at 80% 10%, rgba(0, 255, 224, 0.15), transparent 46%), linear-gradient(150deg, rgba(2, 8, 24, 0.94), rgba(6, 18, 38, 0.92));
  box-shadow: 0 40px 80px rgba(2, 10, 32, 0.65), inset 0 0 80px rgba(35, 92, 160, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-preview__panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  background:
    linear-gradient(120deg, rgba(77, 206, 216, 0.08), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 42px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.contact-preview__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 110%, rgba(0, 255, 255, 0.18), transparent 55%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.contact-preview__panel > * {
  position: relative;
  z-index: 1;
}

.contact-preview__hud {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  border-radius: calc(var(--radius-card) + 4px);
  border: 1px solid rgba(92, 215, 255, 0.25);
  background: rgba(2, 10, 24, 0.82);
  box-shadow: inset 0 0 26px rgba(20, 64, 122, 0.35);
}

.contact-hud__chip {
  flex: 1 1 180px;
  min-width: 160px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(92, 215, 255, 0.25);
  background: linear-gradient(120deg, rgba(6, 22, 42, 0.88), rgba(12, 34, 70, 0.92));
  box-shadow: inset 0 0 22px rgba(30, 56, 112, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(196, 230, 255, 0.8);
}

.contact-hud__chip .chip-value {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hud__chip--pulse {
  position: relative;
  overflow: hidden;
}

.contact-hud__chip--pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.3), transparent 55%);
  opacity: 0.7;
  animation: contactPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes contactPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.45;
  }
}

.contact-preview__form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3.4vw, 28px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(77, 206, 216, 0.26);
  background: rgba(3, 12, 28, 0.9);
  box-shadow: inset 0 0 32px rgba(20, 54, 108, 0.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.contact-preview__form--uplink {
  position: relative;
  overflow: hidden;
}

.contact-preview__form--uplink::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 85% 0%, rgba(125, 255, 255, 0.16), transparent 50%);
  mix-blend-mode: screen;
}

.contact-preview__form .form-grid {
  display: grid;
  gap: clamp(14px, 2.6vw, 20px);
}

.form-grid--dual {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-preview__form .input-group {
  display: grid;
  gap: 8px;
}

.contact-preview__form label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(180, 210, 235, 0.86);
}

.contact-input .input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(77, 210, 224, 0.28);
  background: linear-gradient(130deg, rgba(3, 16, 34, 0.9), rgba(8, 28, 54, 0.92));
  box-shadow: inset 0 0 18px rgba(16, 80, 144, 0.25);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-input .input-shell:focus-within {
  border-color: rgba(77, 210, 224, 0.7);
  box-shadow: 0 0 22px rgba(77, 210, 224, 0.25), inset 0 0 24px rgba(0, 140, 255, 0.25);
  transform: translateY(-1px);
}

.input-shell textarea {
  padding-top: 4px;
  align-self: flex-start;
}

.input-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 224, 0.55), rgba(0, 132, 255, 0.2));
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: rgba(0, 255, 224, 0.9);
  flex-shrink: 0;
}

.contact-preview__form input,
.contact-preview__form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(77, 210, 224, 0.22);
  background: rgba(6, 16, 32, 0.82);
  color: var(--color-text);
  box-shadow: inset 0 0 18px rgba(20, 48, 88, 0.28);
  font: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.contact-input .input-shell input,
.contact-input .input-shell textarea {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  color: rgba(228, 241, 255, 0.95);
}

.contact-preview__form input::placeholder,
.contact-preview__form textarea::placeholder {
  color: rgba(180, 208, 236, 0.55);
  letter-spacing: 0.02em;
}

.contact-preview__form input:focus-visible,
.contact-preview__form textarea:focus-visible {
  outline: none;
  border-color: rgba(77, 210, 224, 0.6);
  box-shadow: 0 0 0 3px rgba(77, 210, 224, 0.25);
  background: rgba(8, 22, 40, 0.9);
}

.contact-preview__form textarea {
  min-height: clamp(110px, 26vw, 160px);
  resize: vertical;
}

.contact-preview__form--uplink textarea {
  min-height: clamp(140px, 28vw, 190px);
}

.contact-preview__form-header {
  display: grid;
  gap: 6px;
}

.contact-preview__form-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(137, 232, 255, 0.9);
}

.contact-preview__form-deck {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(214, 232, 255, 0.85);
}

.contact-preview__form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  margin-top: 6px;
}

.contact-preview__signal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(190, 218, 245, 0.85);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 224, 0.9), rgba(0, 140, 255, 0.4));
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.8);
  animation: statusPulse 2.4s ease-in-out infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
}

.btn-holo {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(92, 215, 255, 0.7);
  background: linear-gradient(120deg, rgba(0, 255, 224, 0.25), rgba(0, 120, 255, 0.35)), rgba(3, 16, 32, 0.5);
  color: var(--color-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  justify-content: center;
}

.btn-holo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-holo:hover::after {
  transform: translateX(100%);
}

.btn-holo:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 140, 255, 0.35);
}

.btn-holo svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-preview__cta {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 3.2vw, 24px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(77, 206, 216, 0.2);
  background: linear-gradient(160deg, rgba(10, 28, 52, 0.82), rgba(20, 18, 58, 0.74));
  box-shadow: inset 0 0 24px rgba(48, 98, 168, 0.24);
}

.contact-preview__cta--uplink {
  border-color: rgba(130, 225, 255, 0.28);
  background: linear-gradient(180deg, rgba(3, 12, 32, 0.95), rgba(14, 12, 42, 0.9));
  box-shadow: inset 0 0 36px rgba(30, 60, 120, 0.32);
}

.contact-preview__cta h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-heading);
  font-size: 0.95rem;
}

.contact-preview__lead {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(215, 235, 255, 0.85);
  line-height: 1.6;
}

.contact-preview__cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.cta-badge {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(90, 176, 255, 0.28);
  background: rgba(8, 18, 40, 0.8);
  box-shadow: inset 0 0 18px rgba(35, 80, 150, 0.25);
  display: grid;
  gap: 4px;
}

.cta-badge__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 212, 255, 0.8);
}

.cta-badge strong {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.contact-preview__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(190, 215, 240, 0.8);
  font-size: 0.9rem;
  display: grid;
  gap: 6px;
}

.contact-preview__timeline {
  list-style: none;
  margin: 8px 0 4px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-preview__timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-preview__timeline li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-preview__timeline strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(225, 240, 255, 0.9);
  margin-bottom: 4px;
}

.contact-preview__timeline p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(190, 215, 240, 0.82);
  line-height: 1.5;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 224, 0.6);
  box-shadow: 0 0 14px rgba(0, 255, 224, 0.5);
  align-self: center;
}

.contact-preview__cta .btn {
  justify-content: center;
}

.contact-preview__note {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(195, 218, 240, 0.7);
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(77, 210, 224, 0.18);
  background: linear-gradient(
    180deg,
    rgba(3, 8, 18, 0.54) 0%,
    rgba(1, 4, 10, 0.72) 55%,
    rgba(0, 0, 0, 0.82) 100%
  );
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: clamp(12px, 1.6vw, 16px) clamp(14px, 3vw, 22px) calc(12px + env(safe-area-inset-bottom));
  color: rgba(214, 239, 255, 0.84);
  font-size: 0.78rem;
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  background: radial-gradient(circle at 20% 0%, rgba(86, 163, 255, 0.18), transparent 60%),
    radial-gradient(circle at 80% 10%, rgba(54, 229, 255, 0.12), transparent 65%);
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}

.site-footer__content {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.9vw, 6px);
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.2vw, 10px);
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer__row--meta-bar {
  align-items: center;
  gap: clamp(8px, 1.4vw, 14px);
  padding-top: clamp(4px, 0.8vw, 6px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__row--meta-bar .site-footer__fineprint {
  flex: 0 1 auto;
  margin: 0;
  min-width: 0;
  font-size: 0.66rem;
  color: rgba(180, 208, 235, 0.72);
  line-height: 1.35;
}

.site-footer__meta-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.site-footer__meta-end .footer-social-links {
  flex: 0 0 auto;
}

.site-footer__meta-end .footer-social-link {
  width: 34px;
  height: 34px;
}

.site-footer__meta-end .footer-social-link svg {
  width: 16px;
  height: 16px;
}

.site-footer__meta-end .site-footer__chips {
  flex: 0 0 auto;
  margin: 0;
}

.cookie-preferences--bar {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.2rem 0.55rem;
  flex: 1 1 200px;
  min-width: min(100%, 180px);
  max-width: min(100%, 420px);
  padding: 0.26rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(77, 210, 224, 0.12);
  background: rgba(3, 10, 21, 0.42);
  box-shadow: none;
}

.cookie-preferences--bar .cookie-preferences__header {
  margin: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.cookie-preferences--bar .cookie-preferences__title {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  margin: 0;
}

.cookie-preferences--bar .cookie-preferences__status {
  font-size: 0.6rem;
  white-space: nowrap;
  margin: 0;
}

.cookie-preferences--bar .cookie-preferences__copy {
  flex: 1 1 120px;
  min-width: 0;
  margin: 0;
  font-size: 0.6rem;
  line-height: 1.3;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  color: rgba(188, 214, 242, 0.68);
}

.cookie-preferences--bar .cookie-preferences__more {
  color: rgba(100, 220, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-preferences--bar .cookie-preferences__more:hover {
  color: #b8f6ff;
}

.cookie-preferences--bar .cookie-preferences__more:focus-visible {
  color: #b8f6ff;
  outline: 2px solid rgba(54, 229, 255, 0.45);
  outline-offset: 2px;
  border-radius: 2px;
}

.cookie-preferences--bar .cookie-preferences__actions {
  flex: 0 0 auto;
  margin: 0;
  gap: 0.28rem 0.45rem;
}

.cookie-preferences--bar .cookie-preferences__toggle {
  padding: 0.2rem 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
}

.cookie-preferences--bar .cookie-preferences__hint {
  font-size: 0.58rem;
  max-width: 11ch;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .cookie-preferences--bar .cookie-preferences__hint {
    display: none;
  }
}

.site-footer__row--top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: clamp(6px, 1vw, 8px);
}

.footer-brand {
  flex: 0 0 auto;
  max-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-brand__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  color: rgba(160, 224, 255, 0.76);
}

.footer-brand h2 {
  margin: 0;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  letter-spacing: 0.09em;
}

.footer-brand__copy {
  display: none !important;
}

.footer-brand__status {
  display: none !important;
}

.footer-brand__signal {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #36e5ff, #5a7bff);
  animation: footerPulse 2.8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(54, 229, 255, 0.8);
}

@keyframes footerPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.footer-nav {
  flex: 1 1 560px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.45rem;
}

.footer-links__group {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.footer-links__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  color: rgba(160, 224, 255, 0.72);
}

.footer-links__items {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-links a {
  color: rgba(226, 244, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #36e5ff;
}

.footer-links__group--stacked .footer-links__items {
  column-count: 2;
  column-gap: 1rem;
}

@media (max-width: 660px) {
  .footer-links__group--stacked .footer-links__items {
    column-count: 1;
  }
}

.footer-actions {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.footer-actions__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 229, 255, 0.35);
  background: rgba(6, 14, 26, 0.62);
  color: #e5f8ff;
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-chip:hover,
.footer-chip:focus-visible {
  background: rgba(54, 229, 255, 0.2);
  border-color: rgba(54, 229, 255, 0.6);
  transform: translateY(-1px);
}

.footer-chip--primary {
  background: linear-gradient(120deg, #36e5ff, #5a7bff);
  border-color: transparent;
  color: #031217;
  font-weight: 700;
}

.footer-actions__email {
  color: rgba(205, 228, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
}

.footer-actions__email:hover,
.footer-actions__email:focus-visible {
  color: #36e5ff;
}

.footer-social-links {
  display: flex;
  gap: 0.35rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(4, 12, 24, 0.72);
  border: 1px solid rgba(54, 229, 255, 0.35);
  color: #cfe1ff;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: rgba(54, 229, 255, 0.7);
  transform: translateY(-1px);
  background: rgba(54, 229, 255, 0.12);
}

.site-footer__row--meta {
  padding-top: clamp(6px, 1vw, 8px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: stretch;
}

.site-footer__signature {
  flex: 1 1 260px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.74rem;
  color: rgba(205, 228, 255, 0.8);
}

.site-footer__disclaimer {
  font-size: 0.68rem;
  color: rgba(190, 216, 245, 0.7);
  margin: 0;
  max-width: 72ch;
  line-height: 1.45;
}

.site-footer__content > .site-footer__disclaimer {
  padding-top: 2px;
}

.cookie-preferences {
  flex: 1 1 260px;
  border-radius: 14px;
  border: 1px solid rgba(77, 210, 224, 0.18);
  padding: 0.46rem 0.64rem;
  background: rgba(3, 10, 21, 0.62);
  box-shadow: inset 0 0 10px rgba(54, 229, 255, 0.035);
  color: rgba(216, 238, 255, 0.85);
}

.cookie-preferences__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.cookie-preferences__title {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(155, 216, 255, 0.9);
}

.cookie-preferences__status {
  font-size: 0.68rem;
  color: #36e5ff;
}

.cookie-preferences__copy {
  font-size: 0.68rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
  color: rgba(205, 228, 255, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cookie-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.cookie-preferences__toggle {
  border: 1px solid rgba(54, 229, 255, 0.65);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  background: rgba(1, 12, 24, 0.85);
  color: #e3f7ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.64rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cookie-preferences__toggle:hover,
.cookie-preferences__toggle:focus-visible {
  border-color: rgba(54, 229, 255, 0.9);
  background: rgba(54, 229, 255, 0.18);
  transform: translateY(-1px);
}

.cookie-preferences__hint {
  font-size: 0.66rem;
  color: rgba(180, 205, 235, 0.7);
}

@media (min-width: 900px) {
  .site-footer {
    padding: 14px 22px calc(12px + env(safe-area-inset-bottom));
    font-size: 0.78rem;
  }

  .site-footer__content {
    gap: 6px;
  }

  .site-footer__row {
    gap: 8px 14px;
  }

  .site-footer__row--top {
    display: grid;
    grid-template-columns: minmax(170px, 0.8fr) minmax(470px, 2.2fr) minmax(165px, 0.8fr);
    align-items: start;
    gap: 6px 12px;
    padding-bottom: 6px;
  }

  .footer-brand {
    max-width: 190px;
    gap: 0.08rem;
  }

  .footer-brand h2 {
    font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 0.45rem;
  }

  .footer-links__group {
    gap: 0.14rem;
  }

  .footer-links__items {
    gap: 0.1rem;
  }

  .footer-links a {
    font-size: 0.72rem;
  }

  .footer-actions {
    gap: 0.35rem;
    flex-basis: 190px;
  }

  .footer-actions__chips {
    gap: 0.28rem;
  }

  .footer-chip {
    padding: 0.24rem 0.64rem;
    font-size: 0.6rem;
  }

  .footer-social-link {
    width: 30px;
    height: 30px;
  }

  .site-footer__row--meta {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(300px, 1.1fr);
    gap: 8px 12px;
    align-items: start;
    padding-top: 7px;
  }

  .site-footer__signature {
    gap: 0.18rem;
    font-size: 0.72rem;
  }

  .site-footer__disclaimer {
    font-size: 0.66rem;
  }

  .cookie-preferences {
    padding: 0.5rem 0.7rem;
  }

  .cookie-preferences__title {
    font-size: 0.64rem;
  }

  .cookie-preferences__status {
    font-size: 0.64rem;
  }

  .cookie-preferences__copy {
    font-size: 0.66rem;
    margin-bottom: 0.28rem;
  }

  .cookie-preferences__toggle {
    padding: 0.24rem 0.62rem;
    font-size: 0.62rem;
  }

  .cookie-preferences__hint {
    font-size: 0.64rem;
  }

  .cookie-preferences--bar {
    padding: 0.24rem 0.48rem;
  }

  .cookie-preferences--bar .cookie-preferences__copy {
    font-size: 0.62rem;
  }

  .cookie-preferences--bar .cookie-preferences__toggle {
    padding: 0.2rem 0.52rem;
    font-size: 0.58rem;
  }
}

.cookie-preferences[data-cookie-state='opted-out'] .cookie-preferences__status {
  color: #ff9fd2;
}

.cookie-preferences[data-cookie-state='opted-out'] .cookie-preferences__toggle {
  border-color: rgba(255, 159, 210, 0.6);
  background: rgba(40, 8, 18, 0.85);
}

.cookie-preferences[data-cookie-state='opted-out'] .cookie-preferences__toggle:hover,
.cookie-preferences[data-cookie-state='opted-out'] .cookie-preferences__toggle:focus-visible {
  border-color: rgba(255, 159, 210, 0.9);
  background: rgba(255, 159, 210, 0.18);
}

.cookie-debug-badge {
  position: fixed;
  left: clamp(12px, 2vw, 18px);
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1650;
  width: min(320px, calc(100vw - 24px));
  border-radius: 12px;
  border: 1px solid rgba(96, 232, 255, 0.45);
  background: linear-gradient(145deg, rgba(5, 14, 28, 0.97), rgba(10, 18, 36, 0.95));
  box-shadow: 0 14px 30px rgba(2, 10, 24, 0.55);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  pointer-events: none;
  color: rgba(214, 235, 255, 0.92);
}

.cookie-debug-badge[data-state='opted-out'] {
  border-color: rgba(255, 159, 210, 0.62);
}

.cookie-debug-badge__label {
  margin: 0;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(155, 216, 255, 0.95);
}

.cookie-debug-badge__value,
.cookie-debug-badge__meta {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.72rem;
  line-height: 1.25;
  word-break: break-word;
}

.cookie-debug-badge__value {
  color: #71f3ff;
}

@media (max-width: 768px) {
  .footer-actions {
    width: 100%;
  }
  .site-footer__row--meta {
    flex-direction: column;
  }

  .site-footer__row--meta-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-footer__meta-end {
    margin-left: 0;
    justify-content: space-between;
    width: 100%;
  }

  .cookie-preferences {
    width: 100%;
  }

  .cookie-preferences--bar {
    max-width: none;
    width: 100%;
    flex: 1 1 auto;
  }

  .cookie-debug-badge {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

.sticky-cta {
  display: none !important;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(77, 210, 224, 0.22);
  box-shadow: 0 22px 48px rgba(6, 18, 34, 0.38);
}

.comparison__table th,
.comparison__table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.95rem;
  color: rgba(210, 230, 255, 0.86);
  border-bottom: 1px solid rgba(77, 210, 224, 0.16);
}

.comparison__table--alt td:nth-child(2),
.comparison__table--alt td:nth-child(3),
.comparison__table--alt th:nth-child(2),
.comparison__table--alt th:nth-child(3) {
  text-align: center;
}

.comparison__table--alt tbody tr:nth-child(odd) {
  background: rgba(6, 18, 36, 0.36);
}

.comparison__table th {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(155, 227, 255, 0.85);
}

.comparison__table tr:last-child td {
  border-bottom: none;
}

.comparison__table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  background: rgba(98, 241, 197, 0.12);
  color: #5ef5cb;
  box-shadow: 0 8px 18px rgba(6, 24, 12, 0.45);
}

.table-icon--check {
  border-color: rgba(94, 245, 203, 0.52);
}

.table-icon--cross {
  background: rgba(255, 92, 122, 0.12);
  color: #ff5d7b;
  border-color: rgba(255, 92, 122, 0.45);
  box-shadow: 0 8px 18px rgba(44, 8, 18, 0.45);
}

.table-icon__text {
  margin-left: 10px;
  display: inline-block;
  color: rgba(210, 230, 255, 0.9);
  font-weight: 600;
}

@media (min-width: 1140px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .hero-copy {
    font-size: 1.14rem;
  }

  .hero__media {
    min-height: 320px;
  }
}

@media (min-width: 1140px) {
  .hero--solo .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    padding-inline: clamp(0px, 3vw, 28px);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) + 16px);
  background: var(--gradient-highlight);
  opacity: 0.35;
  z-index: -1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.hero h1,
.section h2,
.section h3,
.codexa-highlight h2,
.timeline-section h2,
.faq-section h2,
.contact-section h2,
.footer-cta h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(270deg, var(--color-accent), var(--color-accent-secondary), #00ffff, var(--color-accent-secondary));
  background-size: 800% 800%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 12s ease infinite;
  margin-bottom: 22px;
  position: relative;
}

.section h2::after,
.codexa-highlight h2::after,
.timeline-section h2::after,
.faq-section h2::after,
.contact-section h2::after,
.footer-cta h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(77, 206, 216, 0.9), rgba(183, 132, 255, 0.65));
  box-shadow: 0 0 18px rgba(77, 206, 216, 0.55);
  opacity: 0.85;
}

.section h3 {
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.1rem);
  line-height: 1.08;
  text-shadow: 0 0 30px rgba(0, 224, 255, 0.34), 0 0 60px rgba(52, 213, 255, 0.15);
  letter-spacing: 0.06em;
  position: relative;
}

.hero-subhead {
  margin: 10px 0 18px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(164, 228, 255, 0.9);
}

.hero-copy {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 60ch;
  margin: 0;
  line-height: 1.72;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(77, 206, 216, 0.34);
  background: linear-gradient(130deg, rgba(6, 20, 38, 0.85), rgba(16, 26, 50, 0.76));
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-heading);
  box-shadow: inset 0 0 22px rgba(60, 140, 230, 0.14);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.hero__media {
  position: relative;
  border-radius: calc(var(--radius-card) + 6px);
  padding: clamp(18px, 3vw, 24px);
  min-height: 260px;
  background: linear-gradient(160deg, rgba(6, 20, 40, 0.84), rgba(24, 12, 62, 0.68));
  border: 1px solid rgba(77, 206, 216, 0.24);
  box-shadow: 0 40px 80px rgba(10, 26, 52, 0.55);
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(88, 204, 255, 0.25), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(77, 206, 216, 0.22), transparent 62%),
    radial-gradient(circle at 80% 30%, rgba(183, 132, 255, 0.18), transparent 70%),
    linear-gradient(140deg, rgba(6, 20, 40, 0.4), rgba(12, 8, 38, 0.6));
  filter: blur(0.5px);
  animation: heroPulse 14s ease-in-out infinite alternate;
}

.hero--solo::after {
  content: "";
  position: absolute;
  inset: auto 10% 12% auto;
  width: clamp(200px, 28vw, 360px);
  height: clamp(200px, 28vw, 360px);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 190, 85, 0.2), rgba(255, 190, 85, 0) 62%),
    radial-gradient(circle at 30% 30%, rgba(114, 255, 217, 0.16), rgba(114, 255, 217, 0) 70%);
  filter: blur(2px);
  animation: heroOrbitalPulse 12s ease-in-out infinite;
}

body.page-home .hero,
body.page-home .section {
  border-color: rgba(103, 223, 255, 0.34);
  box-shadow: 0 28px 80px rgba(5, 14, 30, 0.64), inset 0 0 30px rgba(24, 58, 120, 0.18);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* Home layout tighten: reduce card footprint so ambient animation stays visible. */
body.page-home .hero {
  margin: 0 auto clamp(12px, 2.2vw, 20px);
  padding: clamp(18px, 3.8vw, 32px) clamp(14px, 2.4vw, 22px);
}

body.page-home .section {
  margin: 0 auto clamp(10px, 2vw, 18px);
  padding: clamp(16px, 3.6vw, 28px) clamp(14px, 2.4vw, 22px);
}

body.page-home .hero__inner {
  gap: clamp(12px, 2.2vw, 20px);
}

body.page-home .hero::before,
body.page-home .section::before {
  background:
    linear-gradient(135deg, rgba(76, 220, 255, 0.36), rgba(160, 0, 255, 0.24)),
    radial-gradient(circle at 82% 0%, rgba(255, 118, 218, 0.22), transparent 65%);
  opacity: 0.72;
}

body.page-home .hero::after,
body.page-home .section::after {
  background:
    radial-gradient(circle at 12% 18%, rgba(77, 206, 216, 0.1), transparent 68%),
    radial-gradient(circle at 84% 8%, rgba(183, 132, 255, 0.1), transparent 64%),
    radial-gradient(circle at 74% 74%, rgba(255, 118, 218, 0.08), transparent 66%),
    repeating-linear-gradient(134deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.046) 1px, transparent 1px, transparent 13px),
    rgba(2, 8, 14, 0.58);
}

/* Remove the large orb decoration from the home hero only. */
body.page-home .hero::after {
  content: none;
}

body.page-home .hero.hero--solo h1 {
  letter-spacing: 0.065em;
  line-height: 1.04;
  max-width: 15ch;
  text-shadow: 0 0 32px rgba(0, 224, 255, 0.4), 0 0 70px rgba(164, 107, 255, 0.24);
  background: linear-gradient(260deg, #52d3ff, #6ec1ff, #a46bff, #ff76da, #7fffe7);
  background-size: 760% 760%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.page-home .hero-subhead {
  margin: 12px 0 20px;
  letter-spacing: 0.13em;
  color: rgba(179, 232, 255, 0.94);
}

body.page-home .hero-copy,
body.page-home .hero-subtext,
body.page-home .section-lead {
  font-family: var(--font-body);
  line-height: 1.82;
  color: rgba(224, 238, 255, 0.9);
}

body.page-home .hero-subtext {
  font-size: 1.03rem;
  color: rgba(198, 228, 252, 0.94);
}

body.page-home .hero-highlights {
  margin: 6px 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

body.page-home .hero-highlights li {
  position: relative;
  padding: 10px 14px 10px 40px;
  border-radius: 14px;
  border: 1px solid rgba(103, 223, 255, 0.24);
  background: linear-gradient(140deg, rgba(6, 20, 38, 0.76), rgba(24, 14, 52, 0.72));
  color: rgba(221, 239, 255, 0.92);
  line-height: 1.6;
  box-shadow: inset 0 0 24px rgba(38, 95, 182, 0.22);
}

body.page-home .hero-highlights li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%, #7fffe7, #5bc8ff 56%, #a46bff 100%);
  box-shadow: 0 0 12px rgba(105, 242, 255, 0.7);
}

body.page-home .hero-chip {
  padding: 8px 16px;
  color: rgba(201, 244, 255, 0.96);
  border-color: rgba(108, 220, 255, 0.48);
  background: linear-gradient(130deg, rgba(8, 24, 45, 0.9), rgba(28, 20, 56, 0.84));
  box-shadow: inset 0 0 18px rgba(82, 165, 255, 0.22), 0 10px 24px rgba(4, 12, 24, 0.4);
}

body.page-home .hero__actions {
  gap: 14px;
  margin-top: 8px;
}

body.page-home .hero__actions .btn {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

body.page-home .hero__actions .btn-neon {
  background: linear-gradient(115deg, rgba(105, 242, 255, 0.98), rgba(164, 107, 255, 0.94), rgba(255, 118, 218, 0.9));
  border-color: rgba(181, 242, 255, 0.9);
  box-shadow: 0 18px 36px rgba(58, 112, 210, 0.48), 0 0 18px rgba(120, 190, 255, 0.36);
}

body.page-home .hero__actions .btn-outline {
  border-color: rgba(138, 227, 255, 0.58);
  background: linear-gradient(140deg, rgba(6, 18, 34, 0.86), rgba(20, 14, 52, 0.8));
  color: rgba(228, 246, 255, 0.96);
}

body.page-home .hero__media {
  background:
    linear-gradient(158deg, rgba(8, 24, 46, 0.92), rgba(26, 14, 64, 0.84)),
    radial-gradient(circle at 14% 6%, rgba(105, 242, 255, 0.2), transparent 58%);
  border-color: rgba(128, 225, 255, 0.32);
  box-shadow: 0 36px 86px rgba(6, 18, 38, 0.68), inset 0 0 40px rgba(36, 84, 180, 0.2);
}

body.page-home .hero__media::before {
  background:
    radial-gradient(circle at top, rgba(88, 204, 255, 0.3), transparent 66%),
    linear-gradient(160deg, rgba(10, 28, 52, 0.42), rgba(30, 16, 58, 0.2));
  opacity: 0.95;
}

body.page-home .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(132deg, rgba(197, 225, 255, 0.038), rgba(197, 225, 255, 0.038) 1px, transparent 1px, transparent 10px),
    radial-gradient(circle at 82% 16%, rgba(255, 118, 218, 0.1), transparent 52%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

body.page-home .hero-media-card li {
  padding: 16px 16px;
  border-color: rgba(107, 223, 255, 0.3);
  background: linear-gradient(138deg, rgba(10, 22, 42, 0.82), rgba(28, 14, 58, 0.76));
  box-shadow: inset 0 0 22px rgba(48, 104, 188, 0.22);
}

body.page-home .hero-media-card li strong {
  color: #f3fbff;
}

body.page-home .hero-media-card li span {
  color: rgba(209, 232, 250, 0.9);
  line-height: 1.55;
}

body.page-home .hero-ops-metrics li {
  padding: 12px;
  border-color: rgba(122, 218, 255, 0.24);
  background: linear-gradient(145deg, rgba(8, 20, 40, 0.92), rgba(18, 20, 46, 0.84));
  box-shadow: inset 0 0 18px rgba(34, 90, 172, 0.2);
}

body.page-home .hero-ops-metrics strong {
  color: #f5fbff;
  text-shadow: 0 0 16px rgba(96, 200, 255, 0.3);
}

body.page-home .hero-ops-queue {
  border-color: rgba(114, 221, 255, 0.32);
  background: linear-gradient(142deg, rgba(8, 20, 36, 0.9), rgba(28, 15, 56, 0.8));
  box-shadow: inset 0 0 18px rgba(34, 92, 176, 0.2);
}

body.page-home .trustbar {
  padding: 0.65rem 0 2rem;
  gap: 0.85rem;
}

body.page-home .trust-pill {
  padding: 10px 16px;
  border-color: rgba(136, 228, 255, 0.36);
  background: linear-gradient(140deg, rgba(8, 22, 42, 0.9), rgba(24, 18, 54, 0.8));
  color: rgba(218, 241, 255, 0.95);
  box-shadow: 0 16px 32px rgba(4, 12, 24, 0.44), inset 0 0 16px rgba(60, 126, 220, 0.18);
}

body.page-home #workspace-includes .workspace-includes-card,
body.page-home .section--pricing .pricing-overview-card {
  border-color: rgba(126, 216, 255, 0.36);
  background: linear-gradient(154deg, rgba(8, 20, 40, 0.9), rgba(24, 14, 54, 0.88));
  box-shadow: 0 34px 82px rgba(4, 10, 24, 0.64), inset 0 0 36px rgba(32, 78, 164, 0.18);
}

body.page-home .card {
  border-color: rgba(108, 214, 255, 0.3);
  background: linear-gradient(156deg, rgba(6, 18, 36, 0.94), rgba(20, 16, 48, 0.88));
  box-shadow: 0 30px 68px rgba(4, 12, 24, 0.58), inset 0 0 24px rgba(33, 82, 168, 0.2);
}

body.page-home .card p {
  color: rgba(214, 232, 250, 0.9);
  line-height: 1.66;
}

body.page-home .comparison__table {
  border-color: rgba(116, 219, 255, 0.34);
  box-shadow: 0 26px 62px rgba(6, 16, 32, 0.56);
}

body.page-home .comparison__table th,
body.page-home .comparison__table td {
  padding: 18px 20px;
  line-height: 1.56;
}

body.page-home .comparison__table th {
  background: linear-gradient(150deg, rgba(8, 24, 44, 0.94), rgba(24, 14, 52, 0.88));
  color: rgba(186, 232, 255, 0.96);
}

body.page-home .comparison__table--alt tbody tr:nth-child(odd) {
  background: linear-gradient(145deg, rgba(8, 20, 40, 0.5), rgba(22, 16, 52, 0.46));
}

body.page-home .comparison__table td:first-child {
  color: rgba(235, 245, 255, 0.96);
}

.trustbar {
  opacity: 1;
  padding: 0.4rem 0 1.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(114, 255, 217, 0.28);
  background: linear-gradient(140deg, rgba(7, 18, 34, 0.86), rgba(16, 16, 42, 0.76));
  color: rgba(206, 234, 255, 0.92);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.72rem;
  box-shadow: 0 14px 28px rgba(4, 14, 28, 0.34);
}

.trust-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--color-accent-mint), #33cfff);
  box-shadow: 0 0 12px rgba(114, 255, 217, 0.5);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(77, 206, 216, 0.32);
  background: rgba(6, 18, 34, 0.72);
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(77, 206, 216, 0.18);
}


.hero-media-card {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 1;
}

.hero-media-card h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0;
  font-size: 0.9rem;
}

.hero-media-card p {
  margin: 0;
  color: var(--color-muted);
}

.hero-media-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-media-card li {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(8, 20, 38, 0.78), rgba(24, 12, 52, 0.72));
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(52, 213, 255, 0.22);
}

.hero-media-card li strong {
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  color: var(--color-text);
  display: block;
  font-size: 0.85rem;
  flex: 0 0 140px;
}

.hero-media-card li span {
  flex: 1;
  color: rgba(201, 225, 245, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-media-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(156, 216, 255, 0.9);
}

.hero-media-card--ops {
  height: 100%;
  gap: 14px;
}

.hero-media-card--ops h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.hero-ops-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-ops-metrics li {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(4, 14, 28, 0.9), rgba(10, 20, 38, 0.86));
}

.hero-ops-metrics span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 214, 238, 0.75);
}

.hero-ops-metrics strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #ecf5ff;
}

.hero-ops-queue {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(77, 210, 224, 0.2);
  background: linear-gradient(140deg, rgba(8, 16, 32, 0.82), rgba(20, 14, 44, 0.8));
}

.hero-ops-queue__title {
  margin: 0 0 8px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(152, 212, 255, 0.86);
}

.hero-ops-queue ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-ops-queue li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(216, 236, 250, 0.9);
}

.hero-ops-queue strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-amber);
}

.hero-ops-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-ops-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 12px;
  font-size: 0.7rem;
}

.hero-ops-actions .btn-neon {
  background: linear-gradient(120deg, rgba(255, 190, 85, 0.95), rgba(114, 255, 217, 0.9));
  border-color: rgba(255, 214, 153, 0.6);
  color: #03141c;
  box-shadow: 0 16px 30px rgba(20, 120, 120, 0.35);
}

.hero-copy strong {
  color: #f6fbff;
}

.hero--solo .hero__copy::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  width: min(420px, 72%);
  background: linear-gradient(90deg, rgba(255, 190, 85, 0.86), rgba(114, 255, 217, 0.84), rgba(77, 206, 216, 0.5));
  box-shadow: 0 0 22px rgba(114, 255, 217, 0.45);
  animation: heroBeamSweep 6s ease-in-out infinite;
}

@keyframes heroBeamSweep {
  0%,
  100% {
    transform: scaleX(0.7);
    opacity: 0.65;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes heroOrbitalPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}


.hero--contact {
  margin-top: 0;
}

.contact-hero__inner {
  gap: clamp(28px, 6vw, 56px);
  align-items: flex-start;
}

.contact-hero__copy {
  max-width: min(560px, 100%);
}

.contact-hero__media {
  min-height: clamp(260px, 28vw, 360px);
}

.contact-section__inner {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.contact-layout {
  display: grid;
  gap: clamp(28px, 4vw, 36px);
}

.contact-layout--form {
  display: grid;
  gap: clamp(28px, 3.5vw, 40px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  background: linear-gradient(155deg, rgba(4, 14, 28, 0.82), rgba(12, 24, 46, 0.76));
  border: 1px solid rgba(52, 213, 255, 0.26);
  border-radius: var(--radius-card);
  padding: clamp(22px, 2.8vw, 32px);
  box-shadow: 0 24px 46px rgba(10, 30, 58, 0.32);
}

.contact-form__header {
  display: grid;
  gap: 6px;
}

.contact-form .form-grid {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
}

.contact-form .input-group {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(180, 210, 235, 0.86);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(77, 210, 224, 0.22);
  background: rgba(6, 16, 32, 0.82);
  color: var(--color-text);
  box-shadow: inset 0 0 18px rgba(20, 48, 88, 0.28);
  font: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(180, 208, 236, 0.55);
  letter-spacing: 0.02em;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: rgba(77, 210, 224, 0.6);
  box-shadow: 0 0 0 3px rgba(77, 210, 224, 0.25);
  background: rgba(8, 22, 40, 0.9);
}

.contact-form textarea {
  min-height: clamp(110px, 18vw, 150px);
  resize: vertical;
}

.contact-form .input-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.contact-form .input-group.checkbox label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(200, 220, 240, 0.78);
}

.contact-form .input-group.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(77, 210, 224, 0.4);
  background: rgba(6, 18, 34, 0.85);
  accent-color: rgba(77, 210, 224, 0.8);
}

.contact-form button {
  justify-self: start;
  padding-inline: clamp(22px, 4vw, 28px);
}

.contact-console {
  position: relative;
  gap: clamp(20px, 3vw, 32px);
}

.contact-console__hud {
  grid-column: 1 / -1;
  margin-bottom: clamp(6px, 1.4vw, 12px);
}

.contact-form--console {
  border-radius: calc(var(--radius-card) + 6px);
  border-color: rgba(77, 206, 216, 0.32);
  background: radial-gradient(circle at 10% 0%, rgba(0, 174, 255, 0.16), transparent 55%), linear-gradient(160deg, rgba(2, 10, 28, 0.95), rgba(8, 18, 42, 0.92));
  box-shadow: 0 40px 70px rgba(2, 10, 32, 0.6), inset 0 0 50px rgba(12, 64, 130, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form--console::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 70%);
  mix-blend-mode: screen;
}

.contact-form__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(137, 232, 255, 0.85);
}

.contact-form__deck {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(214, 232, 255, 0.85);
}

.contact-input--full {
  grid-column: 1 / -1;
}

.contact-focus-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(77, 210, 224, 0.2);
  background: rgba(6, 16, 30, 0.8);
}

.contact-focus-bar__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 206, 255, 0.85);
  margin: 0;
}

.contact-focus-bar__chips {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-focus__chip {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(77, 210, 224, 0.22);
  background: rgba(4, 14, 28, 0.9);
  color: rgba(226, 244, 255, 0.88);
  font: inherit;
  text-align: left;
  appearance: none;
  border-width: 1px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.contact-focus__chip:hover,
.contact-focus__chip:focus-visible {
  border-color: rgba(54, 229, 255, 0.6);
  transform: translateY(-1px);
  outline: 2px solid rgba(54, 229, 255, 0.35);
  outline-offset: 2px;
}

.contact-priority {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(77, 210, 224, 0.2);
  background: rgba(4, 14, 28, 0.92);
  cursor: pointer;
  align-items: center;
}

.contact-priority input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-priority__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(77, 210, 224, 0.4);
  background: rgba(6, 18, 34, 0.85);
  position: relative;
}

.contact-priority__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  background: radial-gradient(circle, rgba(0, 255, 224, 0.9), rgba(0, 132, 255, 0.6));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.contact-priority__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(205, 226, 248, 0.9);
}

.contact-priority__copy strong {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-priority__copy small {
  font-size: 0.78rem;
  color: rgba(190, 210, 230, 0.75);
}

.contact-priority input:checked ~ .contact-priority__mark::after {
  opacity: 1;
}

.contact-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-metrics li {
  flex: 1 1 120px;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 12, 24, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(195, 215, 240, 0.82);
}

.contact-metrics strong {
  color: rgba(226, 244, 255, 0.95);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 960px) {
  .contact-form__footer {
    justify-content: flex-start;
    gap: 20px;
  }
}

.contact-form__signal {
  font-size: 0.85rem;
  color: rgba(190, 218, 245, 0.85);
}

.contact-card--console {
  border-radius: calc(var(--radius-card) + 4px);
  border-color: rgba(77, 206, 216, 0.28);
  background: linear-gradient(180deg, rgba(3, 12, 28, 0.95), rgba(8, 14, 30, 0.92));
  box-shadow: 0 36px 70px rgba(2, 10, 32, 0.55), inset 0 0 36px rgba(20, 60, 124, 0.28);
  gap: 20px;
}

.contact-card__header {
  display: grid;
  gap: 6px;
}

.contact-card__header p {
  margin: 0;
  color: rgba(205, 226, 248, 0.85);
}

.contact-channel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact-channel__stat {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(77, 210, 224, 0.18);
  background: rgba(6, 16, 30, 0.9);
  display: grid;
  gap: 4px;
}

.contact-channel__stat a {
  color: var(--color-heading);
  font-weight: 600;
  text-decoration: none;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(168, 212, 255, 0.75);
}

.stat-hint {
  font-size: 0.85rem;
  color: rgba(200, 220, 240, 0.72);
}

.contact-channel__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.contact-channel__timeline {
  margin-top: 4px;
}

.contact-channel__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(195, 218, 240, 0.75);
  line-height: 1.6;
}

.contact-card {
  background: linear-gradient(160deg, rgba(6, 18, 36, 0.78), rgba(12, 26, 48, 0.7));
  border: 1px solid rgba(52, 213, 255, 0.24);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 28px 46px rgba(10, 32, 62, 0.38);
  display: grid;
  gap: 16px;
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-card li {
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
  color: rgba(210, 230, 255, 0.82);
}

.contact-card h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-details strong {
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.contact-support__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.footer-cta--contact {
  text-align: center;
}

.footer-cta--contact .cta-row {
  justify-content: center;
}

.section--founder h2 {
  max-width: 32ch;
}

.section--founder p {
  max-width: 62ch;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .contact-layout--form {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .contact-form {
    padding: clamp(20px, 6vw, 24px);
  }

  .contact-card {
    padding: clamp(20px, 6vw, 26px);
  }
}

@media (min-width: 720px) {
  .mfa-setup__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .mfa-setup__visual {
    justify-items: center;
  }
}

/* Assistant UI */
.assistant-launch {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(86px, 7vh, 120px);
  z-index: 1400;
  display: flex;
  align-items: center;
}

.assistant-launch__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  min-height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(77, 206, 216, 0.55);
  background:
    linear-gradient(135deg, rgba(6, 20, 36, 0.98), rgba(18, 32, 72, 0.95)),
    radial-gradient(circle at 20% 0%, rgba(0, 255, 224, 0.2), transparent 38%);
  color: #dff5ff;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 12, 26, 0.55), 0 0 0 1px rgba(77, 206, 216, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.assistant-launch__button:hover,
.assistant-launch__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(77, 206, 216, 0.85);
  box-shadow: 0 24px 48px rgba(0, 12, 26, 0.7), 0 0 0 1px rgba(77, 206, 216, 0.3);
  outline: none;
}

.assistant-launch__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5affff, #4dd2e0);
  box-shadow: 0 0 12px rgba(77, 206, 216, 0.65);
  flex-shrink: 0;
}

.assistant-launch__label {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e9f8ff;
}

.assistant-panel {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(140px, 10vh, 190px);
  width: min(520px, calc(100% - 32px));
  max-height: min(72vh, 640px);
  border-radius: 20px;
  border: 1px solid rgba(77, 206, 216, 0.45);
  background:
    linear-gradient(145deg, rgba(4, 14, 28, 0.96), rgba(12, 20, 46, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(0, 255, 224, 0.2), transparent 50%);
  box-shadow: 0 40px 80px rgba(0, 10, 24, 0.72), 0 0 0 1px rgba(77, 206, 216, 0.18);
  display: none;
  overflow: hidden;
  z-index: 1400;
  grid-template-rows: auto 1fr auto;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.assistant-panel.is-visible {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.assistant-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(77, 206, 216, 0.18);
  background: linear-gradient(120deg, rgba(6, 16, 32, 0.9), rgba(12, 26, 52, 0.85));
}

.assistant-panel__titles {
  display: grid;
  gap: 4px;
}

.assistant-panel__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(144, 224, 255, 0.78);
}

.assistant-panel__header strong {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin: 0;
}

.assistant-panel__header p {
  margin: 4px 0 0;
  color: rgba(210, 232, 255, 0.82);
}

.assistant-panel__sub {
  margin: 2px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(195, 220, 248, 0.8);
}

.assistant-panel__close {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5f2ff;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.assistant-panel__close:hover,
.assistant-panel__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.assistant-panel__log {
  max-height: 420px;
  overflow: auto;
  padding: 16px;
  display: grid;
  gap: 12px;
  background: radial-gradient(circle at 20% 0%, rgba(0, 255, 224, 0.12), transparent 50%);
}

.assistant-message {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(77, 206, 216, 0.24);
  background: rgba(8, 18, 36, 0.72);
  line-height: 1.6;
  color: #eaf4ff;
  display: grid;
  gap: 6px;
  box-shadow: inset 0 0 16px rgba(20, 64, 122, 0.24);
}

.assistant-message--user {
  border-color: rgba(108, 132, 255, 0.4);
  background: rgba(14, 26, 52, 0.78);
  justify-self: end;
}

.assistant-message__label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(155, 220, 255, 0.82);
  margin: 0;
}

.assistant-message p {
  margin: 0;
  color: #eaf4ff;
}

.assistant-message ul {
  margin: 4px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #dfefff;
}

.assistant-message a {
  color: var(--color-accent);
  text-decoration: underline;
  word-break: break-word;
}

.assistant-panel__form {
  display: grid;
  gap: 10px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(77, 206, 216, 0.18);
  background: linear-gradient(120deg, rgba(6, 18, 34, 0.86), rgba(12, 26, 52, 0.9));
}

.assistant-panel__form textarea {
  width: 100%;
  min-height: 74px;
  border-radius: 12px;
  border: 1px solid rgba(77, 206, 216, 0.26);
  background: rgba(6, 18, 34, 0.85);
  color: #e6f2ff;
  font: inherit;
  padding: 12px;
  box-sizing: border-box;
}

.assistant-panel__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.assistant-panel__status {
  flex: 1;
  color: rgba(210, 230, 255, 0.82);
  font-size: 0.9rem;
  min-height: 22px;
}

.assistant-panel .btn {
  min-width: 96px;
}

.assistant-panel {
  border-radius: 26px;
  border: 1px solid rgba(96, 232, 255, 0.5);
  background:
    linear-gradient(160deg, rgba(4, 12, 26, 0.98), rgba(8, 20, 42, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(0, 255, 224, 0.18), transparent 55%);
  box-shadow: 0 32px 70px rgba(0, 8, 20, 0.78), 0 0 0 1px rgba(90, 230, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.assistant-panel__header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(96, 230, 255, 0.25);
  background: linear-gradient(130deg, rgba(10, 28, 54, 0.92), rgba(6, 16, 34, 0.94));
}

.assistant-panel__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: rgba(150, 220, 255, 0.78);
}

.assistant-panel__header strong {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: #eaf6ff;
}

.assistant-panel__sub {
  font-size: 0.9rem;
  color: rgba(200, 226, 255, 0.78);
}

.assistant-panel__close {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(120, 220, 255, 0.3);
  background: rgba(8, 18, 36, 0.7);
  color: #e5f7ff;
}

.assistant-panel__close:hover,
.assistant-panel__close:focus-visible {
  background: rgba(12, 26, 52, 0.85);
  border-color: rgba(120, 220, 255, 0.6);
}

.assistant-panel__log {
  padding: 18px;
  gap: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 255, 224, 0.08), transparent 55%),
    rgba(6, 14, 28, 0.6);
}

.assistant-message {
  max-width: 90%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(90, 220, 255, 0.22);
  background: linear-gradient(140deg, rgba(10, 22, 44, 0.92), rgba(6, 16, 34, 0.88));
  box-shadow: 0 10px 22px rgba(2, 10, 24, 0.45), inset 0 0 16px rgba(20, 60, 120, 0.2);
}

.assistant-message--assistant {
  border-left: 3px solid rgba(90, 220, 255, 0.6);
}

.assistant-message--user {
  justify-self: end;
  border-right: 3px solid rgba(128, 150, 255, 0.6);
  border-color: rgba(120, 150, 255, 0.4);
  background: linear-gradient(140deg, rgba(14, 28, 60, 0.95), rgba(8, 18, 40, 0.92));
}

.assistant-message__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(170, 230, 255, 0.85);
}

.assistant-panel__form {
  padding: 14px 16px 18px;
  gap: 12px;
  border-top: 1px solid rgba(96, 230, 255, 0.22);
  background: linear-gradient(150deg, rgba(6, 18, 34, 0.94), rgba(10, 24, 50, 0.92));
  box-shadow: inset 0 1px 0 rgba(90, 220, 255, 0.08);
  border-radius: 16px;
}

.assistant-panel__form:focus-within {
  box-shadow: 0 0 0 1px rgba(90, 220, 255, 0.25), 0 14px 26px rgba(4, 12, 26, 0.35);
}

.assistant-panel__form textarea {
  min-height: 88px;
  border-radius: 14px;
  border: 1px solid rgba(90, 220, 255, 0.35);
  background: rgba(5, 14, 30, 0.95);
  box-shadow: inset 0 0 20px rgba(40, 120, 200, 0.2);
  font-size: 0.95rem;
  line-height: 1.5;
  resize: none;
  caret-color: #7fe9ff;
}

.assistant-panel__form textarea::placeholder {
  color: rgba(200, 228, 252, 0.8);
}

.assistant-panel__form textarea:focus {
  outline: 2px solid rgba(120, 230, 255, 0.75);
  border-color: rgba(120, 230, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(54, 229, 255, 0.2), inset 0 0 18px rgba(60, 160, 255, 0.25);
}

.assistant-panel__actions {
  gap: 10px;
}

.assistant-panel__status {
  font-size: 0.85rem;
  color: rgba(190, 220, 245, 0.8);
}

.assistant-panel .btn {
  min-width: 110px;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(130, 240, 255, 0.9);
  background: linear-gradient(120deg, rgba(54, 229, 255, 0.95), rgba(90, 123, 255, 0.95));
  color: #03121a;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(24, 120, 255, 0.45);
}

.assistant-panel .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(24, 120, 255, 0.6);
}

.assistant-panel .btn:disabled {
  opacity: 0.6;
  filter: saturate(0.6);
  box-shadow: none;
  transform: none;
}

/* Assistant overlay for focus mode */
body.assistant-open {
  overflow: hidden;
}

body.assistant-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 6, 14, 0.65);
  z-index: 1300;
  pointer-events: none;
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
  /* Global padding and spacing */
  html {
    font-size: 15px;
  }

  :root {
    --font-size-base: 0.95rem;
  }

  .beta-notice__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .beta-notice__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    gap: 10px;
  }

  .beta-notice__action,
  .beta-notice__dismiss {
    font-size: 0.78rem;
    padding: 6px 14px;
    width: 100%;
    text-align: center;
  }

  body {
    padding-bottom: 90px;
  }

  body.beta-notice-visible {
    padding-top: 0;
  }

  main {
    padding: calc(var(--header-height) + var(--header-offset) + 20px) 0 56px;
  }

  .container,
  .section,
  .panel,
  .contact-section,
  .footer-nav {
    padding-inline: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
  }

  .section {
    margin-block: 28px;
  }

  h1,
  h2,
  h3,
  h4 {
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  p,
  .section-lead,
  .hero-copy,
  .plan-card p,
  .card p {
    font-size: 0.98rem;
  }

  /* Navigation */
  .site-nav__hamburger {
    display: inline-flex;
    position: absolute;
    right: clamp(14px, 4vw, 22px);
    top: clamp(14px, 4vw, 22px);
    z-index: 1000;
  }

  .nav-primary,
  .nav-actions {
    display: none;
  }

  /* Hero */
  .hero {
    margin-bottom: 28px;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(28px, 7vw, 44px) 0;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 2.05rem);
    letter-spacing: 0.02em;
    line-height: 1.18;
  }

  .hero.hero--solo h1 {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    max-width: none;
  }

  .hero__inner {
    width: 100%;
    gap: clamp(16px, 4vw, 24px);
    padding-inline: clamp(16px, 6vw, 24px);
  }

  .hero--solo .hero__inner {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-chips {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
    width: 100%;
  }

  .hero-chip {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero--solo .hero__copy::after {
    width: 100%;
    max-width: 100%;
  }

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

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

  .page-home .hero-highlights li {
    padding: 10px 12px 10px 34px;
  }

  .page-home .hero-highlights li::before {
    left: 12px;
    width: 9px;
    height: 9px;
  }

  .page-home .hero__actions .btn {
    min-height: 44px;
    font-size: 0.68rem;
  }

  .trust-pill {
    width: 100%;
    justify-content: center;
  }

  .hero-copy {
    margin-bottom: 18px;
    max-width: none;
  }

  .hero-subtext {
    margin-bottom: 18px;
  }

  .section h2,
  .section h3,
  .timeline-section h2,
  .faq-section h2,
  .contact-section h2,
  .footer-cta h2 {
    letter-spacing: 0.06em;
  }

  .eyebrow {
    letter-spacing: 0.26em;
  }

  /* Cards and grids */
  .card-grid,
  .plan-grid,
  .mini-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: clamp(18px, 5vw, 24px);
  }

  .plan-card h3 {
    font-size: clamp(1.15rem, 4.4vw, 1.4rem);
    letter-spacing: 0.06em;
  }

  .plan-card__cta {
    min-height: 48px;
    font-size: 0.8rem;
  }

  .pricing-overview-card,
  .plan-card,
  .card {
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-overview-card {
    padding: clamp(20px, 6vw, 30px);
  }

  .plan-addons {
    grid-template-columns: 1fr;
  }

  .plan-addons > div {
    padding: clamp(16px, 4.5vw, 22px);
  }

  .contact-preview__panel {
    grid-template-columns: 1fr;
    padding: clamp(18px, 5vw, 26px);
  }

  .sa-menu__link {
    font-size: 1rem;
  }

  /* Comparison table stack */
  .comparison {
    overflow: visible;
  }

  .comparison__table {
    width: 100%;
    min-width: 100%;
  }

  .comparison__table.is-stacked {
    display: block;
    border-collapse: separate;
    border-spacing: 0;
  }

  .comparison__table.is-stacked thead {
    display: none;
  }

  .comparison__table.is-stacked tbody {
    display: grid;
    gap: 12px;
  }

  .comparison__table.is-stacked tr {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(77, 206, 216, 0.26);
    border-radius: 14px;
    background: rgba(6, 18, 34, 0.78);
  }

  .comparison__table.is-stacked td {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 0;
    font-size: 0.95rem;
  }

  .comparison__table.is-stacked td::before {
    content: attr(data-label);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(180, 210, 235, 0.9);
  }

  /* Contact */
  .contact-layout--form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form {
    padding: 18px 16px;
    margin: 0 auto;
    max-width: 100%;
  }

  .contact-form textarea,
  .contact-form input {
    width: 100%;
    box-sizing: border-box;
  }

  /* Footer */
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-actions {
    width: 100%;
  }

  /* Assistant mobile */
  .assistant-launch {
    left: 0;
    right: 0;
    bottom: 72px;
    justify-content: center;
    transform: none;
  }

  .assistant-panel {
    inset: 0;
    top: env(safe-area-inset-top, 0px);
    bottom: env(safe-area-inset-bottom, 0px);
    width: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }

}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  :root {
    --font-size-base: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7.6vw, 1.85rem);
    letter-spacing: 0.01em;
  }

  .hero.hero--solo h1 {
    font-size: clamp(1.45rem, 7.6vw, 1.8rem);
  }
}
