:root {
  --bg: #07110d;
  --bg-soft: #0b1712;
  --surface: #101d17;
  --surface-2: #15251d;
  --ink: #edf7f1;
  --muted: #98aa9f;
  --green: #22c55e;
  --green-bright: #34e477;
  --green-deep: #12843d;
  --line: rgba(233, 255, 241, .11);
  --paper: #f1f5f2;
  --paper-2: #e5ebe7;
  --dark-ink: #0b1811;
  --dark-muted: #56655b;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .34);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--green);
  color: #031008;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(7, 17, 13, .86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .12em; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }
.brand span { font-size: 1rem; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a { color: #b8c6bd; font-size: .89rem; font-weight: 650; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #041109;
  font-weight: 850;
  box-shadow: 0 8px 28px rgba(34, 197, 94, .2);
}
.button-small { min-height: 42px; padding: 0 20px; font-size: .85rem; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding-top: 76px;
  background:
    radial-gradient(circle at 77% 37%, rgba(22, 163, 74, .18), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(34, 197, 94, .07), transparent 22%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 86%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 86%);
}
.hero-noise {
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(34,197,94,.13);
  border-radius: 50%;
  right: -180px;
  top: 48px;
  box-shadow: 0 0 0 90px rgba(34,197,94,.025), 0 0 0 180px rgba(34,197,94,.015);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 72px;
  min-height: 720px;
  padding-block: 76px 90px;
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--green-bright);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 26px; height: 1px; background: var(--green); }
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.6rem, 6.6vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 780;
}
.hero h1 em { display: block; color: var(--green-bright); font-style: normal; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: #adbbb2; font-size: 1.06rem; line-height: 1.78; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.store-button {
  min-width: 190px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 15px;
  background: #f3f8f5;
  color: #0a140e;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.play-mark { color: var(--green-deep); font-size: 1.55rem; }
.store-button > span:last-child { display: flex; flex-direction: column; line-height: 1.08; }
.store-button small { font-size: .58rem; font-weight: 750; letter-spacing: .12em; }
.store-button strong { margin-top: 3px; font-size: 1.15rem; letter-spacing: -.025em; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 760; font-size: .91rem; }
.text-link span { color: var(--green); font-size: 1.2rem; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 2px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 19px; margin: 28px 0 0; padding: 0; list-style: none; color: #85988c; font-size: .75rem; }
.hero-trust span { color: var(--green); margin-right: 5px; font-weight: 900; }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(34,197,94,.16); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: rotate 28s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.phone {
  position: relative;
  z-index: 3;
  width: 290px;
  height: 598px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 43px;
  background: #050806;
  box-shadow: 0 55px 120px rgba(0,0,0,.55), 0 0 65px rgba(34,197,94,.11);
  transform: rotate(2.8deg);
}
.phone::after { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(255,255,255,.08); border-radius: 39px; pointer-events: none; }
.phone-speaker { position: absolute; z-index: 4; left: 50%; top: 16px; width: 78px; height: 20px; margin-left: -39px; border-radius: 20px; background: #050806; }
.phone-screen { height: 100%; overflow: hidden; border-radius: 35px; background: #0d1117; padding: 12px 15px 0; }
.app-topline { display: flex; justify-content: space-between; padding: 0 5px; color: #dce8e1; font-size: 7px; font-weight: 800; }
.app-heading { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; }
.app-heading > span:first-child { display: flex; flex-direction: column; line-height: 1.2; }
.app-heading small { color: #5adc88; font-size: 6px; letter-spacing: .18em; }
.app-heading strong { font-size: 19px; }
.avatar { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #2c523b; border-radius: 50%; color: #42dc79; font-size: 10px; font-weight: 800; }
.ticker-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 16px; }
.ticker-row > span { display: flex; flex-direction: column; padding: 9px 7px; border: 1px solid #25332b; border-radius: 10px; background: #151d19; }
.ticker-row small { color: #839087; font-size: 5px; letter-spacing: .08em; }
.ticker-row strong { font-size: 8px; margin-top: 3px; }
.ticker-row b { color: #41d675; font-size: 6px; }
.market-title { display: flex; justify-content: space-between; align-items: center; margin: 20px 1px 8px; }
.market-title strong { font-size: 11px; }
.market-title span { color: #55d581; font-size: 7px; }
.stock-row { display: grid; grid-template-columns: 30px 1fr 48px 55px; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.stock-logo { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: #166534; color: white; font-size: 10px; font-weight: 900; }
.stock-logo.purple { background: #6d28d9; }
.stock-logo.blue { background: #075985; }
.stock-name, .stock-price { display: flex; flex-direction: column; }
.stock-name strong, .stock-price strong { font-size: 8px; }
.stock-name small, .stock-price small { color: #718078; font-size: 6px; }
.stock-price { text-align: right; }
.stock-price .up { color: #40d576; }
.stock-price .down { color: #f87171; }
.spark { height: 18px; position: relative; }
.spark::before { content: ""; position: absolute; inset: 5px 0; border-top: 2px solid #31ce69; transform: skewY(-14deg); box-shadow: 9px -2px 0 -1px #31ce69, 22px 2px 0 -1px #31ce69, 34px -5px 0 -1px #31ce69; }
.spark-up-two::before { transform: skewY(-7deg); }
.spark-down::before { border-color: #ef5555; transform: skewY(12deg); box-shadow: 9px 2px 0 -1px #ef5555, 22px -1px 0 -1px #ef5555, 34px 4px 0 -1px #ef5555; }
.app-panel { display: flex; justify-content: space-between; align-items: center; margin-top: 17px; padding: 13px; border: 1px solid #214630; border-radius: 13px; background: #102319; }
.app-panel > span:first-child { display: flex; flex-direction: column; }
.app-panel small { color: #77a185; font-size: 6px; letter-spacing: .12em; }
.app-panel strong { color: #3ad774; font-size: 10px; }
.gauge { position: relative; width: 69px; height: 6px; overflow: hidden; border-radius: 8px; background: #203329; }
.gauge i { display: block; width: 74%; height: 100%; background: #32d46e; border-radius: inherit; }
.app-nav { position: absolute; z-index: 4; left: 9px; right: 9px; bottom: 9px; height: 58px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; border-top: 1px solid rgba(255,255,255,.06); background: #111812; }
.app-nav span { display: flex; flex-direction: column; align-items: center; color: #68736d; font-size: 12px; }
.app-nav small { font-size: 6px; margin-top: 2px; }
.app-nav .active { color: #32d66f; }
.float-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; min-width: 180px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(18, 32, 24, .91); box-shadow: 0 18px 50px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
.float-card > span:last-child { display: flex; flex-direction: column; }
.float-card small { color: #8ca097; font-size: .58rem; }
.float-card strong { font-size: .77rem; }
.float-card-top { right: -18px; top: 105px; }
.float-card-bottom { left: -18px; bottom: 95px; }
.float-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: rgba(34,197,94,.15); color: var(--green-bright); font-weight: 900; }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(34,197,94,.12); }
.market-strip { position: relative; z-index: 3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.strip-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #82938a; font-size: .66rem; font-weight: 820; letter-spacing: .14em; }
.strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

.section { padding: 112px 0; }
.intro { background: var(--paper); color: var(--dark-ink); padding-bottom: 60px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 90px; }
.section-kicker { color: var(--green-deep); }
.split-heading h2, .center-heading h2, .portfolio-copy h2, .principles-title h2, .faq-heading h2, .cta-box h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.split-heading > p { margin: 0 0 4px; color: var(--dark-muted); font-size: 1.04rem; line-height: 1.8; }
.feature-stage { background: var(--paper); color: var(--dark-ink); padding-top: 16px; }
.bento-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; }
.feature-card { position: relative; overflow: hidden; border: 1px solid rgba(11,24,17,.09); border-radius: var(--radius-md); background: #fff; box-shadow: 0 16px 45px rgba(24,49,35,.06); }
.feature-card h3 { margin: 8px 0 12px; font-size: 1.72rem; line-height: 1.18; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--dark-muted); }
.feature-label { color: var(--green-deep) !important; font-size: .68rem; font-weight: 900; letter-spacing: .16em; }
.feature-number { position: absolute; top: 18px; right: 20px; color: #cdd7d1; font-size: .72rem; font-weight: 800; }
.feature-large { grid-row: span 2; min-height: 640px; padding: 50px; background: #0d1913; color: var(--ink); }
.feature-large .feature-copy { max-width: 450px; }
.feature-large h3 { max-width: 410px; font-size: 2.65rem; }
.feature-large p { color: #9fb0a6; }
.feature-large .feature-number { color: #506058; }
.check-list { display: grid; gap: 11px; margin: 27px 0 0; padding: 0; list-style: none; color: #c7d4cc; font-size: .88rem; }
.check-list li::before { content: "✓"; color: var(--green); margin-right: 10px; font-weight: 900; }
.mini-board { position: absolute; left: 50px; right: 50px; bottom: 45px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: #111f18; box-shadow: 0 25px 55px rgba(0,0,0,.3); }
.mini-board > div { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 16px; align-items: center; padding: 14px 17px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .8rem; }
.mini-board > div:last-child { border: 0; }
.mini-board .board-head { color: #728279; font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; }
.mini-board b { color: #43d979; text-align: right; }
.mini-board .negative { color: #f26666; }
.feature-watch, .feature-news { min-height: 311px; padding: 38px; }
.icon-tile { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 15px; background: #e0f8e8; color: var(--green-deep); font-size: 1.3rem; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.chips span { padding: 6px 10px; border-radius: 999px; background: #eef3ef; color: #38463d; font-size: .68rem; font-weight: 800; }
.chips span:last-child { background: #daf5e3; color: #106c34; }
.feature-news { background: #e3eee7; padding-top: 185px; }
.news-stack { position: absolute; top: 30px; left: 38px; right: 38px; }
.news-stack > span { position: absolute; left: 0; right: 0; display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; padding: 11px 13px; border: 1px solid rgba(13,34,20,.09); border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 10px 26px rgba(31,61,43,.08); }
.news-stack > span:nth-child(2) { top: 48px; transform: translateX(7px) scale(.96); opacity: .8; }
.news-stack > span:nth-child(3) { top: 93px; transform: translateX(13px) scale(.91); opacity: .53; }
.news-stack i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: #dff6e6; color: var(--green-deep); font-style: normal; font-size: .63rem; font-weight: 900; }
.news-stack strong { font-size: .68rem; }
.news-stack small { color: #738177; font-size: .56rem; }

.intelligence { position: relative; overflow: hidden; background: #09140f; }
.intelligence::after { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; top: 120px; left: -300px; background: rgba(34,197,94,.09); filter: blur(20px); }
.center-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.center-heading h2 { max-width: 720px; }
.center-heading > p:last-child { max-width: 600px; margin: 22px auto 0; color: var(--muted); }
.tool-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tool-card { min-height: 285px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.tool-card:hover { background: rgba(255,255,255,.025); transform: translateY(-3px); }
.tool-glyph { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 35px; border: 1px solid rgba(52,228,119,.24); border-radius: 50%; background: rgba(34,197,94,.08); color: var(--green-bright); font-size: 1rem; font-weight: 900; }
.prediction, .activity, .research { border-radius: 17px; font-size: 1.5rem; }
.tool-card h3 { margin: 0 0 11px; font-size: 1.25rem; letter-spacing: -.02em; }
.tool-card p { margin: 0; color: #8ea097; font-size: .87rem; line-height: 1.72; }

.portfolio-section { background: var(--paper); color: var(--dark-ink); }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 105px; }
.portfolio-demo { position: relative; min-height: 480px; display: grid; place-items: center; }
.portfolio-demo::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: #dbe9df; }
.portfolio-card { position: relative; z-index: 2; width: min(100%, 475px); padding: 29px; border: 1px solid rgba(255,255,255,.11); border-radius: 26px; background: #17211c; color: white; box-shadow: 0 40px 80px rgba(20,50,33,.24); transform: rotate(-2.5deg); }
.portfolio-top { display: grid; grid-template-columns: 39px 1fr auto; gap: 11px; align-items: center; margin-bottom: 35px; }
.portfolio-top > span:nth-child(2) { display: flex; flex-direction: column; }
.portfolio-top small, .portfolio-card > small { color: #7f9187; font-size: .6rem; letter-spacing: .12em; }
.portfolio-top strong { font-size: .92rem; }
.wallet-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(34,197,94,.14); color: #52df83; }
.portfolio-value { margin: 2px 0 5px; font-size: 2.25rem; font-weight: 760; letter-spacing: -.04em; }
.portfolio-change { display: flex; gap: 13px; align-items: center; }
.portfolio-change b { color: #3bd775; font-size: .82rem; }
.portfolio-change span { color: #7d8e85; font-size: .7rem; }
.allocation { display: flex; width: 100%; height: 8px; gap: 3px; margin: 32px 0 15px; overflow: hidden; border-radius: 8px; }
.allocation i { display: block; width: var(--w); background: var(--c); }
.legend { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; color: #89998f; font-size: .66rem; }
.legend span { display: flex; align-items: center; gap: 7px; }
.legend i { width: 7px; height: 7px; border-radius: 50%; }
.green { background: #22c55e; }.blue-dot { background: #3b82f6; }.purple-dot { background: #a855f7; }.orange-dot { background: #f59e0b; }
.privacy-chip { position: absolute; z-index: 4; left: 4px; bottom: 15px; display: grid; grid-template-columns: 38px auto; padding: 13px 17px; border: 1px solid rgba(16,69,35,.11); border-radius: 15px; background: white; box-shadow: 0 20px 45px rgba(30,54,40,.13); }
.privacy-chip > span { grid-row: span 2; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: #ddf6e5; color: var(--green-deep); }
.privacy-chip strong { font-size: .75rem; }.privacy-chip small { color: #6e7b73; font-size: .62rem; }
.portfolio-copy > p:not(.section-kicker) { margin: 25px 0; color: var(--dark-muted); font-size: 1.02rem; line-height: 1.82; }
.privacy-note { display: flex; gap: 15px; margin: 30px 0 24px; padding: 20px; border: 1px solid #cbd8cf; border-radius: 16px; background: #e8efea; }
.shield { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--green-deep); color: white; font-weight: 900; }
.privacy-note strong { font-size: .9rem; }.privacy-note p { margin: 3px 0 0 !important; font-size: .77rem !important; line-height: 1.55 !important; }
.dark-link { color: var(--dark-ink); }

.detail-strip { padding: 50px 0; border-top: 1px solid #d6dfd9; background: var(--paper-2); color: var(--dark-ink); }
.detail-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.detail-grid > div { min-height: 100px; display: flex; flex-direction: column; justify-content: center; padding: 0 28px; border-right: 1px solid #cbd6cf; }
.detail-grid > div:first-child { padding-left: 0; }.detail-grid > div:last-child { border: 0; }
.detail-grid strong { color: var(--green-deep); font-size: 1.55rem; letter-spacing: -.035em; }
.detail-grid span { max-width: 200px; color: #66746b; font-size: .72rem; line-height: 1.5; }

.principles { background: #0b1510; }
.principles-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.principles-title h2 { max-width: 490px; }
.principles-list { border-top: 1px solid var(--line); }
.principles-list article { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 30px 4px; border-bottom: 1px solid var(--line); }
.principles-list article > span { color: var(--green); font-size: .7rem; font-weight: 850; }
.principles-list h3 { margin: -4px 0 5px; font-size: 1.3rem; }.principles-list p { margin: 0; color: var(--muted); font-size: .86rem; }

.faq-section { background: var(--paper); color: var(--dark-ink); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > p:last-child { color: var(--dark-muted); }
.accordion { border-top: 1px solid #cbd6ce; }
.accordion details { border-bottom: 1px solid #cbd6ce; }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; list-style: none; cursor: pointer; font-weight: 760; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--green-deep); font-size: 1.4rem; transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 690px; margin: -4px 0 26px; color: var(--dark-muted); font-size: .91rem; line-height: 1.75; }

.final-cta { background: var(--paper); padding-top: 0; }
.cta-box { display: flex; justify-content: space-between; align-items: center; gap: 60px; padding: 66px; border-radius: var(--radius-lg); background: var(--green); color: #051008; box-shadow: 0 30px 70px rgba(20,95,46,.18); }
.cta-box .section-kicker { color: #0a5628; }.cta-box h2 { max-width: 700px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.cta-box p:last-child { margin: 17px 0 0; color: #175e31; }
.store-button-light { flex: 0 0 auto; background: #07110d; color: white; }
.store-button-light .play-mark { color: var(--green); }
.legal-notice { padding: 28px 0; border-top: 1px solid #d8e0db; background: #e8eeea; color: #536158; font-size: .72rem; }
.legal-notice .shell { display: grid; grid-template-columns: 100px 1fr; gap: 20px; }.legal-notice strong { color: #16241b; }.legal-notice p { margin: 0; }

.site-footer { background: #06100b; }
.footer-main { display: grid; grid-template-columns: 1.5fr .55fr .55fr; gap: 80px; padding-block: 78px 58px; }
.footer-brand p { max-width: 390px; margin: 18px 0 0; color: #82938a; font-size: .86rem; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }.footer-column h2 { margin: 0 0 8px; color: #e2ece6; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }.footer-column a { color: #83958b; font-size: .81rem; }.footer-column a:hover { color: var(--green); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #66776d; font-size: .68rem; }
.footer-bottom code { color: #8fa099; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .13s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Privacy page */
.policy-body { background: var(--paper); color: var(--dark-ink); }
.policy-body .site-header { background: rgba(7,17,13,.96); border-bottom-color: var(--line); }
.policy-hero { padding: 160px 0 72px; background: #09140f; color: var(--ink); }
.policy-hero-grid { display: grid; grid-template-columns: 1fr .65fr; gap: 80px; align-items: end; }
.policy-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.3rem); line-height: .98; letter-spacing: -.06em; }
.policy-hero .lead { max-width: 690px; margin: 24px 0 0; color: #a4b5ab; font-size: 1.02rem; }
.policy-meta { display: grid; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.025); }
.policy-meta span { display: flex; justify-content: space-between; gap: 15px; color: #83948a; font-size: .75rem; }.policy-meta strong { color: #dce9e1; text-align: right; }
.policy-layout { display: grid; grid-template-columns: 255px 1fr; gap: 75px; padding-block: 72px 110px; }
.policy-nav { position: sticky; top: 104px; align-self: start; padding: 20px 0; border-top: 1px solid #ccd7cf; border-bottom: 1px solid #ccd7cf; }
.policy-nav h2 { margin: 0 0 10px; font-size: .68rem; color: #68776e; letter-spacing: .14em; text-transform: uppercase; }
.policy-nav a { display: block; padding: 6px 0; color: #617067; font-size: .75rem; }.policy-nav a:hover { color: var(--green-deep); }
.policy-callout { margin-bottom: 36px; padding: 22px 24px; border-left: 4px solid var(--green); background: #e1ebe4; }
.policy-callout strong { display: block; margin-bottom: 4px; }.policy-callout p { margin: 0 !important; }
.policy-content section { scroll-margin-top: 105px; padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid #d1dad4; }
.policy-content section:last-child { border: 0; }
.policy-content h2 { margin: 0 0 16px; font-size: 1.75rem; letter-spacing: -.035em; }.policy-content h3 { margin: 24px 0 8px; font-size: 1rem; }
.policy-content p, .policy-content li { color: #4f5f55; font-size: .91rem; line-height: 1.8; }
.policy-content ul { padding-left: 20px; }.policy-content li + li { margin-top: 8px; }
.policy-content a { color: #087434; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.data-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: .78rem; }
.data-table table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 14px; border: 1px solid #cbd6cf; text-align: left; vertical-align: top; }
.data-table th { background: #dfe8e2; color: #233128; font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }
.data-table td { color: #516057; }
.status-pill { display: inline-flex; padding: 3px 8px; border-radius: 999px; background: #d8f2e1; color: #0b6c32; font-size: .65rem; font-weight: 800; white-space: nowrap; }
.contact-card { display: grid; gap: 10px; margin-top: 20px; padding: 22px; border: 1px solid #c6d3ca; border-radius: 16px; background: #e8efea; }
.contact-card span { color: #5a695f; font-size: .82rem; }.contact-card strong { color: #17251c; }
.error-page { min-height: 100vh; width: min(620px, calc(100% - 36px)); margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-page img { border-radius: 20px; margin-bottom: 20px; }.error-page h1 { margin: 0; font-size: clamp(2.4rem, 8vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }.error-page > p:not(.section-kicker) { color: var(--muted); }.error-page .button { margin-top: 12px; }

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }.site-nav a { font-size: .8rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero h1 { font-size: clamp(3.5rem, 7.3vw, 5.2rem); }
  .float-card-top { right: -5px; }.float-card-bottom { left: 0; }
  .split-heading, .portfolio-grid, .principles-grid, .faq-grid { gap: 55px; }
  .feature-large { padding: 40px; }.mini-board { left: 40px; right: 40px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 210px 1fr; gap: 45px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 700px); }
  .site-header { height: 68px; }
  .nav-shell { gap: 12px; }
  .brand { margin-right: auto; }
  .nav-cta { display: none; }
  .nav-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: white; }
  .nav-toggle span:not(.sr-only) { width: 19px; height: 1.5px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 28px 24px; background: rgba(7,17,13,.98); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { padding: 17px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 1.05rem; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 75px 70px; }
  .hero-copy { text-align: center; }.eyebrow { justify-content: center; }.hero-lead { margin-inline: auto; }.hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 660px; }
  .phone { width: 300px; height: 616px; }
  .float-card-top { right: 5%; }.float-card-bottom { left: 5%; }
  .strip-inner { overflow: auto; justify-content: flex-start; min-height: 64px; white-space: nowrap; scrollbar-width: none; }.strip-inner::-webkit-scrollbar { display: none; }
  .section { padding: 85px 0; }
  .split-heading, .portfolio-grid, .principles-grid, .faq-grid, .policy-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .bento-grid { grid-template-columns: 1fr; }.feature-large { grid-row: auto; }
  .tool-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-demo { order: 2; }.portfolio-copy { order: 1; }
  .detail-grid { grid-template-columns: repeat(2,1fr); gap: 20px 0; }.detail-grid > div:nth-child(2) { border-right: 0; }.detail-grid > div:nth-child(3) { padding-left: 0; }
  .faq-heading { position: static; }
  .cta-box { padding: 48px; flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }
  .policy-hero { padding-top: 130px; }.policy-layout { grid-template-columns: 1fr; gap: 28px; }.policy-nav { position: static; display: none; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 30px); }
  .brand img { width: 38px; height: 38px; }.brand span { font-size: .9rem; }
  .hero-grid { padding-top: 60px; }.hero h1 { font-size: clamp(3rem, 15.5vw, 4.35rem); }.hero-lead { font-size: .94rem; }
  .hero-actions { flex-direction: column; }.hero-trust { gap: 9px 15px; font-size: .7rem; }
  .hero-visual { min-height: 590px; transform: scale(.9); margin: -22px -15px; }
  .phone { width: 285px; height: 590px; }.float-card { min-width: 170px; }.float-card-top { right: -2%; }.float-card-bottom { left: -2%; }
  .section { padding: 72px 0; }
  .split-heading h2, .center-heading h2, .portfolio-copy h2, .principles-title h2, .faq-heading h2, .cta-box h2 { font-size: 2.55rem; }
  .feature-large, .feature-watch, .feature-news { padding: 30px; }.feature-large { min-height: 625px; }.feature-large h3 { font-size: 2.2rem; }.mini-board { left: 22px; right: 22px; bottom: 25px; }.mini-board > div { padding: 12px; gap: 8px; font-size: .7rem; }
  .news-stack { left: 30px; right: 30px; }.feature-news { padding-top: 180px; }
  .tool-grid { grid-template-columns: 1fr; }.tool-card { min-height: auto; padding: 30px; }.tool-glyph { margin-bottom: 25px; }
  .portfolio-demo { min-height: 430px; }.portfolio-card { padding: 23px; }.portfolio-value { font-size: 1.8rem; }.privacy-chip { left: -3px; }
  .detail-grid { grid-template-columns: 1fr; }.detail-grid > div { min-height: 78px; padding: 0 !important; border-right: 0; border-bottom: 1px solid #cbd6cf; }.detail-grid > div:last-child { border-bottom: 0; }
  .principles-list article { grid-template-columns: 42px 1fr; }
  .cta-box { padding: 36px 27px; border-radius: 26px; }.store-button-light { width: 100%; }
  .legal-notice .shell { grid-template-columns: 1fr; gap: 5px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding-block: 60px 40px; }.footer-brand { grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
  .policy-hero h1 { font-size: 3rem; }.policy-meta span { flex-direction: column; gap: 1px; }.policy-meta strong { text-align: left; }.data-table { display: block; overflow-x: auto; white-space: normal; }.policy-content h2 { font-size: 1.5rem; }
}
