:root {
  --ink: #101a26;
  --muted: #45525f;
  --canvas: #f7fafc;
  --panel: #ffffff;
  --night: #0b141e;
  --teal: #14c4b0;
  --blue: #2f76e8;
  --gradient: linear-gradient(120deg, var(--teal), var(--blue));
  --space: clamp(72px, 8vw, 104px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--canvas); color: var(--ink); font-family: "Hanken Grotesk", sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body, input, textarea, button { font-family: "Hanken Grotesk", sans-serif; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--teal); }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: rgb(47 118 232 / 18%); }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.copy-wide { max-width: 760px; }
.section { padding: var(--space) 0; scroll-margin-top: 80px; }
.section-tight-top { padding-top: 0; }
.is-hidden { display: none !important; }

.site-header { position: fixed; z-index: 70; inset: 0 0 auto; border-bottom: 1px solid rgb(16 26 38 / 7%); background: rgb(247 250 252 / 82%); backdrop-filter: blur(14px); }
.header-inner { width: min(1120px, 100%); height: 68px; margin-inline: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { width: auto; height: 26px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { color: #3b4652; font-weight: 600; font-size: 15px; }
.nav-link:hover { color: var(--ink); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; border: 0; border-radius: 12px; background: var(--gradient); box-shadow: 0 14px 32px -12px rgb(47 118 232 / 65%); color: #fff; font-weight: 700; font-size: 16px; line-height: 1; cursor: pointer; transition: transform .2s, box-shadow .2s, opacity .2s; }
.button:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 42px -14px rgb(47 118 232 / 75%); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, .upload-field label:focus-within { outline: 3px solid rgb(20 196 176 / 30%); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 11px 20px; border-radius: 10px; font-size: 15px; }
.button-secondary { border: 1px solid rgb(16 26 38 / 14%); background: #fff; box-shadow: none; color: var(--ink); }
.button-secondary:hover { border-color: rgb(16 26 38 / 30%); box-shadow: none; color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 138px 0 92px; }
.hero-glow { position: absolute; top: -200px; right: -140px; width: 640px; height: 640px; background: radial-gradient(circle, rgb(20 196 176 / 42%), rgb(47 118 232 / 22%) 46%, transparent 70%); filter: blur(18px); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--teal); font: 600 13px/1 "Space Grotesk", sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 3px; border-radius: 2px; background: var(--gradient); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }
h1 { margin: 22px 0 0; color: var(--ink); font-size: clamp(44px, 6.4vw, 70px); line-height: 1; letter-spacing: -.03em; }
h1 em { display: block; background: var(--gradient); color: transparent; font-style: normal; background-clip: text; }
h2 { max-width: 20ch; margin: 18px 0 0; color: var(--ink); font-size: clamp(30px, 3.8vw, 46px); line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
h3 { letter-spacing: -.02em; }
.pills { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.pills > span { display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; border: 1px solid rgb(16 26 38 / 10%); border-radius: 999px; background: #fff; color: #2c3844; font-weight: 600; font-size: 14px; line-height: 1; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-teal { background: var(--teal); }
.dot-blue { background: var(--blue); }
.hero-copy { max-width: 30rem; margin: 26px 0 0; color: var(--muted); font-size: clamp(18px, 2.1vw, 21px); line-height: 1.55; text-wrap: pretty; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.media-frame { position: relative; overflow: hidden; border-radius: 28px; box-shadow: 0 44px 90px -40px rgb(16 26 38 / 50%); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { width: 100%; max-width: 460px; margin-left: auto; aspect-ratio: 5 / 6; border: 1px solid rgb(255 255 255 / 70%); }
.hero-media img { object-position: 38% center; }

.facts { background: var(--ink); color: #fff; }
.facts-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 26px 0; }
.facts-inner > div { display: flex; flex-direction: column; gap: 5px; padding: 6px 24px; text-align: center; }
.facts-inner > div + div { border-left: 1px solid rgb(255 255 255 / 14%); }
.facts strong { font: 700 24px/1 "Space Grotesk", sans-serif; }
.facts span { color: #8b97a4; font-size: 13px; font-weight: 500; }

.section p { max-width: 68ch; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; text-wrap: pretty; }
.section p + p { margin-top: 20px; }
.section .lead { margin-top: 28px; color: var(--ink); font: 600 clamp(20px, 2.4vw, 26px)/1.35 "Space Grotesk", sans-serif; letter-spacing: -.01em; text-wrap: balance; }
.feature-panel { padding: clamp(32px, 5vw, 64px); border: 1px solid rgb(16 26 38 / 8%); border-radius: 28px; background: #fff; box-shadow: 0 40px 80px -50px rgb(16 26 38 / 40%); }
.quote { max-width: 780px; margin: 34px 0 0; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--ink); font-size: 14px; font-weight: 600; }
.quote figcaption i { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); box-shadow: 0 8px 20px -8px rgb(47 118 232 / 60%); }
.quote blockquote { margin: 0; padding: 30px 34px; border: 1px solid rgb(16 26 38 / 8%); border-radius: 24px 24px 24px 6px; background: var(--canvas); color: var(--ink); font: 600 clamp(21px, 2.6vw, 30px)/1.35 "Space Grotesk", sans-serif; letter-spacing: -.01em; text-wrap: balance; }
.panel-list { margin: 40px 0 0; padding: clamp(28px, 3.4vw, 44px); border: 1px solid rgb(16 26 38 / 8%); border-radius: 24px; background: #fff; box-shadow: 0 30px 60px -44px rgb(16 26 38 / 35%); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 48px; list-style: none; }
.check-grid li, .benefits-grid li { position: relative; color: #2c3844; font-size: 17px; font-weight: 500; line-height: 1.5; }
.check-grid li { padding-left: 38px; }
.check-grid li::before, .benefits-grid li::before { content: "✓"; display: grid; place-items: center; color: #fff; background: var(--gradient); font-size: 12px; font-weight: 800; }
.check-grid li::before { position: absolute; top: 2px; left: 0; width: 24px; height: 24px; border-radius: 8px; }
.list-closing { max-width: 760px !important; margin-top: 32px !important; }
.highlight { max-width: 820px; margin-top: 28px; padding: 26px 28px; display: flex; align-items: flex-start; gap: 18px; border: 1px solid rgb(47 118 232 / 20%); border-radius: 20px; background: linear-gradient(120deg, rgb(20 196 176 / 10%), rgb(47 118 232 / 10%)); }
.highlight > span { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--gradient); color: #fff; }
.highlight p { margin: 0; font-size: 17px; line-height: 1.55; }
.wide-media { aspect-ratio: 24 / 9; }
.wide-media img { object-position: center 47%; }

.section-dark { background: var(--night); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark p { color: #aeb8c4; }
.mentality-grid { margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; }
.mentality-grid li { min-height: 126px; display: flex; flex-direction: column; gap: 12px; padding: 26px 24px; border: 1px solid rgb(255 255 255 / 9%); border-radius: 18px; background: rgb(255 255 255 / 4%); }
.mentality-grid strong { background: var(--gradient); color: transparent; font: 700 22px/1 "Space Grotesk", sans-serif; background-clip: text; }
.mentality-grid span { color: #f1f4f7; font-size: 18px; font-weight: 600; line-height: 1.35; }
.dark-closing { max-width: 760px !important; margin-top: 44px !important; }
.dark-closing strong { color: #fff; }

.benefits-grid { margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; }
.benefits-grid li { min-height: 140px; padding: 72px 26px 28px; border: 1px solid rgb(16 26 38 / 8%); border-radius: 18px; background: #fff; transition: transform .2s, box-shadow .2s, border-color .2s; }
.benefits-grid li:hover { transform: translateY(-4px); border-color: rgb(47 118 232 / 35%); box-shadow: 0 26px 52px -32px rgb(16 26 38 / 42%); }
.benefits-grid li::before { position: absolute; top: 26px; left: 26px; width: 32px; height: 32px; border-radius: 10px; }
.why-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 56px; align-items: center; }
.statement { margin-top: 30px; display: flex; flex-direction: column; gap: 8px; font: 600 clamp(20px, 2.4vw, 26px)/1.32 "Space Grotesk", sans-serif; letter-spacing: -.01em; }
.statement em { background: var(--gradient); color: transparent; font-style: normal; background-clip: text; }
.product-media { width: 100%; max-width: 480px; margin-inline: auto; aspect-ratio: 4 / 5; }
.product-media::before { content: ""; position: absolute; z-index: -1; inset: -30px -20px; background: radial-gradient(circle at 60% 40%, rgb(47 118 232 / 28%), transparent 68%); filter: blur(14px); }
.product-media img { object-position: 55% center; }

.apply { padding-bottom: 120px; background: var(--night); color: #fff; }
.apply-inner { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.apply h2 { max-width: 16ch; color: #fff; }
.apply > .apply-inner > p { color: #aeb8c4; }
.application-form, .success { margin-top: 38px; padding: clamp(26px, 3.4vw, 40px); border: 1px solid rgb(255 255 255 / 10%); border-radius: 24px; background: #111c28; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { margin-top: 20px; }
.form-grid .field { margin-top: 0; }
.field label { display: block; margin-bottom: 9px; color: #c7d0da; font-size: 14px; font-weight: 600; line-height: 1.2; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid rgb(255 255 255 / 14%); border-radius: 12px; outline: 0; background: var(--night); color: #fff; font-size: 16px; font-weight: 500; }
.field textarea { min-height: 116px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #788593; opacity: 1; }
.field input:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgb(20 196 176 / 18%); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff9a9a; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.upload-field { margin-top: 20px; }
.upload-field label { min-height: 58px; padding: 12px 16px; display: flex; align-items: center; gap: 14px; border: 1px dashed rgb(255 255 255 / 20%); border-radius: 12px; background: var(--night); cursor: pointer; }
.upload-button { flex: 0 0 auto; padding: 10px 15px; border-radius: 9px; background: rgb(255 255 255 / 8%); color: #fff; font-size: 14px; font-weight: 600; line-height: 1; }
.upload-label { overflow-wrap: anywhere; color: #8b97a4; font-size: 14px; font-weight: 500; line-height: 1.3; }
.upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.form-status { min-height: 0; margin-top: 0; color: #ffb1b1; font-size: 15px; font-weight: 600; line-height: 1.45; }
.form-status:not(:empty) { margin-top: 18px; }
.submit-row { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.submit-row > span { color: #8b97a4; font-size: 14px; line-height: 1.4; }
.submit-row a { color: #fff; font-weight: 600; }
.submit-button:disabled { cursor: wait; opacity: .65; transform: none; }
.success { padding-block: clamp(36px, 4vw, 52px); border-color: rgb(20 196 176 / 35%); text-align: center; }
.success-icon { width: 62px; height: 62px; margin: 0 auto; display: grid; place-items: center; border-radius: 16px; background: var(--gradient); box-shadow: 0 14px 32px -12px rgb(47 118 232 / 65%); font-size: 28px; font-weight: 800; }
.success h3 { margin: 24px 0 0; font-size: clamp(24px, 3vw, 30px); }
.success p { max-width: 46ch !important; margin: 14px auto 0 !important; color: #aeb8c4 !important; font-size: 17px !important; }

.site-footer { padding: 72px 0 40px; background: #08111a; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 44px 40px; }
.footer-logo { width: auto; height: 30px; }
.footer-grid strong { color: var(--teal); font: 600 13px/1 "Space Grotesk", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid p { max-width: 34ch; margin: 16px 0 0; color: #8b97a4; font-size: 15px; font-weight: 500; line-height: 1.7; }
.footer-grid > div:first-child p { margin-top: 20px; }
.footer-grid a { color: #c7d0da; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; border-top: 1px solid rgb(255 255 255 / 10%); color: #6b7684; font-size: 13px; font-weight: 500; }

.sticky-apply { position: fixed; z-index: 60; inset: auto 0 0; padding: 0 16px 16px; pointer-events: none; transform: translateY(160%); opacity: 0; transition: transform .55s cubic-bezier(.16, 1, .3, 1), opacity .4s; }
.sticky-apply.is-visible { transform: translateY(0); opacity: 1; }
.sticky-inner { width: min(1120px, 100%); margin-inline: auto; padding: 14px 16px 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-radius: 16px; background: var(--ink); color: #fff; box-shadow: 0 20px 50px -14px rgb(16 26 38 / 55%); pointer-events: auto; }
.sticky-title { min-width: 0; display: flex; align-items: center; gap: 14px; }
.sticky-title > i { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: var(--gradient); color: #fff; font: 700 16px/1 "Space Grotesk", sans-serif; font-style: normal; }
.sticky-title > span { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sticky-title strong { overflow: hidden; color: #fff; font-size: 15px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.sticky-title small { color: #8b97a4; font-size: 13px; font-weight: 500; line-height: 1.2; }

@media (max-width: 900px) {
  .hero-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 600px; margin: 0; aspect-ratio: 16 / 10; }
  .hero-media img { object-position: center 35%; }
  .facts-inner { grid-template-columns: repeat(2, 1fr); }
  .facts-inner > div:nth-child(3) { border-left: 0; border-top: 1px solid rgb(255 255 255 / 14%); }
  .facts-inner > div:nth-child(4) { border-top: 1px solid rgb(255 255 255 / 14%); }
  .mentality-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .product-media { max-width: 680px; aspect-ratio: 16 / 10; }
}

@media (max-width: 680px) {
  :root { --space: 72px; }
  .container, .apply-inner { width: min(100% - 36px, 1120px); }
  .header-inner { padding-inline: 18px; }
  .brand img { height: 22px; }
  .nav { gap: 12px; }
  .nav-link { display: none; }
  .hero { padding: 116px 0 72px; }
  .hero-grid { gap: 44px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(30px, 9vw, 40px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .facts-inner { width: 100%; }
  .facts-inner > div { padding: 18px 10px; }
  .facts strong { font-size: 20px; }
  .section p { font-size: 17px; }
  .feature-panel { width: calc(100% - 36px); padding: 28px 24px; }
  .quote blockquote { padding: 24px; }
  .check-grid, .mentality-grid, .benefits-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .panel-list { padding: 26px 22px; }
  .highlight { padding: 22px; }
  .wide-media { width: calc(100% - 36px); aspect-ratio: 4 / 3; }
  .upload-field label { align-items: flex-start; flex-direction: column; }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .sticky-inner { padding: 12px; }
  .sticky-title > i { display: none; }
  .sticky-inner .button { min-height: 44px; padding-inline: 16px; }
}

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