:root {
  --navy: #222652;
  --navy-deep: #121733;
  --navy-black: #0a0e20;
  --navy-soft: #4a4e6a;
  --gold: #b48f52;
  --gold-bright: #d7b875;
  --gold-dark: #8a6d3d;
  --cream: #faf8f2;
  --ivory: #f2ede0;
  --beige: #ebe4d2;
  --ink: #1a1e3a;
  --muted: #676b82;
  --line: rgba(180, 143, 82, .28);
  --white-line: rgba(255, 255, 255, .14);
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --wrap: min(1240px, calc(100vw - 96px));
  --shadow: 0 26px 60px rgba(34, 38, 82, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body.menu-open, body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--navy-deep); background: var(--gold-bright); }

.skip-link { position: fixed; top: -80px; left: 20px; z-index: 1000; padding: 10px 16px; border-radius: 999px; color: var(--navy); background: var(--cream); transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { max-width: 1000px; }
.section-space { padding-top: clamp(96px, 10vw, 160px); padding-bottom: clamp(96px, 10vw, 160px); }
.section-light { background: var(--cream); }
.scene-dark { color: var(--cream); background: var(--navy-deep); }
.display { margin: 0; font-family: var(--display); font-weight: 400; line-height: .94; letter-spacing: .005em; text-transform: uppercase; }
.display em { color: var(--gold); font-style: normal; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .19em; line-height: 1.2; text-transform: uppercase; }
.eyebrow > span { display: inline-grid; place-items: center; width: 30px; height: 22px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; letter-spacing: .08em; }
.lead { margin: 0; color: var(--navy-soft); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; }
.scene-dark .lead { color: rgba(250, 248, 242, .66); }
.section-heading--center { max-width: 900px; margin: 0 auto 72px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(56px, 7vw, 96px); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .52fr); gap: 48px; align-items: end; margin-bottom: 72px; }
.section-heading--split h2 { font-size: clamp(56px, 7vw, 92px); }
.section-intro { max-width: 500px; margin: 0 0 8px auto; color: var(--muted); font-size: 18px; }

.film-grain { position: fixed; inset: -50%; z-index: 900; width: 200%; height: 200%; pointer-events: none; opacity: .045; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E"); animation: grain .22s steps(2) infinite; mix-blend-mode: multiply; }
@keyframes grain { 0% { transform: translate3d(-1%, 1%, 0); } 25% { transform: translate3d(1%, -2%, 0); } 50% { transform: translate3d(2%, 1%, 0); } 75% { transform: translate3d(-2%, -1%, 0); } 100% { transform: translate3d(1%, 2%, 0); } }

.preloader { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; color: var(--cream); background: var(--navy-black); transition: opacity .5s var(--ease), visibility .5s ease; }
.preloader::before { content: ""; position: absolute; inset: 32px; border: 1px solid rgba(255, 255, 255, .07); pointer-events: none; }
.preloader__mark { width: 110px; animation: preload-mark .8s var(--ease) both; }
.preloader__mark img { width: 100%; }
.preloader__meta { position: absolute; left: 48px; right: 48px; bottom: 50px; display: flex; justify-content: space-between; color: rgba(250, 248, 242, .48); font-size: 10px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.preloader__line { position: absolute; left: 48px; right: 48px; bottom: 32px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .1); }
.preloader__line i { display: block; width: 100%; height: 100%; background: var(--gold); transform-origin: left; animation: preload-line .85s var(--ease) both; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes preload-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes preload-mark { from { opacity: 0; transform: scale(.8) rotate(-8deg); } to { opacity: 1; transform: scale(1) rotate(0); } }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 1002; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; background: var(--gold-bright); transform: scaleX(0); transform-origin: left; }

.cursor { position: fixed; left: 0; top: 0; z-index: 1050; pointer-events: none; opacity: 0; transition: opacity .2s ease; }
.cursor i, .cursor b { position: absolute; left: 0; top: 0; display: block; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor i { width: 7px; height: 7px; background: var(--gold-bright); }
.cursor b { width: 34px; height: 34px; border: 1px solid rgba(215, 184, 117, .6); transition: width .3s var(--ease), height .3s var(--ease), background .3s ease; }
.cursor.is-visible { opacity: 1; }
.cursor.is-active b { width: 58px; height: 58px; background: rgba(215, 184, 117, .12); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center; height: 80px; padding: 0 48px; color: var(--cream); border-bottom: 1px solid transparent; transition: height .35s var(--ease), background .35s ease, border-color .35s ease; }
.site-header.is-scrolled { height: 68px; background: rgba(10, 14, 32, .82); border-bottom-color: var(--white-line); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.brand { justify-self: start; display: flex; align-items: center; gap: 9px; }
.brand img { width: 43px; height: 43px; object-fit: contain; }
.brand__name { color: var(--cream); font-family: var(--display); font-size: 10px; line-height: .9; letter-spacing: .035em; text-transform: uppercase; }
.brand__lab { padding-left: 14px; border-left: 1px solid rgba(255, 255, 255, .2); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; padding: 8px 0; color: rgba(250, 248, 242, .76); font-size: 13px; font-weight: 500; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 20px; padding: 10px 10px 10px 19px; border: 1px solid rgba(215, 184, 117, .6); border-radius: 999px; color: var(--cream); font-family: var(--display); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }
.header-cta i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--navy); background: var(--gold); font-family: var(--body); font-size: 13px; font-style: normal; }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 73% 35%, rgba(180, 143, 82, .13), transparent 28rem), linear-gradient(120deg, #111631 0%, #171c40 44%, #0a0e20 100%); }
.hero__aurora { position: absolute; z-index: -2; width: 58vw; height: 58vw; right: -20vw; top: -28vw; border: 1px solid rgba(215, 184, 117, .13); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(180, 143, 82, .018), 0 0 0 14vw rgba(180, 143, 82, .014), 0 0 0 21vw rgba(180, 143, 82, .01); animation: aurora 10s ease-in-out infinite alternate; }
@keyframes aurora { to { transform: translate3d(-3vw, 4vw, 0) scale(1.06); } }
.hero__grid { position: absolute; inset: 0; z-index: -1; opacity: .22; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.hero__number { position: absolute; right: 4vw; bottom: -9vw; z-index: -1; color: transparent; font-family: var(--display); font-size: 34vw; line-height: .8; -webkit-text-stroke: 1px rgba(255, 255, 255, .035); }
.hero__content { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, .62fr); gap: 72px; align-items: center; min-height: 100svh; padding-top: 132px; padding-bottom: 84px; }
.hero__copy { position: relative; z-index: 2; }
.hero-title { max-width: 850px; font-size: clamp(64px, 7.6vw, 122px); }
.hero-title .line-mask { display: block; overflow: hidden; margin-bottom: -.05em; }
.hero-title .line-mask > span { display: block; transform: translateY(110%); animation: title-in 1.15s var(--ease) forwards; }
.hero-title .line-mask:nth-child(1) > span { animation-delay: .78s; }
.hero-title .line-mask:nth-child(2) > span { animation-delay: .9s; }
.hero-title .line-mask:nth-child(3) > span { animation-delay: 1.02s; }
@keyframes title-in { to { transform: translateY(0); } }
.hero__lede { max-width: 680px; margin: 32px 0 0; color: rgba(250, 248, 242, .66); font-size: clamp(18px, 1.5vw, 21px); }
.hero-reveal { opacity: 0; transform: translateY(24px); animation: hero-reveal .9s 1.15s var(--ease) forwards; }
.hero__lede.hero-reveal { animation-delay: 1.22s; }
.hero__actions.hero-reveal { animation-delay: 1.32s; }
.trust-rail.hero-reveal { animation-delay: 1.42s; }
.hero-lab.hero-reveal { animation-delay: 1.45s; }
@keyframes hero-reveal { to { opacity: 1; transform: translateY(0); } }
.hero__actions { display: flex; align-items: center; gap: 32px; margin-top: 40px; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 60px; padding: 0 12px 0 28px; overflow: hidden; border-radius: 999px; font-family: var(--display); font-size: 18px; letter-spacing: .05em; text-transform: uppercase; isolation: isolate; }
.button::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold-dark); transform: translateY(102%); transition: transform .45s var(--ease); }
.button:hover::before, .button:focus-visible::before { transform: translateY(0); }
.button i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; font-family: var(--body); font-size: 15px; font-style: normal; transition: transform .35s var(--ease); }
.button:hover i { transform: rotate(45deg); }
.button--gold { color: var(--navy-deep); background: var(--gold-bright); box-shadow: 0 18px 50px rgba(180, 143, 82, .22); }
.button--gold i { color: var(--cream); background: var(--navy-deep); }
.text-link { display: inline-flex; align-items: center; gap: 18px; color: rgba(250, 248, 242, .76); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.text-link i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--white-line); border-radius: 50%; color: var(--gold); font-style: normal; transition: transform .3s var(--ease); }
.text-link:hover i { transform: translateY(4px); }
.trust-rail { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); }
.trust-rail span { color: rgba(250, 248, 242, .48); font-size: 12px; letter-spacing: .03em; }
.trust-rail b { margin-right: 5px; color: var(--gold-bright); font-family: var(--display); font-size: 18px; font-weight: 400; }
.hero-lab { position: relative; display: grid; place-items: center; min-height: 590px; perspective: 1200px; }
.lab-device { position: relative; z-index: 3; width: min(420px, 90%); padding: 10px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 30px; background: linear-gradient(140deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .025)); box-shadow: 0 50px 100px rgba(0, 0, 0, .48), inset 0 1px rgba(255, 255, 255, .22); transform: rotateY(-9deg) rotateX(3deg); transform-style: preserve-3d; transition: transform .2s ease-out; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.lab-device__top { display: flex; align-items: center; justify-content: space-between; height: 50px; padding: 0 16px; }
.mini-brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 15px; letter-spacing: .08em; }
.mini-brand img { width: 26px; height: 26px; object-fit: contain; }
.live-dot { display: flex; align-items: center; gap: 7px; color: rgba(250, 248, 242, .52); font-size: 10px; text-transform: uppercase; }
.live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #87d7a0; box-shadow: 0 0 14px #87d7a0; animation: live 1.8s ease infinite; }
@keyframes live { 50% { opacity: .35; } }
.lab-device__screen { position: relative; min-height: 480px; padding: 34px; overflow: hidden; border-radius: 22px; background: linear-gradient(145deg, rgba(250, 248, 242, .98), rgba(235, 228, 210, .95)); color: var(--ink); }
.lab-device__screen::after { content: ""; position: absolute; width: 240px; height: 240px; right: -130px; bottom: -100px; border: 1px solid rgba(180, 143, 82, .3); border-radius: 50%; box-shadow: 0 0 0 32px rgba(180, 143, 82, .04), 0 0 0 64px rgba(180, 143, 82, .025); }
.mission-kicker { display: flex; align-items: center; justify-content: space-between; }
.mission-kicker span { display: grid; place-items: center; width: 42px; height: 28px; border-radius: 999px; color: var(--cream); background: var(--gold); font-family: var(--display); font-size: 18px; }
.mission-kicker i { color: var(--muted); font-size: 10px; font-style: normal; text-transform: uppercase; }
.screen-progress { height: 2px; margin: 20px 0 58px; background: rgba(34, 38, 82, .12); }
.screen-progress i { display: block; width: 20%; height: 100%; background: var(--gold); animation: progress-breathe 3s ease-in-out infinite; }
@keyframes progress-breathe { 50% { width: 34%; } }
.lab-device__screen h2 { margin: 0; font-family: var(--display); font-size: 54px; font-weight: 400; line-height: .92; text-transform: uppercase; }
.lab-device__screen p { max-width: 300px; margin: 22px 0 34px; color: var(--navy-soft); font-size: 14px; line-height: 1.55; }
.mission-input { display: flex; align-items: center; justify-content: space-between; padding: 14px 12px 14px 18px; border: 1px solid rgba(34, 38, 82, .15); border-radius: 14px; color: #8a8da0; background: rgba(255, 255, 255, .58); font-size: 12px; }
.mission-input i { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--cream); background: var(--navy); font-style: normal; }
.screen-footer { position: absolute; left: 34px; right: 34px; bottom: 24px; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(215, 184, 117, .2); border-radius: 50%; animation: orbit-rotate 18s linear infinite; }
.orbit::after { content: ""; position: absolute; left: 50%; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 20px var(--gold); }
.orbit--one { width: 540px; height: 540px; transform: rotateX(66deg) rotateZ(12deg); }
.orbit--two { width: 430px; height: 430px; transform: rotateY(66deg) rotateZ(36deg); animation-direction: reverse; animation-duration: 24s; }
@keyframes orbit-rotate { to { rotate: 1turn; } }
.float-note { position: absolute; z-index: 4; padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; color: rgba(250, 248, 242, .74); background: rgba(10, 14, 32, .7); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); animation: float 4s ease-in-out infinite; }
.float-note::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--gold); }
.float-note--a { right: -5px; top: 24%; }
.float-note--b { left: -22px; bottom: 18%; animation-delay: -2s; }
@keyframes float { 50% { transform: translateY(-10px); } }
.hero__scroll { position: absolute; right: 40px; bottom: 32px; display: flex; align-items: center; gap: 12px; color: rgba(250, 248, 242, .38); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right bottom; }
.hero__scroll i { position: relative; width: 70px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .12); }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scroll-line 2s ease infinite; }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--ivory); }
.ticker__track { display: flex; align-items: center; width: max-content; height: 92px; color: transparent; font-family: var(--display); font-size: 54px; letter-spacing: .03em; -webkit-text-stroke: 1px rgba(34, 38, 82, .28); animation: ticker 20s linear infinite; }
.ticker__track span, .ticker__track i { margin-right: 30px; }
.ticker__track i { color: var(--gold); font-size: 20px; font-style: normal; -webkit-text-stroke: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }
.statement { font-size: clamp(64px, 8.6vw, 116px); text-align: center; }
.manifesto .eyebrow { justify-content: center; }
.manifesto .lead { max-width: 780px; margin: 40px auto 0; text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 72px; }
.pain-card { position: relative; min-height: 330px; padding: 28px; overflow: hidden; border: 1px solid rgba(34, 38, 82, .1); border-radius: 20px; background: rgba(255, 255, 255, .62); box-shadow: 0 18px 45px rgba(34, 38, 82, .05); transition: transform .4s var(--ease), box-shadow .4s ease; }
.pain-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pain-card__index { color: var(--muted); font-family: var(--display); font-size: 16px; }
.pain-card h3 { margin: 42px 0 16px; font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.pain-card p { margin: 0; color: var(--muted); font-size: 14px; }
.line-icon { position: absolute; top: 24px; right: 24px; width: 68px; height: 68px; border: 1px solid var(--line); border-radius: 50%; }
.line-icon i { position: absolute; left: 20px; right: 20px; height: 1px; background: var(--gold); }
.line-icon i:nth-child(1) { top: 24px; }.line-icon i:nth-child(2) { top: 33px; }.line-icon i:nth-child(3) { top: 42px; }
.line-icon--orbit i:nth-child(1) { inset: 13px; height: auto; border: 1px solid var(--gold); border-radius: 50%; background: transparent; }
.line-icon--orbit i:nth-child(2) { left: 31px; right: auto; top: 15px; bottom: 15px; width: 1px; height: auto; }
.line-icon--orbit i:nth-child(3) { left: 20px; right: auto; top: 30px; width: 8px; height: 8px; border-radius: 50%; }
.line-icon--clock i:nth-child(1) { left: 32px; right: auto; top: 17px; width: 1px; height: 17px; }
.line-icon--clock i:nth-child(2) { left: 32px; right: auto; top: 33px; width: 12px; transform: rotate(25deg); transform-origin: left; }
.line-icon--clock i:nth-child(3) { display: none; }

.solution { position: relative; overflow: hidden; }
.solution__beam { position: absolute; width: 55vw; height: 55vw; left: 50%; top: 18%; border-radius: 50%; background: rgba(180, 143, 82, .07); filter: blur(100px); transform: translateX(-50%); }
.comparison { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1060px; margin: 0 auto; }
.compare-card { position: relative; min-height: 520px; padding: 42px; border-radius: 24px; }
.compare-card--old { color: rgba(250, 248, 242, .62); border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .035); }
.compare-card--lab { color: var(--navy-deep); background: linear-gradient(145deg, var(--gold-bright), var(--gold)); box-shadow: 0 36px 100px rgba(0, 0, 0, .3); }
.compare-card__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 28px; border-bottom: 1px solid currentColor; }
.compare-card__head span { font-family: var(--display); font-size: 29px; text-transform: uppercase; }
.compare-card__head i { padding: 5px 9px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.compare-card ul { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; }
.compare-card li { display: flex; align-items: center; gap: 20px; padding: 17px 0; border-bottom: 1px solid currentColor; font-size: 17px; }
.compare-card li span { opacity: .55; font-family: var(--display); font-size: 17px; }
.versus { position: absolute; left: 50%; top: 50%; z-index: 4; display: grid; place-items: center; width: 54px; height: 54px; border: 5px solid var(--navy-deep); border-radius: 50%; color: var(--navy-deep); background: var(--cream); font-family: var(--display); transform: translate(-50%, -50%); }
.solution__close { max-width: 800px; margin: 56px auto 0; color: rgba(250, 248, 242, .62); font-size: 19px; text-align: center; }

.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mission-card { position: relative; min-height: 360px; padding: 28px; overflow: hidden; border: 1px solid rgba(34, 38, 82, .11); border-radius: 20px; background: rgba(255, 255, 255, .56); transform-style: preserve-3d; transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease; }
.mission-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.mission-card:hover, .mission-card:focus-visible { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-8px); outline: none; }
.mission-card:hover::before, .mission-card:focus-visible::before { transform: scaleX(1); }
.mission-card__top, .mission-card__foot { display: flex; align-items: center; justify-content: space-between; }
.mission-card__top > span { display: grid; place-items: center; width: 44px; height: 30px; border-radius: 999px; color: var(--cream); background: var(--gold); font-family: var(--display); font-size: 19px; }
.mission-card__top time { color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.mission-card h3 { margin: 58px 0 12px; font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.mission-card p { margin: 0; color: var(--muted); font-size: 14px; }
.mission-card__foot { position: absolute; left: 28px; right: 28px; bottom: 24px; padding-top: 12px; border-top: 1px solid rgba(34, 38, 82, .1); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mission-card__foot i { color: var(--gold); font-size: 16px; font-style: normal; }
.mission-glyph { position: absolute; right: 24px; top: 80px; color: rgba(180, 143, 82, .22); font-family: var(--display); font-size: 76px; line-height: 1; }
.mission-card--feature { grid-column: span 2; color: var(--cream); background: var(--navy); box-shadow: 0 24px 60px rgba(34, 38, 82, .18); }
.mission-card--feature h3 { max-width: 420px; margin-top: 128px; font-size: 42px; }
.mission-card--feature p { max-width: 430px; color: rgba(250, 248, 242, .58); }
.mission-card--feature .mission-card__foot { border-color: rgba(255, 255, 255, .12); color: rgba(250, 248, 242, .54); }
.mission-card__visual { position: absolute; right: 30px; top: 78px; display: grid; place-items: center; width: 190px; height: 190px; border: 1px solid rgba(215, 184, 117, .25); border-radius: 50%; }
.mission-card__visual::before, .mission-card__visual::after { content: ""; position: absolute; border: 1px solid rgba(215, 184, 117, .17); border-radius: 50%; }
.mission-card__visual::before { inset: 22px; }.mission-card__visual::after { inset: 44px; }
.mission-card__visual b { position: relative; z-index: 2; color: var(--gold-bright); font-family: var(--display); font-size: 42px; font-weight: 400; }
.mission-card__visual i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 20px var(--gold); animation: float 3s ease-in-out infinite; }
.mission-card__visual i:first-child { left: 20px; top: 45px; }.mission-card__visual i:last-of-type { right: 17px; bottom: 50px; animation-delay: -1.5s; }
.mission-card--final { color: var(--cream); background: linear-gradient(145deg, var(--gold-dark), var(--gold)); }
.mission-card--final .mission-card__top > span { color: var(--navy); background: var(--cream); }
.mission-card--final time, .mission-card--final p, .mission-card--final .mission-card__foot { color: rgba(250, 248, 242, .7); }
.mission-card--final .mission-card__foot { border-color: rgba(255, 255, 255, .2); }.mission-card--final .mission-card__foot i { color: var(--cream); }.mission-card--final .mission-glyph { color: rgba(255, 255, 255, .22); }

.anatomy { background: var(--ivory); }
.anatomy__grid { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(500px, 1.22fr); gap: 72px; align-items: start; }
.anatomy__copy { position: sticky; top: 110px; }
.anatomy__copy h2 { font-size: clamp(58px, 6vw, 84px); }
.anatomy__copy .lead { margin-top: 28px; }
.step-list { display: grid; margin-top: 44px; border-top: 1px solid rgba(34, 38, 82, .15); }
.step { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 8px; min-height: 52px; padding: 0; border: 0; border-bottom: 1px solid rgba(34, 38, 82, .12); color: var(--muted); background: transparent; text-align: left; cursor: pointer; transition: color .25s ease, padding .35s var(--ease); }
.step span { font-family: var(--display); font-size: 14px; }.step b { font-size: 14px; font-weight: 600; }.step i { font-size: 11px; font-style: normal; }
.step.is-active { padding-left: 12px; color: var(--navy); box-shadow: inset 3px 0 var(--gold); }
.mission-demo { position: sticky; top: 110px; min-height: 720px; overflow: hidden; border: 1px solid rgba(34, 38, 82, .14); border-radius: 24px; background: #fff; box-shadow: 0 36px 80px rgba(34, 38, 82, .15); }
.mission-demo__chrome { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 54px; padding: 0 18px; color: #7a7e94; border-bottom: 1px solid rgba(34, 38, 82, .1); background: #f8f6ef; font-size: 9px; text-transform: uppercase; }
.mission-demo__chrome > span { display: flex; gap: 5px; }.mission-demo__chrome > span i { width: 7px; height: 7px; border-radius: 50%; background: #d8d5cc; }
.mission-demo__chrome b { font-weight: 600; letter-spacing: .05em; }.mission-demo__chrome em { justify-self: end; font-style: normal; }
.mission-demo__body { display: grid; grid-template-columns: 80px 1fr; min-height: 666px; }
.mission-demo aside { display: flex; flex-direction: column; align-items: center; padding: 20px 0; background: var(--navy-deep); }
.mission-demo aside img { width: 38px; height: 38px; object-fit: contain; }
.mission-demo aside > span { margin-top: auto; color: var(--gold); font-family: var(--display); font-size: 20px; }
.demo-rail { display: grid; gap: 14px; margin-top: 56px; }.demo-rail i { width: 6px; height: 6px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 50%; }.demo-rail i.done { background: var(--gold); border-color: var(--gold); }.demo-rail i.active { box-shadow: 0 0 0 5px rgba(180, 143, 82, .14); border-color: var(--gold); }
.demo-stage { display: flex; flex-direction: column; min-width: 0; padding: 30px; }
.demo-stage__meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.demo-stage__meta b { color: var(--gold-dark); }.demo-progress { height: 2px; margin-top: 12px; background: rgba(34, 38, 82, .1); }.demo-progress i { display: block; width: 16%; height: 100%; background: var(--gold); transition: width .6s var(--ease); }
.demo-screen { display: flex; flex: 1; flex-direction: column; justify-content: center; align-items: flex-start; max-width: 520px; margin: auto; padding: 50px 12px; transition: opacity .25s ease, transform .25s var(--ease); }
.demo-screen.is-changing { opacity: 0; transform: translateY(16px); }
.demo-screen__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 26px; }
.demo-screen__overline { margin: 0 0 12px; color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.demo-screen h3 { margin: 0; font-family: var(--display); font-size: clamp(38px, 4vw, 54px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.demo-screen > p:not(.demo-screen__overline) { margin: 24px 0 34px; color: var(--muted); font-size: 15px; }
.demo-screen > button { display: flex; align-items: center; gap: 40px; min-height: 48px; padding: 0 9px 0 20px; border: 0; border-radius: 999px; color: var(--cream); background: var(--navy); font-family: var(--display); font-size: 16px; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.demo-screen > button i { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--navy); background: var(--gold); font-family: var(--body); font-style: normal; }
.demo-stage__foot { display: flex; justify-content: space-between; padding-top: 14px; color: var(--muted); border-top: 1px solid rgba(34, 38, 82, .1); font-size: 9px; text-transform: uppercase; }
.demo-stage__foot span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: #65a87d; }.demo-stage__foot button { padding: 0; border: 0; color: inherit; background: none; cursor: pointer; text-transform: uppercase; }

.copilot { position: relative; overflow: hidden; }
.copilot__glow { position: absolute; left: 50%; top: 45%; width: 850px; height: 500px; border-radius: 50%; background: rgba(180, 143, 82, .09); filter: blur(110px); transform: translate(-50%, -50%); }
.copilot__heading .section-intro { margin: 24px auto 0; color: rgba(250, 248, 242, .58); }
.chat-shell { position: relative; max-width: 980px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(255, 255, 255, .16); border-radius: 26px; background: rgba(9, 13, 31, .68); box-shadow: 0 50px 110px rgba(0, 0, 0, .35); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.chat-shell__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 64px; padding: 0 24px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.chat-shell__top span { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }.chat-shell__top span i { width: 8px; height: 8px; border-radius: 50%; background: #87d7a0; box-shadow: 0 0 14px #87d7a0; }
.chat-shell__top b { color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }.chat-shell__top em { justify-self: end; color: rgba(255, 255, 255, .3); font-style: normal; letter-spacing: .2em; }
.chat-context { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 24px; border-bottom: 1px solid rgba(255, 255, 255, .08); }.chat-context span { padding: 5px 10px; border: 1px solid rgba(215, 184, 117, .25); border-radius: 999px; color: rgba(250, 248, 242, .5); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.chat-flow { display: grid; gap: 24px; padding: clamp(28px, 5vw, 60px); }
.chat-bubble { max-width: 72%; padding: 22px; border-radius: 18px; }.chat-bubble > span { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }.chat-bubble p { margin: 0; font-size: 16px; line-height: 1.55; }.chat-bubble p + p { margin-top: 14px; }
.chat-bubble--user { justify-self: end; border: 1px solid rgba(255, 255, 255, .13); border-bottom-right-radius: 4px; background: rgba(255, 255, 255, .06); }.chat-bubble--user > span { color: rgba(250, 248, 242, .4); }
.chat-bubble--ai { color: var(--ink); border-bottom-left-radius: 4px; background: var(--ivory); box-shadow: 0 25px 60px rgba(0, 0, 0, .18); }.chat-bubble--ai > span { color: var(--gold-dark); }.chat-bubble--ai > span img { width: 24px; height: 24px; object-fit: contain; }.chat-bubble--ai strong { color: var(--navy); }
.ai-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }.ai-actions button { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: transparent; font-size: 10px; cursor: pointer; }
.chat-input { display: flex; align-items: center; justify-content: space-between; margin: 0 24px 24px; padding: 12px 12px 12px 18px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; color: rgba(250, 248, 242, .32); font-size: 13px; }.chat-input i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--navy); background: var(--gold); font-style: normal; }

.bento { display: grid; grid-template-columns: 1.35fr .8fr .8fr; grid-template-rows: 280px 280px; gap: 18px; }
.bento-card { position: relative; padding: 30px; overflow: hidden; border: 1px solid rgba(34, 38, 82, .11); border-radius: 22px; background: rgba(255, 255, 255, .62); }
.bento-card--hero { grid-row: span 2; padding-top: 310px; color: var(--cream); background: var(--navy); }.bento-card--dark { color: var(--cream); background: var(--navy-deep); }.bento-card--gold { color: var(--navy-deep); background: var(--gold-bright); }
.bento-num { position: absolute; right: 24px; top: 20px; color: var(--gold); font-family: var(--display); font-size: 16px; }.bento-card--gold .bento-num { color: var(--navy); }.bento-card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 29px; font-weight: 400; line-height: 1; text-transform: uppercase; }.bento-card p { margin: 0; color: var(--muted); font-size: 14px; }.bento-card--hero p, .bento-card--dark p { color: rgba(250, 248, 242, .57); }.bento-card--gold p { color: rgba(18, 23, 51, .67); }
.bento-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-family: var(--display); font-size: 21px; }.bento-card--gold .bento-icon { color: var(--navy); border-color: rgba(18, 23, 51, .3); }
.build-visual { position: absolute; left: 50%; top: 55px; width: 230px; height: 210px; transform: translateX(-50%); }.build-visual i { position: absolute; width: 140px; height: 86px; border: 1px solid rgba(215, 184, 117, .33); border-radius: 12px; background: rgba(255, 255, 255, .035); transform: rotate(-8deg); }.build-visual i:nth-child(1) { left: 6px; top: 74px; }.build-visual i:nth-child(2) { right: 0; top: 40px; transform: rotate(9deg); }.build-visual i:nth-child(3) { left: 44px; top: 10px; transform: rotate(-1deg); background: rgba(180, 143, 82, .14); }.build-visual b { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: var(--navy); background: var(--gold-bright); font-size: 28px; transform: translate(-50%, -50%); }

.methods { background: var(--ivory); }
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.book-card { min-width: 0; }.book { position: relative; display: flex; flex-direction: column; aspect-ratio: .7; padding: 26px; overflow: hidden; color: #fff; box-shadow: 0 25px 50px rgba(34, 38, 82, .18); transition: transform .5s var(--ease), box-shadow .5s ease; }.book-card:hover .book { transform: translateY(-8px) rotateY(-3deg); box-shadow: 0 40px 70px rgba(34, 38, 82, .24); }
.book span { font-size: 10px; letter-spacing: .15em; }.book b { margin-top: auto; font-family: var(--display); font-size: clamp(38px, 4vw, 57px); font-weight: 400; line-height: .84; }.book em { margin-top: 14px; font-size: 9px; font-style: normal; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; }.book i { position: absolute; right: -40px; top: 55px; width: 160px; height: 160px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255, 255, 255, .04), 0 0 0 44px rgba(255, 255, 255, .03); }
.book--canvas { background: #286560; }.book--offers { background: #ef6c4c; }.book--leads { background: #3474b7; }.book--emyth { background: #171b29; }
.book-card > p { margin: 22px 0 4px; color: var(--gold-dark); font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }.book-card h3 { margin: 0; font-family: var(--display); font-size: 25px; font-weight: 400; text-transform: uppercase; }.book-card small { color: var(--muted); }
.methods__quote { max-width: 870px; margin: 100px auto 0; color: var(--navy); font-family: var(--display); font-size: clamp(36px, 4vw, 56px); font-style: normal; line-height: 1.05; text-align: center; text-transform: uppercase; }

.founder { position: relative; overflow: hidden; }.founder::after { content: "AE"; position: absolute; right: -4vw; bottom: -15vw; color: transparent; font-family: var(--display); font-size: 38vw; line-height: 1; -webkit-text-stroke: 1px rgba(255, 255, 255, .035); pointer-events: none; }
.founder__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }.founder-portrait { max-width: 460px; }.portrait-frame { position: relative; aspect-ratio: .8; overflow: hidden; border: 1px solid rgba(255, 255, 255, .16); border-radius: 24px; background: radial-gradient(circle at 50% 35%, rgba(215, 184, 117, .18), transparent 28%), linear-gradient(145deg, #2b315f, #0c1026); box-shadow: 0 40px 90px rgba(0, 0, 0, .32); }
.portrait-photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.portrait-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10, 14, 32, 0) 44%, rgba(10, 14, 32, .92) 100%); pointer-events: none; }
.portrait-line { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 94px; height: 1px; background: rgba(255, 255, 255, .13); }.portrait-frame b { position: absolute; z-index: 2; left: 28px; bottom: 36px; font-family: var(--display); font-size: 22px; font-weight: 400; line-height: .95; text-transform: uppercase; }.portrait-frame em { position: absolute; z-index: 2; right: 28px; bottom: 34px; color: var(--gold-bright); font-family: var(--display); font-size: 42px; font-style: normal; line-height: .8; }.portrait-frame em small { display: block; font-family: var(--body); font-size: 8px; letter-spacing: .14em; text-align: right; text-transform: uppercase; }.founder-portrait > p { margin: 18px 0 0; color: rgba(250, 248, 242, .4); font-size: 11px; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.founder__copy h2 { font-size: clamp(58px, 7vw, 94px); }.founder__copy .lead { margin-top: 34px; }.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }.credentials span { padding: 8px 13px; border: 1px solid rgba(215, 184, 117, .26); border-radius: 999px; color: rgba(250, 248, 242, .58); font-size: 11px; }

.bonuses { background: var(--cream); }.seat-counter { min-width: 300px; }.seat-counter > span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }.seat-counter > div { height: 4px; margin: 13px 0 10px; overflow: hidden; border-radius: 999px; background: var(--beige); }.seat-counter > div i { display: block; width: 64%; height: 100%; background: var(--gold); }.seat-counter b { color: var(--navy); font-size: 12px; font-weight: 600; }.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; gap: 18px; }.bonus-card { position: relative; min-height: 420px; padding: 30px; border: 1px solid rgba(34, 38, 82, .11); border-radius: 22px; background: rgba(255, 255, 255, .65); transition: transform .4s var(--ease), box-shadow .4s ease; }.bonus-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }.bonus-card__num { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-dark); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.bonus-card__icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 54px 0 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 32px; }.bonus-card h3 { margin: 0 0 14px; font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 1; text-transform: uppercase; }.bonus-card p { margin: 0; color: var(--muted); font-size: 14px; }.bonus-card__value { position: absolute; left: 30px; right: 30px; bottom: 26px; display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(34, 38, 82, .1); color: var(--muted); font-size: 11px; }.bonus-total { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 32px; margin-top: 24px; padding: 30px 36px; border-radius: 20px; color: var(--cream); background: var(--gold); }.bonus-total span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.bonus-total b { grid-row: span 2; font-family: var(--display); font-size: 62px; font-weight: 400; line-height: .8; }.bonus-total b small { font-size: 20px; }.bonus-total p { margin: 0; color: rgba(250, 248, 242, .7); font-size: 13px; }

.pricing { position: relative; overflow: hidden; background: var(--ivory); }.pricing__halo { position: absolute; left: 50%; top: 50%; width: 780px; height: 780px; border: 1px solid rgba(180, 143, 82, .13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(180, 143, 82, .025), 0 0 0 140px rgba(180, 143, 82, .018); transform: translate(-50%, -50%); }.pricing-card { position: relative; max-width: 760px; margin: 0 auto; padding: clamp(34px, 5vw, 64px); border: 1px solid rgba(34, 38, 82, .12); border-radius: 28px; background: rgba(255, 255, 255, .83); box-shadow: 0 50px 100px rgba(34, 38, 82, .16); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }.pricing-card__head { text-align: center; }.pricing-card__head .eyebrow { justify-content: center; }.pricing-card__head h2 { font-size: clamp(50px, 6vw, 76px); }.pricing-card__head > p:last-child { margin: 14px 0 0; color: var(--muted); }.price { display: flex; flex-direction: column; align-items: center; margin: 44px 0 34px; padding: 34px 0; border-top: 1px solid rgba(34, 38, 82, .1); border-bottom: 1px solid rgba(34, 38, 82, .1); }.price s { color: var(--muted); font-family: var(--display); font-size: 29px; }.price b { color: var(--gold); font-family: var(--display); font-size: clamp(88px, 12vw, 138px); font-weight: 400; line-height: .92; }.price b small { margin-left: 8px; color: var(--navy); font-size: 22px; }.price span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }.payment-options { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; border: 0; }.payment-options legend { margin-bottom: 12px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.payment { display: grid; grid-template-columns: 20px 1fr auto; gap: 8px 12px; align-items: center; padding: 15px 16px; border: 1px solid rgba(34, 38, 82, .12); border-radius: 14px; cursor: pointer; transition: border .25s ease, background .25s ease; }.payment.is-selected { border-color: var(--gold); background: rgba(180, 143, 82, .06); }.payment input { position: absolute; opacity: 0; }.payment > i { grid-row: span 2; width: 17px; height: 17px; border: 1px solid rgba(34, 38, 82, .3); border-radius: 50%; }.payment.is-selected > i { border: 5px solid var(--gold); }.payment > span { display: flex; flex-direction: column; line-height: 1.25; }.payment > span b { font-size: 14px; }.payment > span small { color: var(--muted); }.payment strong { font-family: var(--display); font-size: 23px; font-weight: 400; }.payment em { grid-column: 3; color: var(--gold-dark); font-size: 10px; font-style: normal; }.button--wide { width: 100%; min-height: 66px; padding-left: 34px; font-size: 22px; }.pricing-note { margin: 18px 0 0; color: var(--muted); font-size: 11px; text-align: center; }.pricing-note span { color: var(--gold); }

.risk__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }.guarantee { position: sticky; top: 100px; padding: 44px; border-radius: 24px; color: var(--navy-deep); background: linear-gradient(145deg, var(--gold-bright), var(--gold)); box-shadow: 0 30px 70px rgba(180, 143, 82, .2); }.guarantee__seal { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100px; height: 100px; margin-bottom: 48px; border: 1px solid rgba(18, 23, 51, .35); border-radius: 50%; }.guarantee__seal::before, .guarantee__seal::after { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(18, 23, 51, .25); border-radius: 50%; }.guarantee__seal span { font-family: var(--display); font-size: 44px; line-height: .8; }.guarantee__seal small { font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }.guarantee > p { margin: 0 0 10px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.guarantee h2 { font-size: clamp(54px, 6vw, 74px); }.guarantee__copy { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(18, 23, 51, .2); font-size: 15px; }.signature { display: block; margin-top: 28px; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.faq-list h2 { font-size: clamp(60px, 7vw, 90px); }.accordion { margin-top: 46px; border-top: 1px solid rgba(34, 38, 82, .14); }.accordion details { border-bottom: 1px solid rgba(34, 38, 82, .14); }.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-family: var(--display); font-size: 24px; line-height: 1; list-style: none; text-transform: uppercase; cursor: pointer; }.accordion summary::-webkit-details-marker { display: none; }.accordion summary i { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }.accordion summary i::before, .accordion summary i::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 1px; background: var(--gold); transition: transform .3s var(--ease); }.accordion summary i::after { transform: rotate(90deg); }.accordion details[open] summary i::after { transform: rotate(0); }.accordion details p { max-width: 650px; margin: -4px 0 24px; padding-left: 18px; color: var(--muted); border-left: 3px solid var(--gold); font-size: 15px; }

.final-cta { position: relative; display: grid; place-items: center; min-height: 92svh; overflow: hidden; text-align: center; }.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(180, 143, 82, .13), transparent 31rem), linear-gradient(145deg, #1c2149, #090d20); }.final-cta__rings { position: absolute; inset: 0; display: grid; place-items: center; }.final-cta__rings i { position: absolute; width: min(75vw, 950px); aspect-ratio: 1; border: 1px solid rgba(215, 184, 117, .1); border-radius: 50%; }.final-cta__rings i:nth-child(2) { width: min(55vw, 700px); }.final-cta__rings i:nth-child(3) { width: min(35vw, 460px); }.final-cta__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding-top: 150px; padding-bottom: 150px; }.final-cta .eyebrow { justify-content: center; }.final-cta h2 { font-size: clamp(72px, 10vw, 142px); }.final-cta h2 span { color: transparent; -webkit-text-stroke: 1px rgba(250, 248, 242, .42); }.final-cta .lead { max-width: 700px; margin-top: 30px; }.button--final { min-height: 72px; margin-top: 42px; padding-left: 40px; font-size: 24px; }.final-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; color: rgba(250, 248, 242, .42); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }.final-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.site-footer { color: rgba(250, 248, 242, .55); background: var(--navy-black); }.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 60px; padding-top: 80px; padding-bottom: 70px; border-top: 1px solid rgba(215, 184, 117, .4); }.footer-brand img { width: 210px; height: 84px; object-fit: contain; object-position: left center; }.footer-brand p { max-width: 280px; margin: 18px 0 0; font-size: 13px; }.footer-grid h2 { margin: 12px 0 22px; color: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }.footer-grid a { margin-bottom: 9px; font-size: 13px; transition: color .2s ease; }.footer-grid a:hover { color: var(--gold-bright); }.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; padding-bottom: 24px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.reveal, .stagger-item { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }.reveal.is-visible, .stagger-item.is-visible { opacity: 1; transform: translateY(0); }.stagger-group .stagger-item:nth-child(2) { transition-delay: .08s; }.stagger-group .stagger-item:nth-child(3) { transition-delay: .16s; }.stagger-group .stagger-item:nth-child(4) { transition-delay: .24s; }.stagger-group .stagger-item:nth-child(5) { transition-delay: .32s; }.stagger-group .stagger-item:nth-child(6) { transition-delay: .4s; }.stagger-group .stagger-item:nth-child(7) { transition-delay: .48s; }.stagger-group .stagger-item:nth-child(8) { transition-delay: .56s; }.stagger-group .stagger-item:nth-child(9) { transition-delay: .64s; }

@media (max-width: 1100px) {
  :root { --wrap: min(100% - 64px, 1100px); }
  .site-header { grid-template-columns: 1fr auto; padding: 0 32px; }
  .main-nav { position: fixed; inset: 68px 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 30px 32px 42px; border-bottom: 1px solid var(--white-line); background: rgba(10, 14, 32, .97); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s var(--ease); }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-family: var(--display); font-size: 24px; text-transform: uppercase; }
  .header-cta, .header-right { display: none; }.menu-toggle { justify-self: end; display: grid; grid-template-columns: 24px auto; gap: 2px 10px; align-items: center; padding: 10px; color: var(--cream); cursor: pointer; }.menu-toggle i { grid-column: 1; width: 24px; height: 1px; background: var(--gold); transition: transform .3s var(--ease); }.menu-toggle span { grid-column: 2; grid-row: 1 / span 2; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }.menu-toggle[aria-expanded="true"] i:first-child { transform: translateY(2px) rotate(45deg); }.menu-toggle[aria-expanded="true"] i:nth-child(2) { transform: translateY(-1px) rotate(-45deg); }
  .hero__content { grid-template-columns: 1fr .62fr; gap: 30px; }.hero-title { font-size: clamp(64px, 8vw, 90px); }.hero-lab { min-height: 500px; }.lab-device__screen { min-height: 420px; padding: 25px; }.lab-device__screen h2 { font-size: 44px; }.orbit--one { width: 430px; height: 430px; }.orbit--two { width: 340px; height: 340px; }.float-note { display: none; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }.mission-card--feature { grid-column: span 2; }
  .anatomy__grid { grid-template-columns: .75fr 1.25fr; gap: 38px; }.step { grid-template-columns: 30px 1fr; }.step i { display: none; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }.bento-card { min-height: 270px; }.bento-card--hero { grid-column: span 2; grid-row: auto; min-height: 440px; padding-top: 290px; }
  .book-grid { gap: 14px; }.book { padding: 18px; }
  .founder__grid { gap: 50px; }
}

@media (max-width: 820px) {
  :root { --wrap: calc(100% - 48px); }
  .section-heading--split, .founder__grid, .risk__grid { grid-template-columns: 1fr; }
  .section-heading--split { gap: 26px; margin-bottom: 52px; }.section-intro { margin-left: 0; }
  .hero { min-height: auto; }.hero__content { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; padding-bottom: 100px; }.hero__copy { text-align: left; }.hero-title { font-size: clamp(62px, 13vw, 92px); }.hero__lede { max-width: 620px; }.hero-lab { min-height: 600px; }.lab-device { width: min(430px, 82vw); }.hero__scroll { display: none; }
  .pain-grid, .bonus-grid { grid-template-columns: 1fr; }.pain-card { min-height: 280px; }.bonus-card { min-height: 360px; }
  .comparison { grid-template-columns: 1fr; max-width: 630px; }.versus { top: 50%; }.compare-card { min-height: auto; }.compare-card li { font-size: 15px; }
  .anatomy__grid { grid-template-columns: 1fr; }.anatomy__copy, .mission-demo { position: relative; top: auto; }.step-list { grid-template-columns: 1fr 1fr; column-gap: 18px; }.mission-demo { min-height: 650px; }
  .chat-bubble { max-width: 88%; }
  .book-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 18px; }.book { padding: 25px; }.book b { font-size: 52px; }
  .founder-portrait { justify-self: center; width: min(100%, 460px); }.founder__copy { text-align: center; }.founder__copy .eyebrow { justify-content: center; }.credentials { justify-content: center; }
  .guarantee { position: relative; top: auto; max-width: 560px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-brand { grid-column: span 3; }
  .agenda-row { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 40px); }
  html { scroll-padding-top: 66px; }.section-space { padding-top: 88px; padding-bottom: 88px; }
  .film-grain { opacity: .03; }.preloader::before { inset: 16px; }.preloader__meta, .preloader__line { left: 24px; right: 24px; }.preloader__meta { bottom: 42px; }.preloader__line { bottom: 25px; }
  .site-header { height: 66px; padding: 0 18px; }.site-header.is-scrolled { height: 62px; }.brand img { width: 38px; height: 38px; }.brand__lab { display: none; }.main-nav { inset: 62px 0 auto; padding-inline: 22px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: .14em; }.display { line-height: .96; }
  .section-heading h2, .section-heading--split h2 { font-size: clamp(50px, 16vw, 72px); }.section-heading--center { margin-bottom: 48px; }
  .hero__content { padding-top: 120px; padding-bottom: 80px; }.hero-title { font-size: clamp(56px, 16vw, 78px); }.hero-title .line-mask:nth-child(2) { font-size: .91em; }.hero__lede { margin-top: 26px; font-size: 17px; }.hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 32px; }.button { min-height: 56px; font-size: 16px; }.trust-rail { gap: 10px 18px; }.hero-lab { min-height: 500px; margin-top: 16px; }.lab-device { width: 92vw; transform: rotateY(-4deg) rotateX(2deg); }.lab-device__screen { min-height: 410px; padding: 24px; }.lab-device__screen h2 { font-size: 43px; }.screen-progress { margin-bottom: 46px; }.screen-footer { left: 24px; right: 24px; }.orbit--one { width: 110vw; height: 110vw; }.orbit--two { width: 88vw; height: 88vw; }
  .ticker__track { height: 72px; font-size: 42px; }.statement { font-size: clamp(56px, 17vw, 78px); }.manifesto .lead { margin-top: 28px; text-align: left; }
  .pain-grid { margin-top: 52px; }.pain-card { min-height: 300px; }
  .compare-card { padding: 28px 23px; border-radius: 18px; }.compare-card__head { align-items: flex-start; flex-direction: column; gap: 8px; }.compare-card__head span { font-size: 25px; }.versus { width: 46px; height: 46px; }.solution__close { margin-top: 42px; font-size: 16px; }
  .mission-grid { grid-template-columns: 1fr; }.mission-card, .mission-card--feature { grid-column: auto; min-height: 340px; }.mission-card--feature { min-height: 480px; }.mission-card--feature h3 { max-width: 220px; margin-top: 190px; font-size: 34px; }.mission-card__visual { right: 18px; top: 72px; width: 170px; height: 170px; }
  .step-list { grid-template-columns: 1fr; }.step i { display: block; }.mission-demo { min-height: 610px; border-radius: 18px; }.mission-demo__chrome { grid-template-columns: 1fr auto; }.mission-demo__chrome b { display: none; }.mission-demo__body { grid-template-columns: 56px 1fr; min-height: 556px; }.demo-stage { padding: 22px 18px; }.demo-screen { padding: 36px 0; }.demo-screen h3 { font-size: 40px; }.demo-screen__icon { margin-bottom: 24px; }.demo-stage__foot span { display: none; }
  .chat-shell__top { grid-template-columns: 1fr auto; }.chat-shell__top b { display: none; }.chat-context { padding: 12px 16px; }.chat-flow { padding: 28px 16px; }.chat-bubble { max-width: 94%; padding: 18px; }.chat-bubble p { font-size: 14px; }.chat-input { margin: 0 16px 16px; font-size: 11px; }
  .bento { grid-template-columns: 1fr; }.bento-card, .bento-card--hero { grid-column: auto; min-height: 270px; }.bento-card--hero { min-height: 480px; padding-top: 310px; }
  .book-grid { grid-template-columns: 1fr; gap: 46px; }.book { max-width: 330px; margin: 0 auto; padding: 28px; }.book-card > p, .book-card h3, .book-card small { display: block; max-width: 330px; margin-inline: auto; }.book-card h3 { margin-top: 0; }.methods__quote { margin-top: 72px; }
  .founder__grid { gap: 58px; }.founder__copy { text-align: left; }.founder__copy .eyebrow { justify-content: flex-start; }.founder__copy h2 { font-size: clamp(52px, 15vw, 70px); }.credentials { justify-content: flex-start; }
  .bonus-total { grid-template-columns: 1fr; }.bonus-total b { grid-row: auto; margin: 12px 0; font-size: 54px; }.seat-counter { min-width: 0; }
  .pricing-card { padding: 34px 22px; border-radius: 20px; }.price { margin-top: 32px; }.price b { font-size: 88px; }.price b small { display: block; margin: 2px 0 0; text-align: center; }.payment { grid-template-columns: 20px 1fr; }.payment strong, .payment em { grid-column: 2; justify-self: start; }.payment strong { margin-top: 5px; }.payment em { display: none; }
  .risk__grid { gap: 70px; }.guarantee { padding: 34px 28px; }.accordion summary { font-size: 21px; }
  .final-cta { min-height: 90svh; }.final-cta__content { padding-top: 110px; padding-bottom: 110px; }.final-cta h2 { font-size: clamp(60px, 18vw, 90px); }.button--final { padding-left: 24px; font-size: 18px; }.final-trust { flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; }.footer-brand { grid-column: span 2; }.footer-grid > div:last-child { grid-column: span 2; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .scarcity-chip { display: none; }
}

@media (pointer: coarse) { .cursor { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .stagger-item, .hero-reveal { opacity: 1; transform: none; }
  .hero-title .line-mask > span { transform: none; }
  .film-grain, .cursor { display: none; }
}

.no-js .preloader { display: none; }.no-js .reveal, .no-js .stagger-item { opacity: 1; transform: none; }

/* ===== Adaptaciones taller presencial v2 (mínimas, sobre el sistema visual existente) ===== */

.header-right { justify-self: end; display: flex; align-items: center; gap: 14px; }
.scarcity-chip { padding: 7px 14px; border-radius: 999px; background: var(--gold); color: var(--navy-deep); font-size: 11px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.header-whatsapp { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(215, 184, 117, .4); background: rgba(215, 184, 117, .12); color: var(--gold-bright); transition: background .2s ease, color .2s ease, transform .2s ease; }
.header-whatsapp:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-1px); }

.hero__date-block { display: inline-block; margin: 36px 0 0; padding: 20px 24px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 16px; background: rgba(255, 255, 255, .04); }
.hero__date-big { margin: 0; color: var(--gold-bright); font-family: var(--display); font-size: clamp(30px, 4vw, 44px); line-height: 1; }
.hero__date-sub { margin: 8px 0 0; color: rgba(250, 248, 242, .6); font-size: 13px; }
.scene-dark .hero__date-sub { color: rgba(250, 248, 242, .6); }
.section-light .hero__date-block, .final-cta .hero__date-block { text-align: center; }

.pain-card__icon { position: absolute; top: 24px; right: 24px; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; font-size: 22px; }

.agenda-list { margin-top: 56px; border-top: 1px solid rgba(34, 38, 82, .15); }
.agenda-row { display: grid; grid-template-columns: 150px 220px 1fr; gap: 20px; align-items: start; padding: 22px 0; border-bottom: 1px solid rgba(34, 38, 82, .12); }
.agenda-row time { font-family: var(--display); font-size: 17px; color: var(--gold-dark); }
.agenda-row b { font-size: 15px; }
.agenda-row p { margin: 0; color: var(--muted); font-size: 14px; }

.address-card { margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(34, 38, 82, .12); border-radius: 16px; background: rgba(255, 255, 255, .6); font-size: 15px; line-height: 1.7; }
.amenity-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.amenity-chips span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }

.mission-demo--map .mission-demo__body { display: block; min-height: 600px; }
.mission-demo--map iframe { display: block; width: 100%; height: 100%; min-height: 600px; border: 0; }

.date-picker { display: flex; flex-wrap: wrap; gap: 16px; margin: 36px 0 0; }
.date-card { flex: 1 1 220px; padding: 18px 22px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 16px; background: rgba(255, 255, 255, .04); }
.date-card__tag { display: inline-block; padding: 4px 11px; border-radius: 999px; background: var(--gold); color: var(--navy-deep); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.date-card__day { margin: 12px 0 0; color: var(--gold-bright); font-family: var(--display); font-size: clamp(20px, 2.6vw, 26px); line-height: 1.15; }
.date-card__time { margin: 8px 0 0; color: rgba(250, 248, 242, .6); font-size: 13px; }
.section-light .date-card, .final-cta .date-card { background: rgba(34, 38, 82, .04); border-color: rgba(34, 38, 82, .12); }
.section-light .date-card__day, .final-cta .date-card__day { color: var(--gold-dark); }
.section-light .date-card__time, .final-cta .date-card__time { color: var(--muted); }

.pain-card { transition: transform .35s ease, box-shadow .35s ease; }
.pain-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(10, 14, 32, .12); }
.pain-card__icon { animation: painIconFloat 3.6s ease-in-out infinite; }
.pain-card:nth-child(1) .pain-card__icon { animation-delay: 0s; }
.pain-card:nth-child(2) .pain-card__icon { animation-delay: .2s; }
.pain-card:nth-child(3) .pain-card__icon { animation-delay: .4s; }
.pain-card:nth-child(4) .pain-card__icon { animation-delay: .6s; }
.pain-card:nth-child(5) .pain-card__icon { animation-delay: .8s; }
.pain-card:nth-child(6) .pain-card__icon { animation-delay: 1s; }
@keyframes painIconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (prefers-reduced-motion: reduce) {
  .pain-card, .pain-card:hover { transform: none; transition: none; }
  .pain-card__icon { animation: none; }
}

/* ===== Páginas legales (Aviso de privacidad / Términos y condiciones) ===== */

.legal-content { max-width: 820px; margin: 0 auto; padding-top: 24px; }
.legal-content h1 { margin: 0 0 8px; color: var(--navy-deep); font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(40px, 6vw, 64px); line-height: .98; }
.legal-content .legal-updated { margin: 0 0 48px; color: var(--muted); font-size: 14px; }
.legal-content h2 { margin: 44px 0 14px; color: var(--navy); font-family: var(--display); font-weight: 400; letter-spacing: .02em; text-transform: uppercase; font-size: clamp(20px, 2.4vw, 26px); }
.legal-content p, .legal-content li { color: var(--navy-soft); font-size: 16px; line-height: 1.7; }
.legal-content ul, .legal-content ol { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--ink); }
