@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #0b0d12;
  --color-bg-soft: #11141b;
  --color-surface: #161a22;
  --color-surface-2: #202633;
  --color-text: #f4f5f7;
  --color-text-muted: #a8aeba;
  --color-primary: #c9ff52;
  --color-accent: #9b7cff;
  --color-accent-2: #71d9ff;
  --color-ink: #12151b;
  --color-paper: #f2f1eb;
  --color-paper-2: #e6e5de;
  --color-border: rgba(255,255,255,.12);
  --color-border-dark: rgba(18,21,27,.14);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 104px;
  --text-display: clamp(3.1rem, 7.6vw, 7.8rem);
  --text-h1: clamp(2.8rem, 6vw, 5.5rem);
  --text-h2: clamp(2.2rem, 4.6vw, 4.6rem);
  --text-h3: clamp(1.35rem, 2.2vw, 2rem);
  --text-body: 1rem;
  --text-small: .84rem;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow: 0 30px 80px rgba(0,0,0,.28);
  --transition: .28s cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--color-primary); color: var(--color-ink); }

.shell { width: min(1380px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: var(--space-8) 0; position: relative; }
.kicker, .eyebrow, .footer-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
}
.kicker { color: #59606e; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11,13,18,.84);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}
.header-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; letter-spacing: -.025em; font-size: 1.08rem; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; }
.brand span { white-space: nowrap; }
.main-nav { display: flex; align-items: center; }
.nav-panel { display: flex; align-items: center; gap: 8px; }
.nav-panel a { text-decoration: none; color: #c9ced6; padding: 10px 14px; border-radius: 999px; font-size: .93rem; transition: var(--transition); }
.nav-panel a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-panel .nav-cta { color: var(--color-ink); background: var(--color-primary); font-weight: 700; padding-inline: 18px; }
.nav-panel .nav-cta:hover { background: #daff84; color: var(--color-ink); transform: translateY(-1px); }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--color-border); background: transparent; border-radius: 50%; cursor: pointer; }
.nav-toggle span { width: 18px; height: 1px; background: #fff; position: absolute; transition: var(--transition); }
.nav-toggle span:first-child { transform: translateY(-4px); }
.nav-toggle span:last-child { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: 78px 0 74px; background:
  radial-gradient(circle at 17% 20%, rgba(155,124,255,.17), transparent 30%),
  radial-gradient(circle at 89% 22%, rgba(201,255,82,.12), transparent 26%),
  linear-gradient(180deg, #0c0f15, #0a0c11); }
.hero::after { content:""; position:absolute; inset:auto -10% -42% 36%; height: 420px; background: radial-gradient(ellipse, rgba(113,217,255,.12), transparent 65%); filter: blur(22px); pointer-events:none; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #bac0ca; margin-bottom: 26px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 0 6px rgba(201,255,82,.10); animation: pulse 2s infinite; }
.hero h1 { margin: 0; max-width: 890px; font-size: var(--text-display); line-height: .92; letter-spacing: -.067em; font-weight: 600; }
.hero h1 em { font-family: "Newsreader", serif; font-weight: 500; color: var(--color-primary); }
.hero-lead { max-width: 720px; margin: 30px 0 34px; color: #b9c0ca; font-size: clamp(1.03rem, 1.6vw, 1.22rem); line-height: 1.62; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; padding: 12px 20px; text-decoration: none; cursor: pointer; transition: var(--transition); font-weight: 700; }
.btn-primary { background: var(--color-primary); color: var(--color-ink); box-shadow: 0 12px 34px rgba(201,255,82,.14); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(201,255,82,.22); background: #d9ff82; }
.btn-ghost { border-color: rgba(255,255,255,.18); background: transparent; color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.07); }
.text-link { color: #d1d5dc; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; }
.text-link:hover { color: var(--color-primary); }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--color-border); margin-top: 48px; padding-top: 24px; max-width: 720px; }
.hero-metrics div { display: flex; flex-direction: column; gap: 2px; padding-right: 20px; }
.hero-metrics div + div { border-left: 1px solid var(--color-border); padding-left: 22px; }
.hero-metrics strong { font-family: "Newsreader", serif; color: var(--color-primary); font-size: 1.8rem; font-weight: 500; }
.hero-metrics span { color: #8f97a3; font-size: .82rem; }
.hero-stage { position: relative; min-height: 670px; display: flex; align-items: center; justify-content: center; }
.screen-frame { position: relative; width: min(100%, 620px); aspect-ratio: .87; border-radius: var(--radius-xl); overflow: hidden; background: var(--color-surface); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12); transform: rotate(1.2deg); }
.screen-frame::before { content:""; position:absolute; inset:12px; border:1px solid rgba(255,255,255,.15); border-radius: 38px; z-index:3; pointer-events:none; }
.screen-frame img { width: 100%; height: 100%; object-fit: cover; }
.screen-shade { position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,8,12,.08), rgba(6,8,12,.2) 44%, rgba(6,8,12,.86)); }
.screen-topline { position:absolute; z-index:4; left:34px; right:34px; top:32px; display:flex; justify-content:space-between; font-size:.7rem; letter-spacing:.12em; color:rgba(255,255,255,.75); }
.playhead-orbit { position:absolute; z-index:4; left:50%; top:43%; width:116px; height:116px; border:1px solid rgba(255,255,255,.45); border-radius:50%; transform:translate(-50%,-50%); display:grid; place-items:center; backdrop-filter: blur(10px); background:rgba(6,8,12,.14); box-shadow:0 0 0 18px rgba(255,255,255,.03); }
.playhead-orbit::after { content:""; position:absolute; width:8px; height:8px; border-radius:50%; background:var(--color-primary); top:-4px; left:calc(50% - 4px); box-shadow:0 0 18px var(--color-primary); }
.play-triangle { width:0; height:0; border-top:13px solid transparent; border-bottom:13px solid transparent; border-left:21px solid #fff; margin-left:6px; }
.screen-caption { position:absolute; z-index:4; left:36px; right:36px; bottom:36px; display:flex; flex-direction:column; gap:9px; }
.screen-caption strong { font-size:clamp(1.7rem,3vw,2.7rem); line-height:1.04; max-width:420px; }
.mini-badge { width:max-content; background:var(--color-primary); color:var(--color-ink); border-radius:999px; padding:5px 9px; font-size:.64rem; font-weight:800; letter-spacing:.12em; }
.floating-card { position:absolute; z-index:5; padding:14px 16px; border-radius:16px; background:rgba(25,29,38,.86); border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(16px); box-shadow:0 12px 34px rgba(0,0,0,.22); min-width:174px; }
.floating-card span { display:block; color:#8f97a3; font-size:.7rem; margin-bottom:3px; }
.floating-card strong { font-size:.9rem; }
.fc-one { left:-20px; top:16%; transform:rotate(-4deg); }
.fc-two { right:-28px; bottom:17%; transform:rotate(3deg); }

.marquee { overflow:hidden; border-top:1px solid var(--color-border); border-bottom:1px solid var(--color-border); background:#0e1117; }
.marquee-track { display:flex; width:max-content; animation:marquee 42s linear infinite; will-change:transform; }
.marquee-set { display:flex; flex-shrink:0; align-items:center; gap:26px; padding:15px 26px 15px 0; white-space:nowrap; }
.marquee-set span { font-size:.78rem; font-weight:700; letter-spacing:.14em; color:#d5d9df; }
.marquee-set b { color:var(--color-primary); font-size:.65rem; font-weight:400; }
@keyframes marquee { from { transform:translate3d(0,0,0); } to { transform:translate3d(-50%,0,0); } }
@keyframes pulse { 0%,100% { box-shadow:0 0 0 6px rgba(201,255,82,.10);} 50% { box-shadow:0 0 0 12px rgba(201,255,82,.02);} }

.editorial { background:var(--color-paper); color:var(--color-ink); }
.editorial-grid { display:grid; grid-template-columns:170px minmax(0,1fr); gap:clamp(34px,5vw,84px); }
.section-rail { border-right:1px solid var(--color-border-dark); padding-right:28px; display:flex; flex-direction:column; align-items:flex-start; gap:20px; }
.section-rail span { font-size:.74rem; text-transform:uppercase; letter-spacing:.14em; font-weight:700; }
.section-rail i { width:1px; height:130px; background:linear-gradient(var(--color-accent),transparent); margin-left:3px; position:relative; }
.section-rail i::before { content:""; position:absolute; width:7px; height:7px; background:var(--color-accent); border-radius:50%; left:-3px; top:0; }
.section-rail small { color:#6b7078; font-size:.8rem; max-width:100px; }
.section-heading h2, .section-head h2 { margin:12px 0 0; font-size:var(--text-h2); line-height:.98; letter-spacing:-.055em; font-weight:600; }
.editorial-main .kicker, .profiles .kicker, .flow .kicker, .faq-section .kicker, .thanks-main .kicker { color:#6d7380; }
.editorial-split { display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(28px,4vw,62px); align-items:stretch; margin-top:54px; }
.editorial-image { position:relative; min-height:520px; border-radius:var(--radius-lg); overflow:hidden; background:#d5d4cc; }
.editorial-image img { width:100%; height:100%; object-fit:cover; }
.image-index { position:absolute; left:18px; bottom:18px; background:rgba(17,20,27,.82); color:#fff; border-radius:999px; padding:7px 10px; font-size:.65rem; letter-spacing:.12em; }
.editorial-copy { display:flex; flex-direction:column; justify-content:center; }
.editorial-copy > p { color:#454a53; font-family:"Newsreader",serif; font-size:clamp(1.1rem,1.8vw,1.34rem); line-height:1.55; margin:0 0 22px; }
.signal-card { margin-top:18px; padding:22px; border-radius:20px; background:#141821; color:#fff; display:grid; grid-template-columns:auto 1fr; gap:18px; align-items:start; }
.signal-number { font-family:"Newsreader",serif; color:var(--color-primary); font-size:1.7rem; line-height:1; }
.signal-card strong { display:block; margin-bottom:4px; }
.signal-card p { color:#aab0ba; margin:0; font-size:.92rem; }

.profiles { background:#10131a; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:50px; margin-bottom:48px; }
.section-head.compact > div { max-width:820px; }
.section-head > p { max-width:430px; margin:0; color:#9da4af; }
.profile-grid { display:grid; grid-template-columns:1.35fr .85fr .85fr; grid-template-rows:auto auto; gap:18px; }
.profile-card { min-height:280px; position:relative; overflow:hidden; background:#191d26; border:1px solid var(--color-border); border-radius:26px; padding:26px; transition:var(--transition); }
.profile-card:hover { transform:translateY(-4px); border-color:rgba(201,255,82,.34); box-shadow:0 22px 54px rgba(0,0,0,.2); }
.profile-card--feature { grid-row:span 2; min-height:578px; display:flex; flex-direction:column; }
.profile-card--accent { background:linear-gradient(155deg,#aa8cff,#7e5bea); color:#11131a; }
.profile-top { display:flex; align-items:center; justify-content:space-between; }
.profile-code { font-size:.7rem; letter-spacing:.14em; color:#8f97a3; }
.profile-card--accent .profile-code { color:rgba(18,21,27,.7); }
.profile-top i { font-size:1.5rem; }
.profile-card h3 { font-size:var(--text-h3); margin:34px 0 10px; letter-spacing:-.03em; }
.profile-card p { color:#aeb4be; margin:0; }
.profile-card--accent p { color:rgba(18,21,27,.78); }
.chips { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 26px; }
.chips span { border:1px solid var(--color-border); border-radius:999px; padding:7px 10px; font-size:.72rem; color:#c5cad2; }
.profile-visual { margin-top:auto; border-radius:20px; overflow:hidden; min-height:230px; background:#11151c; }
.profile-visual img { width:100%; height:100%; min-height:230px; object-fit:cover; }
.profile-card--feature .profile-visual { min-height:320px; }
.profile-card--feature .profile-visual img { min-height:320px; }
.micro-meter { display:flex; gap:6px; align-items:flex-end; height:52px; margin:32px 0 12px; }
.micro-meter span { flex:1; border-radius:999px 999px 4px 4px; background:#343b49; }
.micro-meter span:nth-child(1){height:42%}.micro-meter span:nth-child(2){height:64%}.micro-meter span:nth-child(3){height:88%;background:var(--color-primary)}.micro-meter span:nth-child(4){height:57%}.micro-meter span:nth-child(5){height:72%}
.profile-card small { color:#838b98; }
.family-stack { display:flex; margin-top:34px; }
.family-stack span { width:64px; height:64px; border-radius:50%; display:grid; place-items:center; background:rgba(18,21,27,.88); color:#fff; font-size:.68rem; border:3px solid #aa8cff; margin-left:-10px; }
.family-stack span:first-child { margin-left:0; }
.live-widget { margin-top:32px; border-top:1px solid var(--color-border); padding-top:18px; display:grid; grid-template-columns:auto auto 1fr; align-items:center; gap:10px; }
.live-widget i { width:9px; height:9px; border-radius:50%; background:#ff6b7f; box-shadow:0 0 0 5px rgba(255,107,127,.12); }
.live-widget span { color:#ff8e9e; font-size:.7rem; font-weight:800; letter-spacing:.12em; }
.live-widget b { justify-self:end; font-size:.82rem; color:#c8cdd5; }
.flex-widget { margin-top:32px; border-top:1px solid var(--color-border); padding-top:18px; display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
.flex-widget span { font-size:.72rem; font-weight:700; letter-spacing:.05em; color:#c8cdd5; border:1px solid var(--color-border); border-radius:999px; padding:7px 10px; }
.flex-widget i { color:var(--color-primary); font-size:.85rem; }

.planner-section { background:linear-gradient(180deg,var(--color-paper),var(--color-paper-2)); color:var(--color-ink); }
.planner-shell { display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(36px,6vw,90px); align-items:center; }
.planner-copy h2 { font-size:var(--text-h2); line-height:1; letter-spacing:-.055em; margin:12px 0 22px; }
.planner-copy > p { color:#525863; max-width:600px; font-family:"Newsreader",serif; font-size:1.18rem; }
.selector-tabs { display:flex; flex-wrap:wrap; gap:9px; margin-top:28px; }
.selector-tab { border:1px solid rgba(18,21,27,.18); background:transparent; color:#272c34; border-radius:999px; padding:10px 14px; cursor:pointer; transition:var(--transition); }
.selector-tab:hover,.selector-tab.is-active { background:var(--color-ink); color:#fff; border-color:var(--color-ink); }
.planner-console { background:#11151d; color:#fff; border-radius:32px; padding:30px; box-shadow:0 32px 74px rgba(30,35,48,.20); position:relative; overflow:hidden; }
.planner-console::after { content:""; position:absolute; width:230px; height:230px; border-radius:50%; border:1px solid rgba(201,255,82,.18); right:-84px; top:-90px; box-shadow:0 0 0 26px rgba(201,255,82,.03),0 0 0 52px rgba(201,255,82,.02); }
.console-head { display:flex; justify-content:space-between; border-bottom:1px solid var(--color-border); padding-bottom:18px; font-size:.68rem; letter-spacing:.13em; color:#858d99; }
.console-status { display:flex; align-items:center; gap:8px; color:#c6ccd5; }
.console-status i { width:7px; height:7px; border-radius:50%; background:var(--color-primary); }
.console-title { display:flex; flex-direction:column; gap:5px; margin:34px 0 12px; }
.console-title small { color:#808997; }
.console-title strong { font-size:clamp(2rem,4vw,3.5rem); line-height:1; letter-spacing:-.05em; color:var(--color-primary); max-width:90%; }
.planner-console > p { color:#aeb5c0; max-width:620px; }
.console-readout { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:28px 0 24px; }
.console-readout div { background:#1b202a; border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:15px; }
.console-readout span { display:block; color:#6f7886; font-size:.68rem; margin-bottom:8px; }
.console-readout b { font-size:.82rem; }
.console-link { display:inline-flex; align-items:center; gap:8px; color:#fff; text-decoration:none; font-weight:700; }
.console-link:hover { color:var(--color-primary); }


.packages-section { background:var(--color-paper-2); color:var(--color-ink); border-top:1px solid var(--color-border-dark); }
.packages-head .kicker { color:#727781; }
.packages-head > p { color:#555b65; }
.products-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; align-items:stretch; }
.product-card { position:relative; min-width:0; display:flex; flex-direction:column; background:#f7f6f1; border:1px solid var(--color-border-dark); border-radius:28px; padding:24px; overflow:hidden; transition:var(--transition); box-shadow:0 14px 42px rgba(21,25,33,.06); }
.product-card::after { content:""; position:absolute; width:150px; height:150px; border-radius:50%; border:1px solid rgba(18,21,27,.08); right:-72px; top:-76px; box-shadow:0 0 0 24px rgba(18,21,27,.025); pointer-events:none; }
.product-card:hover { transform:translateY(-5px); border-color:rgba(18,21,27,.28); box-shadow:0 24px 58px rgba(21,25,33,.10); }
.product-card.featured { background:#11151d; color:#fff; border-color:rgba(201,255,82,.42); box-shadow:0 26px 66px rgba(17,21,29,.18); }
.product-card.featured::after { border-color:rgba(201,255,82,.15); box-shadow:0 0 0 24px rgba(201,255,82,.025),0 0 0 48px rgba(201,255,82,.015); }
.product-badge { position:absolute; top:0; right:24px; z-index:2; background:var(--color-primary); color:var(--color-ink); padding:8px 12px; border-radius:0 0 12px 12px; font-size:.67rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.product-header { position:relative; z-index:1; display:flex; flex-direction:column; gap:24px; padding-bottom:22px; border-bottom:1px solid var(--color-border-dark); }
.featured .product-header { border-bottom-color:var(--color-border); padding-top:12px; }
.product-code { display:block; margin-bottom:10px; color:#7a8089; font-size:.66rem; font-weight:700; letter-spacing:.13em; }
.featured .product-code { color:#7f8896; }
.product-header h3 { margin:0; font-size:clamp(1.45rem,2vw,1.9rem); line-height:1.02; letter-spacing:-.04em; }
.product-price { font-family:"Newsreader",serif; font-size:clamp(2rem,3vw,2.65rem); line-height:.9; letter-spacing:-.045em; white-space:nowrap; }
.product-price span { display:inline-block; margin-left:5px; color:#7b818b; font-family:"Bricolage Grotesque",sans-serif; font-size:.72rem; font-weight:600; letter-spacing:0; }
.featured .product-price { color:var(--color-primary); }
.featured .product-price span { color:#929aa7; }
.product-specs { flex:1; padding:24px 0; }
.product-specs ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.product-specs li { display:grid; grid-template-columns:20px 1fr; gap:10px; align-items:start; color:#4f555f; font-size:.88rem; line-height:1.42; }
.product-specs li i { margin-top:2px; color:#5f6d35; font-size:1rem; }
.product-specs li.is-muted { color:#8a8f97; }
.product-specs li.is-muted i { color:#9aa0a8; }
.featured .product-specs li { color:#c3c9d2; }
.featured .product-specs li i { color:var(--color-primary); }
.product-card .btn { width:100%; position:relative; z-index:1; margin-top:auto; }
.btn-outline { border-color:rgba(18,21,27,.22); background:transparent; color:var(--color-ink); }
.btn-outline:hover { transform:translateY(-2px); background:var(--color-ink); color:#fff; border-color:var(--color-ink); }
.featured .btn-primary { box-shadow:none; }
.packages-note { max-width:960px; margin:26px 0 0; color:#666c75; font-family:"Newsreader",serif; font-size:.94rem; line-height:1.6; }

.flow { background:#0d1016; }
.flow-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(40px,7vw,110px); }
.flow-intro h2 { font-size:var(--text-h2); line-height:1; letter-spacing:-.055em; margin:12px 0 20px; }
.flow-intro > p { color:#9fa6b1; max-width:600px; }
.flow-image { margin-top:34px; aspect-ratio:1.35; border-radius:28px; overflow:hidden; background:var(--color-surface); }
.flow-image img { width:100%; height:100%; object-fit:cover; }
.flow-timeline { border-left:1px solid var(--color-border); }
.flow-timeline article { display:grid; grid-template-columns:86px 1fr; gap:26px; padding:4px 0 42px 30px; position:relative; }
.flow-timeline article::before { content:""; position:absolute; left:-5px; top:8px; width:9px; height:9px; border-radius:50%; background:var(--color-primary); box-shadow:0 0 0 7px #0d1016; }
.flow-timeline article::after { content:""; position:absolute; left:-1px; top:17px; width:1px; height:calc(100% - 8px); background:linear-gradient(var(--color-primary),transparent); opacity:.32; }
.flow-timeline article:last-child::after { display:none; }
.flow-no { font-family:"Newsreader",serif; font-size:2.1rem; color:var(--color-primary); line-height:1; }
.flow-timeline h3 { margin:0 0 9px; font-size:1.35rem; }
.flow-timeline p { margin:0; color:#9da4af; }

.insight-section { background:var(--color-primary); color:var(--color-ink); }
.insight-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:0; border-radius:34px; overflow:hidden; background:#d8ff7b; border:1px solid rgba(18,21,27,.16); }
.insight-media { min-height:620px; background:#a3c44d; }
.insight-media img { width:100%; height:100%; object-fit:cover; }
.insight-copy { padding:clamp(34px,5vw,74px); }
.insight-copy .kicker { color:#4f5a39; }
.insight-copy h2 { font-size:var(--text-h2); line-height:.97; letter-spacing:-.055em; margin:12px 0 24px; }
.insight-copy > p { color:#3f4730; font-family:"Newsreader",serif; font-size:1.18rem; }
.insight-rows { margin-top:34px; border-top:1px solid rgba(18,21,27,.16); }
.insight-rows div { display:grid; grid-template-columns:52px 130px 1fr; gap:16px; padding:18px 0; border-bottom:1px solid rgba(18,21,27,.16); align-items:start; }
.insight-rows span { font-family:"Newsreader",serif; }
.insight-rows p { margin:0; color:#424a34; }

.inquiry { background:#efeee7; color:var(--color-ink); }
.inquiry-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:clamp(38px,6vw,90px); align-items:start; }
.inquiry-copy h2 { font-size:var(--text-h2); line-height:1; letter-spacing:-.055em; margin:12px 0 22px; }
.inquiry-copy > p { color:#555b64; font-family:"Newsreader",serif; font-size:1.15rem; }
.contact-slab { margin-top:34px; border-top:1px solid var(--color-border-dark); padding-top:22px; }
.contact-slab span { display:block; font-size:.72rem; letter-spacing:.13em; text-transform:uppercase; color:#777d86; margin-bottom:10px; }
.contact-slab p { margin:3px 0; font-size:.9rem; }
.lead-form { background:#141820; color:#fff; border-radius:30px; padding:30px; box-shadow:var(--shadow); }
.form-head { display:flex; justify-content:space-between; padding-bottom:18px; border-bottom:1px solid var(--color-border); color:#818996; font-size:.68rem; letter-spacing:.13em; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lead-form label { display:flex; flex-direction:column; gap:8px; font-size:.82rem; color:#c7ccd4; margin-top:18px; }
.lead-form input,.lead-form select,.lead-form textarea { width:100%; color:#fff; background:#1d222d; border:1px solid rgba(255,255,255,.10); border-radius:14px; padding:13px 14px; outline:none; transition:var(--transition); }
.lead-form textarea { resize:vertical; }
.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus { border-color:var(--color-primary); box-shadow:0 0 0 3px rgba(201,255,82,.08); }
.lead-form input::placeholder,.lead-form textarea::placeholder { color:#717a87; }
.lead-form select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238f97a3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; background-size:12px 8px; padding-right:40px; }
.check-row { flex-direction:row !important; align-items:flex-start; gap:10px !important; color:#959daa !important; line-height:1.45; }
.check-row input { width:18px; height:18px; flex:0 0 auto; margin:2px 0 0; accent-color:var(--color-primary); }
.check-row a { color:#fff; }
.btn-wide { width:100%; margin-top:22px; }

.faq-section { background:#10131a; }
.faq-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(34px,6vw,90px); }
.faq-list details { border-top:1px solid var(--color-border); }
.faq-list details:last-child { border-bottom:1px solid var(--color-border); }
.faq-list summary { list-style:none; cursor:pointer; min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:20px; font-weight:600; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary i { transition:var(--transition); }
.faq-list details[open] summary i { transform:rotate(45deg); color:var(--color-primary); }
.faq-list details p { margin:-2px 0 24px; color:#9da5b0; max-width:760px; }

.site-footer { background:#080a0f; border-top:1px solid var(--color-border); }
.footer-top { display:grid; grid-template-columns:1.3fr .85fr .55fr; gap:clamp(32px,5vw,76px); padding:64px 0 48px; }
.brand-footer { margin-bottom:20px; }
.footer-disclaimer { color:#8f97a3; max-width:680px; margin:0; font-size:.9rem; }
.footer-data,.footer-links { display:flex; flex-direction:column; align-items:flex-start; }
.footer-label { color:#626a77; margin-bottom:14px; }
.footer-data p { margin:2px 0; color:#b8bec8; font-size:.85rem; }
.footer-links a { text-decoration:none; color:#b8bec8; margin:3px 0; font-size:.86rem; transition:var(--transition); }
.footer-links a:hover { color:var(--color-primary); transform:translateX(2px); }
.footer-bottom { min-height:74px; border-top:1px solid var(--color-border); display:flex; justify-content:space-between; align-items:center; gap:20px; color:#68717f; font-size:.74rem; letter-spacing:.08em; }
.footer-playhead { display:flex; align-items:center; gap:9px; }
.footer-playhead i { width:38px; height:1px; background:linear-gradient(90deg,var(--color-primary),transparent); position:relative; }
.footer-playhead i::before { content:""; position:absolute; left:0; top:-3px; width:7px; height:7px; border-radius:50%; background:var(--color-primary); }

.cookie-banner { position:fixed; left:20px; right:20px; bottom:20px; z-index:120; max-width:1120px; margin:0 auto; display:grid; grid-template-columns:1fr auto; align-items:center; gap:24px; background:rgba(18,22,30,.96); color:#fff; border:1px solid rgba(255,255,255,.15); border-radius:22px; padding:20px; box-shadow:0 25px 80px rgba(0,0,0,.36); backdrop-filter:blur(18px); transform:translateY(calc(100% + 40px)); opacity:0; pointer-events:none; transition:.35s ease; }
.cookie-banner.is-visible { transform:translateY(0); opacity:1; pointer-events:auto; }
.cookie-copy strong { display:block; margin-bottom:3px; }
.cookie-copy p { margin:0; color:#9da5b1; font-size:.85rem; }
.cookie-copy a { color:#fff; }
.cookie-actions { display:flex; gap:8px; }

.legal-main { background:var(--color-paper); color:var(--color-ink); }
.legal-hero { background:#0d1016; color:#fff; padding:86px 0 78px; position:relative; overflow:hidden; }
.legal-hero::after { content:""; position:absolute; width:360px; height:360px; border-radius:50%; border:1px solid rgba(201,255,82,.14); right:8%; top:-160px; box-shadow:0 0 0 38px rgba(201,255,82,.025),0 0 0 76px rgba(201,255,82,.015); }
.legal-hero-inner { position:relative; z-index:2; }
.legal-hero h1 { margin:10px 0 16px; max-width:900px; font-size:var(--text-h1); line-height:.98; letter-spacing:-.055em; }
.legal-hero p { max-width:760px; color:#aab1bb; font-family:"Newsreader",serif; font-size:1.18rem; margin:0; }
.legal-section { padding-top:72px; }
.legal-layout { display:grid; grid-template-columns:220px minmax(0,850px); gap:clamp(42px,8vw,120px); justify-content:center; align-items:start; }
.legal-aside { position:sticky; top:110px; color:#737983; font-size:.76rem; }
.legal-aside > span { font-size:.68rem; letter-spacing:.14em; font-weight:700; }
.legal-mark { width:110px; height:110px; border:1px solid rgba(18,21,27,.14); border-radius:50%; margin:22px 0; display:grid; place-items:center; }
.legal-mark i { width:56px; height:1px; background:#171b22; position:relative; }
.legal-mark i::before { content:""; position:absolute; width:9px; height:9px; border-radius:50%; background:var(--color-accent); left:0; top:-4px; }
.legal-copy h2 { font-size:clamp(1.6rem,2.8vw,2.25rem); letter-spacing:-.035em; line-height:1.12; margin:48px 0 14px; }
.legal-copy h2:first-child { margin-top:0; }
.legal-copy { word-break: break-word; }
.legal-copy p { color:#40454e; font-family:"Newsreader",serif; font-size:1.06rem; line-height:1.72; margin:0 0 18px; }
.legal-copy strong { font-family:"Bricolage Grotesque",sans-serif; color:#1e232b; }

.thanks-hero .btn { margin-top:28px; }
.thanks-hero strong { color:#fff; }
.thanks-steps,.thanks-info { background:var(--color-paper); color:var(--color-ink); }
.thanks-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.thanks-grid article { background:#e4e3db; border:1px solid var(--color-border-dark); border-radius:24px; padding:26px; }
.thanks-grid article > span { font-family:"Newsreader",serif; color:#7b61d6; font-size:2rem; }
.thanks-grid h3 { margin:26px 0 9px; font-size:1.3rem; }
.thanks-grid p { margin:0; color:#555b65; }
.thanks-info { padding-top:0; }
.thanks-info-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; padding-top:58px; border-top:1px solid var(--color-border-dark); }
.thanks-info h2 { font-size:var(--text-h2); line-height:1; letter-spacing:-.05em; margin:12px 0 0; }
.thanks-notes p { color:#4f5560; font-family:"Newsreader",serif; font-size:1.08rem; margin:0 0 18px; }
.thanks-notes strong { font-family:"Bricolage Grotesque",sans-serif; }
.legal-contact-band { background:var(--color-primary); color:var(--color-ink); padding:38px 0; }
.legal-contact-band .shell { display:grid; grid-template-columns:160px 1fr 1.2fr; gap:24px; align-items:center; }
.legal-contact-band span { font-size:.72rem; text-transform:uppercase; letter-spacing:.13em; }
.legal-contact-band p { margin:0; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity:1; transform:none; }

:focus-visible { outline:3px solid var(--color-accent-2); outline-offset:3px; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:900px; }
  .hero-stage { min-height:auto; width:min(760px,100%); margin:0 auto; }
  .screen-frame { aspect-ratio:1.15; width:100%; }
  .profile-grid { grid-template-columns:1.2fr .8fr; }
  .profile-card--feature { grid-row:span 2; }
  .profile-card--accent { grid-column:2; }
  .products-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .planner-shell,.flow-grid,.insight-grid,.inquiry-grid,.faq-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1.2fr .8fr; }
  .footer-links { grid-column:1 / -1; flex-direction:row; flex-wrap:wrap; gap:10px 20px; }
  .footer-links .footer-label { width:100%; }
}

@media (max-width: 900px) {
  .section { padding:78px 0; }
  .nav-toggle { display:flex; position:relative; }
  .nav-panel { position:fixed; left:20px; right:20px; top:86px; background:#151922; border:1px solid var(--color-border); border-radius:24px; padding:14px; display:flex; flex-direction:column; align-items:stretch; box-shadow:var(--shadow); transform:translateY(-12px); opacity:0; pointer-events:none; transition:var(--transition); }
  .nav-panel.is-open { transform:none; opacity:1; pointer-events:auto; }
  .nav-panel a { padding:13px 14px; }
  .hero { padding-top:58px; }
  .hero-stage { margin-top:10px; }
  .screen-frame { aspect-ratio:.95; }
  .editorial-grid { grid-template-columns:1fr; }
  .section-rail { display:none; }
  .editorial-split { grid-template-columns:1fr; }
  .editorial-image { min-height:420px; }
  .section-head { align-items:flex-start; flex-direction:column; gap:18px; }
  .profile-grid { grid-template-columns:1fr 1fr; }
  .profile-card--feature { grid-row:auto; grid-column:1 / -1; min-height:520px; }
  .profile-card--accent { grid-column:auto; }
  .planner-shell,.flow-grid,.insight-grid,.inquiry-grid,.faq-grid,.thanks-info-grid { grid-template-columns:1fr; }
  .insight-media { min-height:440px; }
  .inquiry-copy { max-width:760px; }
  .legal-layout { grid-template-columns:1fr; }
  .legal-aside { position:static; display:flex; align-items:center; justify-content:space-between; gap:20px; border-bottom:1px solid var(--color-border-dark); padding-bottom:22px; }
  .legal-mark { display:none; }
  .legal-aside p { margin:0; }
  .thanks-grid { grid-template-columns:1fr; }
  .legal-contact-band .shell { grid-template-columns:1fr; gap:6px; }
}

@media (max-width: 680px) {
  .shell { width:min(100% - 28px, 1380px); }
  .header-row { min-height:68px; }
  .brand img { width:38px; height:38px; }
  .hero h1 { font-size:clamp(3rem,15vw,5.2rem); }
  .hero-lead { margin-top:22px; }
  .hero-actions { align-items:flex-start; flex-direction:column; }
  .hero-metrics { grid-template-columns:1fr; gap:12px; }
  .hero-metrics div { flex-direction:row; align-items:center; gap:12px; padding:0 0 12px; }
  .hero-metrics div + div { border-left:0; border-top:1px solid var(--color-border); padding:12px 0; }
  .hero-metrics strong { min-width:42px; }
  .screen-frame { aspect-ratio:.78; border-radius:30px; }
  .screen-frame::before { border-radius:22px; }
  .screen-topline { left:24px; right:24px; top:24px; }
  .screen-caption { left:24px; right:24px; bottom:26px; }
  .playhead-orbit { width:92px; height:92px; }
  .floating-card { display:none; }
  .editorial-image { min-height:340px; }
  .profile-grid { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:1fr; }
  .profile-card--feature,.profile-card--accent { grid-column:auto; min-height:unset; }
  .profile-card--feature .profile-visual { margin-top:24px; min-height:280px; }
  .profile-card--feature .profile-visual img { min-height:280px; }
  .console-readout { grid-template-columns:1fr; }
  .flow-timeline article { grid-template-columns:54px 1fr; gap:14px; padding-left:22px; }
  .insight-media { min-height:320px; }
  .insight-rows div { grid-template-columns:42px 1fr; }
  .insight-rows p { grid-column:2; }
  .field-row { grid-template-columns:1fr; gap:0; }
  .lead-form { padding:22px; border-radius:22px; }
  .footer-top { grid-template-columns:1fr; }
  .footer-links { grid-column:auto; flex-direction:column; gap:3px; }
  .footer-bottom { align-items:flex-start; flex-direction:column; justify-content:center; padding:20px 0; }
  .cookie-banner { grid-template-columns:1fr; left:12px; right:12px; bottom:12px; border-radius:18px; padding:16px; }
  .cookie-actions { flex-direction:column; }
  .cookie-actions .btn { width:100%; }
  .legal-hero { padding:64px 0 56px; }
  .legal-hero h1 { word-break: break-all; }
  .legal-section { padding-top:52px; }
}

@media (max-width: 480px) {
  .shell { width:min(100% - 24px, 1380px); }
  .section { padding:56px 0; }
  .hero { padding:48px 0 54px; }
  .hero-lead { font-size:1rem; }
  .lead-form { padding:18px; border-radius:18px; }
  .planner-console { padding:22px; }
  .footer-top { padding:48px 0 32px; }
  .cookie-banner { padding:14px; }
}

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