:root {
  --color-primary: #f4f7fa;
  --color-secondary: #9ec1d1;
  --color-accent: #1bb8d5;
  --color-accent-hover: #43c9e2;
  --color-urgent: #e85d5d;
  --color-urgent-soft: #ff8a83;
  --color-success: #35b67a;
  --color-background: #050914;
  --color-surface: #0a1424;
  --color-surface-alt: #101d30;
  --color-panel: #f2f6f8;
  --color-foreground: #f4f7fa;
  --color-muted: #aab8c7;
  --color-panel-ink: #0a1726;
  --color-panel-muted: #536474;
  --color-border: rgba(158, 193, 209, 0.17);
  --color-ring: #43c9e2;
  --color-light: #ffffff;
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 36px rgba(27, 184, 213, 0.13);
  --font-display: Aptos Display, "Segoe UI Variable Display", "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: Aptos, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1160px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--color-foreground);
  background:
    radial-gradient(circle at 76% 0%, rgba(27, 184, 213, 0.11), transparent 34rem),
    radial-gradient(circle at 10% 16%, rgba(31, 78, 118, 0.2), transparent 34rem),
    linear-gradient(180deg, #050914 0%, #07101e 45%, #050914 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--color-panel);
  color: var(--color-panel-ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.launch-bar {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 3px 24px;
  background: linear-gradient(90deg, #17101a, #101a2a 54%, #0b2633);
  color: #f4f7fa;
  border-bottom: 1px solid rgba(232, 93, 93, 0.32);
  font-size: 0.86rem;
  font-weight: 750;
}

.launch-bar strong {
  min-width: 150px;
  color: var(--color-urgent-soft);
  font-variant-numeric: tabular-nums;
}

.launch-bar a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  background: var(--color-accent);
  color: #041219;
  font-weight: 850;
}

.launch-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.site-header,
.checkout-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(5, 9, 20, 0.9);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-logo-frame {
  position: relative;
  display: block;
  width: 280px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  top: -9px;
  left: 0;
  width: 280px;
  max-width: none;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #b7c5d2;
  font-size: 0.9rem;
  font-weight: 700;
}

nav a,
.text-link,
.site-footer > a:last-child,
.back-link {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

nav a:hover,
.text-link:hover,
.site-footer > a:last-child:hover,
.back-link:hover {
  color: var(--color-accent-hover);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--color-accent);
  color: #041219;
  font-size: 0.9rem;
  font-weight: 850;
}

.header-cta:hover {
  background: var(--color-accent-hover);
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.06) brightness(0.58) hue-rotate(178deg);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.99) 0%, rgba(5, 9, 20, 0.92) 38%, rgba(5, 9, 20, 0.56) 68%, rgba(5, 9, 20, 0.22) 100%),
    radial-gradient(circle at 74% 30%, rgba(27, 184, 213, 0.16), transparent 26rem);
  content: "";
}

.hero::after {
  position: absolute;
  right: min(7vw, 96px);
  top: 96px;
  z-index: -1;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(67, 201, 226, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 72px rgba(27, 184, 213, 0.12);
  content: "";
}

.hero-wash {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, transparent, #050914 86%);
}

.hero-inner {
  grid-area: 1 / 1;
  align-self: center;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 66px 24px 92px;
}

.eyebrow,
.section-label,
.document-type,
.purchase-label {
  margin: 0 0 14px;
  color: var(--color-accent-hover);
  font-size: 0.82rem;
  font-weight: 850;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.55rem, 4.45vw, 4rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(1.95rem, 3.25vw, 3.25rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.3;
}

.hero-lead {
  max-width: 625px;
  margin-bottom: 28px;
  color: #d4e0ea;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.hero-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin: 24px 0 10px;
}

.hero-price {
  display: grid;
  min-width: 214px;
  padding: 15px 18px;
  border: 1px solid rgba(158, 193, 209, 0.2);
  background: linear-gradient(180deg, rgba(16, 34, 54, 0.9), rgba(9, 21, 38, 0.9));
}

.hero-price span {
  color: #aebccd;
  font-size: 0.84rem;
}

.hero-price strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.hero-price b {
  color: var(--color-accent-hover);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 850;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--color-accent);
  color: #041219;
  box-shadow: 0 10px 28px rgba(27, 184, 213, 0.2);
}

.button-primary:hover:not(:disabled) {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(27, 184, 213, 0.26);
}

.button:active:not(:disabled) {
  opacity: 0.88;
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.55;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #dffbff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(93, 220, 255, 0.7);
  text-underline-offset: 5px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  max-width: 760px;
  margin-top: 18px;
  color: #c8d6e3;
  font-size: 0.9rem;
}

.hero-assurances span {
  position: relative;
  padding-left: 16px;
}

.hero-assurances span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  content: "";
}

.evidence-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 48px), var(--container));
  margin: -54px auto 0;
  border: 1px solid rgba(158, 193, 209, 0.16);
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.97), rgba(7, 15, 29, 0.97));
  box-shadow: var(--shadow-soft);
}

.evidence-bar > div {
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid rgba(158, 193, 209, 0.14);
}

.evidence-bar > div:last-child {
  border-right: 0;
}

.evidence-bar strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.evidence-bar span {
  display: block;
  color: #bac8d8;
  font-size: 0.88rem;
  line-height: 1.48;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 104px 24px;
}

.intro-section {
  padding-top: 132px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: 70px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.body-copy,
.section-heading > p:last-child,
.offer-copy > p,
.fit-section p {
  color: var(--color-muted);
}

.body-copy {
  max-width: 560px;
  font-size: 1.06rem;
}

.decision-contrast {
  border: 1px solid rgba(158, 193, 209, 0.14);
  background: rgba(10, 20, 36, 0.78);
}

.contrast-row {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid rgba(158, 193, 209, 0.14);
}

.contrast-row:last-child {
  border-bottom: 0;
}

.contrast-row strong {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
}

.contrast-row p {
  margin: 0;
  color: #c8d6e3;
}

.contrast-row.positive {
  background: linear-gradient(90deg, rgba(53, 182, 122, 0.13), rgba(255, 255, 255, 0.025));
}

.contrast-row.positive strong {
  color: #72d5a3;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-heading.compact {
  max-width: 790px;
}

.section-heading > p:last-child {
  max-width: 660px;
  font-size: 1.05rem;
}

.flow-band {
  background:
    radial-gradient(circle at 18% 18%, rgba(27, 184, 213, 0.1), transparent 28rem),
    linear-gradient(135deg, #081525 0%, #050914 56%, #0b192a 100%);
  color: var(--color-light);
}

.flow-inner {
  padding-top: 94px;
  padding-bottom: 98px;
}

.flow-band h2,
.flow-band h3 {
  color: var(--color-light);
}

.flow-band .section-heading > p:last-child {
  color: #c8d6e3;
}

.section-label.light,
.flow-band .section-label {
  color: var(--color-accent-hover);
}

.legal-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.legal-flow::before {
  position: absolute;
  top: 23px;
  left: 30px;
  right: 30px;
  height: 1px;
  background: rgba(158, 193, 209, 0.28);
  content: "";
}

.legal-flow li {
  position: relative;
  z-index: 1;
  padding-right: 28px;
}

.flow-index {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(67, 201, 226, 0.34);
  background: #0a2132;
  color: var(--color-accent-hover);
  font-size: 0.78rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.legal-flow strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 780;
  letter-spacing: 0;
}

.legal-flow small {
  display: block;
  max-width: 220px;
  color: #c8d6e3;
  font-size: 0.92rem;
  line-height: 1.52;
}

.documents-section {
  padding-bottom: 112px;
}

.document-ledger {
  border-top: 1px solid rgba(141, 223, 247, 0.28);
  border-bottom: 1px solid rgba(141, 223, 247, 0.16);
}

.document-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 0.92fr) minmax(300px, 0.84fr);
  gap: 34px;
  align-items: start;
  padding: 34px 20px 34px 0;
  border-top: 1px solid rgba(141, 223, 247, 0.14);
  background: transparent;
}

.document-row:first-child {
  border-top: 0;
}

.document-row.featured {
  background: linear-gradient(90deg, rgba(27, 184, 213, 0.09), transparent 76%);
}

.document-id {
  display: grid;
  align-content: start;
  min-height: 74px;
  padding: 10px 12px;
  color: var(--color-muted);
}

.document-id span {
  color: #89a4b8;
  font-size: 0.7rem;
  font-weight: 850;
}

.document-id strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.86rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.document-row p {
  margin-bottom: 0;
  color: #c8d6e3;
}

.document-row .document-type {
  margin-bottom: 7px;
  color: var(--color-accent-hover);
}

.document-row ul,
.purchase-panel ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-row li,
.purchase-panel li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: #c8d6e3;
}

.document-row li + li,
.purchase-panel li + li,
.check-list li + li {
  margin-top: 9px;
}

.document-row li::before,
.purchase-panel li::before,
.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  content: "";
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 68px;
  width: min(calc(100% - 48px), var(--container));
  margin-bottom: 106px;
  padding: 68px;
  border: 1px solid rgba(158, 193, 209, 0.16);
  background: linear-gradient(180deg, rgba(10, 20, 36, 0.98), rgba(12, 29, 48, 0.98));
  color: var(--color-foreground);
  box-shadow: var(--shadow-soft);
}

.fit-section .section-label,
.fit-section h2,
.fit-section h3 {
  color: #ffffff;
}

.fit-section .section-label {
  color: var(--color-accent-hover);
}

.fit-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.4vw, 3.45rem);
  line-height: 1.06;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.fit-section p,
.fit-section li {
  color: #c8d6e3;
}

.limit-column {
  padding-left: 30px;
  border-left: 1px solid rgba(141, 223, 247, 0.16);
}

.offer-section {
  background:
    radial-gradient(circle at 78% 14%, rgba(27, 184, 213, 0.11), transparent 26rem),
    linear-gradient(135deg, #081525, #050914 56%, #0b192a);
  color: var(--color-light);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 82px;
  align-items: center;
}

.offer-copy h2 {
  color: var(--color-light);
}

.offer-copy > p {
  max-width: 650px;
  color: #c8d6e3;
  font-size: 1.08rem;
}

.offer-deadline {
  display: grid;
  gap: 5px;
  max-width: 520px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 93, 93, 0.32);
  color: #dceaf3;
}

.offer-deadline strong {
  color: var(--color-urgent-soft);
  font-size: 1.06rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.purchase-panel,
.checkout-summary {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--color-panel);
  color: var(--color-panel-ink);
  box-shadow: var(--shadow-soft);
}

.purchase-label {
  color: #07758c;
}

.purchase-panel li::before {
  background: var(--color-success);
}

.reference-price {
  display: block;
  color: var(--color-panel-muted);
  font-size: 0.9rem;
}

.purchase-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 2px;
  color: var(--color-panel-ink);
  font-family: var(--font-display);
}

.purchase-price span {
  font-size: 1.1rem;
  font-weight: 750;
}

.purchase-price strong {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
}

.cash-note {
  color: var(--color-panel-muted);
  font-size: 0.84rem;
}

.purchase-panel ul {
  margin: 26px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 18, 37, 0.14);
}

.purchase-panel li {
  color: var(--color-panel-ink);
}

.purchase-panel small {
  display: block;
  margin-top: 14px;
  color: var(--color-panel-muted);
  font-size: 0.78rem;
  text-align: center;
}

.faq-section {
  max-width: 940px;
}

.faq-list {
  border-top: 1px solid rgba(141, 223, 247, 0.28);
}

details {
  border-bottom: 1px solid rgba(141, 223, 247, 0.16);
}

summary {
  position: relative;
  min-height: 74px;
  padding: 23px 54px 23px 0;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 760;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 17px;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(67, 201, 226, 0.24);
  background: rgba(27, 184, 213, 0.08);
  color: var(--color-accent-hover);
  content: "+";
  font-size: 1.3rem;
  font-weight: 500;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: #c8d6e3;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 42px 24px;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a:last-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #dffbff;
  font-weight: 850;
}

.footer-brand .brand-logo-frame {
  width: 252px;
  height: 48px;
}

.footer-brand .brand-logo {
  top: -8px;
  width: 252px;
}

.mobile-purchase-bar {
  display: none;
}

.offer-expired .launch-bar {
  background: #233142;
}

/* Checkout */
.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(27, 184, 213, 0.1), transparent 28rem),
    #050914;
}

.checkout-header {
  position: relative;
}

.checkout-header > span {
  color: var(--color-secondary);
  font-size: 0.88rem;
  font-weight: 750;
}

.checkout-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 34px;
  color: #dffbff;
  font-weight: 800;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: start;
}

.checkout-copy h1 {
  max-width: 650px;
  font-size: clamp(2.45rem, 4.4vw, 3.85rem);
}

.checkout-copy > p {
  max-width: 610px;
  color: #c8d6e3;
  font-size: 1.08rem;
}

.checkout-documents {
  margin-top: 38px;
  border-top: 1px solid rgba(141, 223, 247, 0.28);
}

.checkout-documents > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(141, 223, 247, 0.16);
}

.checkout-documents span {
  color: var(--color-accent-hover);
  font-size: 0.78rem;
  font-weight: 850;
}

.checkout-documents strong {
  color: #ffffff;
}

.checkout-documents small {
  color: #c8d6e3;
}

.legal-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(141, 223, 247, 0.16);
  background: rgba(10, 20, 36, 0.78);
}

.legal-note strong {
  color: #ffffff;
}

.legal-note p {
  margin: 0;
  color: #c8d6e3;
}

.checkout-summary {
  position: sticky;
  top: 32px;
}

.summary-line,
.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(7, 18, 37, 0.14);
}

.summary-total {
  display: grid;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(7, 18, 37, 0.14);
}

.summary-total strong {
  color: var(--color-panel-ink);
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
}

.contact-fields,
.marketing-consent {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-fields {
  padding-top: 4px;
}

.contact-fields legend,
.marketing-consent legend {
  width: 100%;
  margin-bottom: 8px;
  color: var(--color-panel-ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.contact-intro {
  margin: 0 0 22px;
  color: var(--color-panel-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field label {
  color: var(--color-panel-ink);
  font-size: 0.84rem;
  font-weight: 750;
}

.field label span {
  color: var(--color-panel-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.field input {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid #b9c8d1;
  border-radius: 4px;
  background: #ffffff;
  color: var(--color-panel-ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input::placeholder {
  color: #6c7b89;
}

.field input:focus {
  border-color: #087c94;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(27, 184, 213, 0.18);
}

.field input[aria-invalid="true"] {
  border-color: var(--color-urgent);
  box-shadow: 0 0 0 3px rgba(232, 93, 93, 0.12);
}

.field-hint,
.field-error {
  display: block;
  font-size: 0.74rem;
  line-height: 1.35;
}

.field-hint {
  color: var(--color-panel-muted);
}

.field-error {
  min-height: 1em;
  color: #b52929;
  font-weight: 700;
}

.marketing-consent {
  margin: 7px 0 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 23, 38, 0.12);
}

.marketing-consent legend {
  margin-bottom: 11px;
}

.consent-option {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  color: var(--color-panel-muted);
  cursor: pointer;
  font-size: 0.79rem;
  line-height: 1.45;
}

.consent-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #087c94;
}

.consent-option:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.55;
}

.privacy-note {
  margin: 12px 0 0;
  color: var(--color-panel-muted);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.checkout-status {
  margin: 14px 0 0;
  color: var(--color-panel-muted);
  font-size: 0.82rem;
  text-align: center;
}

.secure-line {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 18, 37, 0.14);
  color: var(--color-panel-muted);
  font-size: 0.78rem;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner {
    animation: hero-entry 640ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .evidence-bar {
    animation: lift-entry 560ms 140ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes hero-entry {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes lift-entry {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1024px) {
  .site-header,
  .checkout-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .evidence-bar {
    width: calc(100% - 48px);
  }

  .document-row {
    grid-template-columns: 70px 1fr;
  }

  .document-row ul {
    grid-column: 2;
  }

  .fit-section {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px;
  }

  .offer-layout {
    gap: 50px;
  }
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 630px;
  }

  h1 {
    font-size: clamp(2.45rem, 8vw, 3.75rem);
  }

  .evidence-bar {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-bar > div:nth-child(2) {
    border-right: 0;
  }

  .evidence-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(141, 223, 247, 0.14);
  }

  .intro-grid,
  .offer-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .legal-flow {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .legal-flow::before {
    display: none;
  }

  .fit-columns {
    gap: 30px;
  }

  .purchase-panel {
    max-width: 500px;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  body:not(.checkout-page) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .launch-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 58px;
    padding: 7px 16px;
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: center;
  }

  .launch-bar .launch-divider,
  .launch-bar a {
    display: none;
  }

  .launch-bar strong {
    min-width: 0;
  }

  .site-header,
  .checkout-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-frame,
  .footer-brand .brand-logo-frame {
    width: 210px;
    height: 44px;
  }

  .brand-logo,
  .footer-brand .brand-logo {
    top: -6px;
    left: -7px;
    width: 224px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    opacity: 0.3;
    object-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, 0.99) 0%, rgba(5, 9, 20, 0.9) 46%, rgba(5, 9, 20, 0.99) 100%),
      radial-gradient(circle at 56% 16%, rgba(27, 184, 213, 0.1), transparent 18rem);
  }

  .hero::after {
    top: 120px;
    right: 18px;
    width: min(220px, calc(100% - 36px));
    opacity: 0.5;
  }

  .hero-inner {
    padding: 38px 18px 76px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 12px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(2.2rem, 9.8vw, 2.95rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.72rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-offer {
    display: grid;
    gap: 16px;
  }

  .hero-price {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
  }

  .text-link {
    font-size: 0.92rem;
  }

  .hero-assurances {
    display: grid;
    gap: 7px;
  }

  .evidence-bar {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: -42px;
  }

  .evidence-bar > div,
  .evidence-bar > div:nth-child(2) {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(141, 223, 247, 0.14);
  }

  .evidence-bar > div:last-child {
    border-bottom: 0;
  }

  .evidence-bar strong {
    font-size: 1.86rem;
  }

  .evidence-bar span {
    font-size: 0.88rem;
  }

  .section {
    padding: 72px 18px;
  }

  .intro-section {
    padding-top: 98px;
  }

  .intro-grid {
    gap: 32px;
  }

  .contrast-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px;
  }

  .flow-inner {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .legal-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .legal-flow::before {
    display: block;
    top: 22px;
    bottom: 34px;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .legal-flow li {
    min-height: 128px;
    padding: 0 0 24px 70px;
  }

  .flow-index {
    position: absolute;
    top: 0;
    left: 0;
  }

  .document-row {
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .document-id {
    padding: 8px 8px 8px 0;
  }

  .document-id strong {
    font-size: 1.6rem;
  }

  .document-row ul {
    grid-column: 1 / -1;
    padding-left: 74px;
  }

  .fit-section {
    width: calc(100% - 36px);
    margin-bottom: 76px;
    padding: 40px 24px;
  }

  .fit-columns {
    grid-template-columns: 1fr;
  }

  .limit-column {
    padding: 28px 0 0;
    border-top: 1px solid rgba(141, 223, 247, 0.16);
    border-left: 0;
  }

  .offer-layout {
    gap: 38px;
  }

  .purchase-panel,
  .checkout-summary {
    padding: 26px 22px;
  }

  .purchase-price strong {
    font-size: 2.55rem;
  }

  summary {
    min-height: 70px;
    padding-right: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 18px;
  }

  .site-footer p {
    text-align: left;
  }

  .mobile-purchase-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    min-height: 72px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    background: rgba(5, 9, 20, 0.97);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 220ms ease-out;
  }

  .show-mobile-purchase .mobile-purchase-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-purchase-bar > div {
    display: grid;
    color: #ffffff;
    font-size: 0.72rem;
    line-height: 1.05;
  }

  .mobile-purchase-bar strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
  }

  .mobile-purchase-bar a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #041219;
    font-weight: 850;
  }

  .checkout-header > span {
    display: none;
  }

  .checkout-shell {
    padding: 30px 18px 60px;
  }

  .checkout-layout {
    gap: 38px;
  }

  .checkout-copy h1 {
    font-size: 2.45rem;
  }

  .checkout-documents > div {
    grid-template-columns: 34px 1fr;
  }

  .checkout-documents small {
    grid-column: 2;
  }

  .legal-note {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 520px) and (min-width: 601px) {
  .launch-bar {
    min-height: 40px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .site-header {
    min-height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand-logo-frame {
    height: 42px;
  }

  .brand-logo {
    top: -7px;
  }

  .hero {
    min-height: 430px;
  }

  .hero-inner {
    padding-top: 28px;
    padding-bottom: 46px;
  }

  h1 {
    max-width: 650px;
    margin-bottom: 12px;
    font-size: 2.65rem;
    line-height: 1.04;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  .hero-lead {
    max-width: 620px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-offer {
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .hero-assurances {
    display: none;
  }
}
