:root {
  color-scheme: light;
  --paper: #f7f6f2;
  --paper-2: #efede7;
  --ink: #1f1d19;
  --muted: #69645b;
  --line: #ddd9d0;
  --line-dark: #c8c1b6;
  --white: #fff;
  --orange: #c25718;
  --orange-dark: #a8440d;
  --orange-soft: #f5e2d2;
  --green: #287a4b;
  --green-soft: #e1eee5;
  --yellow: #e8ae35;
  --red: #bb463d;
  --shadow: 0 24px 70px rgba(55, 43, 28, .10), 0 3px 12px rgba(55, 43, 28, .06);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-fluid: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(31,29,25,.09) .55px, transparent .55px);
  background-size: 10px 10px;
  opacity: .22;
  content: "";
  animation: ambient-drift 28s linear infinite alternate;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--orange-soft); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: none; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247,246,242,.84);
  backdrop-filter: blur(16px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 3px 16px rgba(31,29,25,.04); }
.nav { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 730; letter-spacing: -.04em; }
.brand-mark { position: relative; width: 29px; height: 29px; border-radius: 8px; background: var(--ink); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.brand-mark::before, .brand-mark::after { position: absolute; content: ""; border-radius: 2px; background: var(--orange); }
.brand-mark::before { left: 7px; bottom: 7px; width: 4px; height: 7px; box-shadow: 7px -5px 0 var(--orange), 14px -11px 0 var(--orange); }
.brand-mark::after { right: 6px; top: 6px; width: 4px; height: 4px; background: var(--white); opacity: .9; }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 540; }
.nav-links a { position: relative; padding-block: 7px; transition: color .25s var(--ease-fluid); }
.nav-links a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-fluid); content: ""; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--ink); }
.mobile-toggle svg { width: 20px; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 1px 2px rgba(31,29,25,.04);
  transition: transform .3s var(--ease-fluid), background .25s, border-color .25s, box-shadow .3s var(--ease-fluid);
}
.button:hover { transform: translateY(-2px); border-color: #aea69a; box-shadow: 0 8px 24px rgba(48,38,25,.10); }
.button:active { transform: translateY(0) scale(.985); }
.button--primary { border-color: var(--orange); background: var(--orange); color: #fff; }
.button--primary:hover { border-color: var(--orange-dark); background: var(--orange-dark); }
.button--dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.button--small { min-height: 38px; padding: 0 14px; }
.arrow { font-family: var(--mono); transition: transform .16s; }
.button:hover .arrow, .text-link:hover .arrow { transform: translateX(3px); }

.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--orange-dark); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { display: none; content: none; }
.hero { overflow: hidden; padding: 96px 0 80px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr); align-items: center; gap: 70px; }
.hero h1, .page-hero h1 { margin: 0; max-width: 780px; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.065em; font-weight: 690; text-wrap: balance; }
.hero h1 em { color: var(--orange); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-copy { max-width: 610px; margin: 27px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.proof-line { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--muted); font-size: 12px; }
.proof-line span { display: inline-flex; align-items: center; gap: 7px; }
.proof-line i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }

.app-window { position: relative; border: 1px solid var(--line-dark); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); animation: window-float 8s var(--ease-fluid) infinite alternate; }
.app-window::before { position: absolute; inset: 18px -24px -24px 28px; z-index: -1; border-radius: 18px; background: var(--paper-2); content: ""; }
.window-bar { display: flex; height: 43px; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid var(--line); }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d6d1c8; }
.window-title { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.dashboard { display: grid; min-height: 420px; grid-template-columns: 62px 1fr; }
.dash-rail { padding: 16px 12px; border-right: 1px solid var(--line); background: #fbfaf7; }
.rail-logo { width: 27px; height: 27px; margin: 0 auto 26px; border-radius: 7px; background: var(--ink); }
.rail-item { width: 26px; height: 26px; margin: 0 auto 12px; border-radius: 6px; background: var(--paper-2); }
.rail-item.active { background: var(--paper-2); box-shadow: inset 0 0 0 1px var(--line-dark); }
.dash-body { min-width: 0; padding: 18px 20px 21px; }
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.dash-label { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.dash-head strong { display: block; margin-top: 2px; font-size: 17px; letter-spacing: -.03em; }
.range-pill { padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); font-size: 9px; }
.mini-tabs { display: flex; gap: 14px; margin: 18px 0 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; white-space: nowrap; }
.mini-tabs span { padding-bottom: 8px; }
.mini-tabs .active { border-bottom: 2px solid var(--ink); color: var(--ink); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.metric { padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.metric small { display: block; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.metric strong { display: block; margin: 4px 0 2px; font-size: 16px; letter-spacing: -.04em; }
.metric em { color: var(--green); font-size: 8px; font-style: normal; }
.chart-card { margin-top: 9px; padding: 12px; border: 1px solid var(--line); border-radius: 9px; }
.chart-meta { display: flex; align-items: center; justify-content: space-between; font-size: 9px; }
.chart-meta span:last-child { color: var(--muted); font-family: var(--mono); font-size: 7px; }
.chart { width: 100%; height: 105px; margin-top: 8px; }
.chart .grid { stroke: #ece8e1; stroke-width: 1; }
.chart .area { fill: var(--orange-soft); opacity: .72; }
.chart .line { fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.table-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.preview-card { padding: 10px; border: 1px solid var(--line); border-radius: 8px; }
.preview-card h3 { margin: 0 0 7px; font-size: 9px; }
.bar-row { display: grid; grid-template-columns: 1fr 2.2fr auto; align-items: center; gap: 5px; margin-top: 5px; color: var(--muted); font-size: 7px; }
.bar { height: 4px; overflow: hidden; border-radius: 99px; background: var(--paper-2); }
.bar i { display: block; width: var(--w); height: 100%; border-radius: inherit; background: var(--orange); }

.ticker { border-block: 1px solid var(--line); background: rgba(255,255,255,.42); }
.ticker-inner { display: grid; grid-template-columns: 1.25fr repeat(4, 1fr); min-height: 94px; align-items: center; }
.ticker-title { color: var(--muted); font-size: 13px; }
.ticker-item { display: flex; align-items: center; justify-content: center; gap: 9px; color: #49453e; font-size: 13px; font-weight: 630; }
.ticker-item i { width: 7px; height: 7px; border-radius: 2px; background: var(--orange); }

.section { padding: 120px 0; }
.section--tight { padding: 84px 0; }
.section--ink { position: relative; overflow: hidden; background: var(--ink); color: #f6f3ec; }
.section--ink::after { position: absolute; right: -120px; bottom: -180px; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); content: ""; }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: end; margin-bottom: 56px; }
.section-head h2, .feature-copy h2, .cta h2, .legal h1 { margin: 0; font-size: clamp(35px, 4.2vw, 57px); line-height: 1.05; letter-spacing: -.055em; font-weight: 670; text-wrap: balance; }
.section-head p { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; }
.section--ink .eyebrow { color: #e6975f; }
.section--ink .section-head p { color: #aaa49b; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.product-card { position: relative; min-height: 430px; padding: 34px 30px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.52); transition: background .3s, transform .5s var(--ease-fluid), border-color .3s, box-shadow .5s var(--ease-fluid); }
.product-card:hover { z-index: 1; border-color: var(--line-dark); background: var(--white); box-shadow: 0 20px 55px rgba(48,38,25,.09); transform: translateY(-7px); }
.product-num { color: var(--orange); font-family: var(--mono); font-size: 11px; }
.product-icon { display: grid; width: 52px; height: 52px; margin: 50px 0 28px; place-items: center; border-radius: 12px; background: var(--ink); color: var(--white); }
.product-icon svg { width: 25px; }
.product-card h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.04em; }
.product-card p { color: var(--muted); font-size: 14px; }
.card-list { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; color: #4f4a43; font-size: 13px; }
.card-list li { display: flex; gap: 8px; }
.card-list li::before { flex: 0 0 auto; color: var(--orange); font-family: var(--mono); content: "+"; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 25px; color: var(--orange-dark); font-size: 13px; font-weight: 700; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; margin-top: 110px; }
.feature-row:first-child { margin-top: 0; }
.feature-row--reverse .feature-copy { order: 2; }
.feature-row--reverse .feature-visual { order: 1; }
.feature-copy h2 { font-size: clamp(36px, 4vw, 52px); }
.feature-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.tick-list { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; }
.tick-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: #4e4941; font-size: 14px; }
.tick-list li::before { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 800; content: "✓"; }
.feature-visual { position: relative; padding: 26px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: 0 18px 50px rgba(48,38,25,.08); transition: transform .65s var(--ease-fluid), box-shadow .65s var(--ease-fluid); }
.feature-row:hover .feature-visual { box-shadow: 0 28px 70px rgba(48,38,25,.11); transform: translateY(-5px) rotate(-.25deg); }
.feature-visual::after { position: absolute; top: -10px; right: 24px; width: 72px; height: 20px; border: 1px solid var(--line); background: var(--paper); transform: rotate(2deg); content: ""; }
.visual-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.visual-head span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-family: var(--mono); font-size: 9px; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 5px rgba(40,122,75,0); } 0%,100% { box-shadow: 0 0 0 0 rgba(40,122,75,.25); } }
.journey { display: grid; gap: 7px; }
.journey-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 11px; border: 1px solid var(--line); border-radius: 8px; font-size: 11px; }
.journey-row b { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 6px; background: var(--orange-soft); color: var(--orange-dark); font-family: var(--mono); font-size: 9px; }
.journey-row small { color: var(--muted); }
.journey-row em { color: var(--green); font-family: var(--mono); font-size: 9px; font-style: normal; }
.bot-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: var(--line); }
.bot-row { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; padding: 12px 14px; background: var(--white); font-size: 11px; }
.bot-row span:first-child { font-weight: 640; }
.bot-row span:not(:first-child) { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.geo-ring { display: grid; min-height: 270px; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 24px; }
.ring { display: grid; width: 160px; height: 160px; margin: auto; place-items: center; border-radius: 50%; background: conic-gradient(var(--orange) 0 67%, var(--green) 67% 84%, var(--paper-2) 84%); }
.ring::before { grid-area: 1 / 1; width: 108px; height: 108px; border-radius: 50%; background: var(--white); content: ""; }
.ring strong { z-index: 1; grid-area: 1 / 1; font-size: 29px; letter-spacing: -.05em; }
.legend { display: grid; gap: 15px; }
.legend div { display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 9px; font-size: 11px; }
.legend i { width: 8px; height: 8px; border-radius: 2px; background: var(--orange); }
.legend div:nth-child(2) i { background: var(--green); }
.legend div:nth-child(3) i { background: var(--paper-2); }
.legend small { color: var(--muted); }

.privacy-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.4fr; gap: 90px; }
.privacy-grid h2 { margin: 0; max-width: 480px; font-size: clamp(38px, 4.8vw, 62px); line-height: 1.02; letter-spacing: -.06em; }
.privacy-grid h2 em { color: #e6975f; font-family: Georgia, serif; font-weight: 500; }
.privacy-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); }
.privacy-point { padding: 26px; background: var(--ink); }
.privacy-point strong { display: block; margin-bottom: 8px; font-size: 16px; }
.privacy-point p { margin: 0; color: #aaa49b; font-size: 13px; }
.privacy-icon { display: grid; width: 31px; height: 31px; margin-bottom: 25px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #e6975f; font-family: var(--mono); font-size: 12px; }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: steps; }
.how-card { padding: 28px; border-top: 1px solid var(--line-dark); counter-increment: steps; }
.how-card::before { display: block; margin-bottom: 60px; color: var(--orange); font-family: var(--mono); font-size: 12px; content: "0" counter(steps); }
.how-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.035em; }
.how-card p { margin: 0; color: var(--muted); font-size: 14px; }

.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.outcome-card { min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.58); transition: transform .45s var(--ease-fluid), border-color .3s, box-shadow .45s var(--ease-fluid); }
.outcome-card:hover { border-color: var(--line-dark); box-shadow: 0 16px 45px rgba(48,38,25,.07); transform: translateY(-5px); }
.outcome-card span { color: var(--orange); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.outcome-card h3 { margin: 52px 0 10px; font-size: 20px; line-height: 1.15; letter-spacing: -.035em; }
.outcome-card p { margin: 0; color: var(--muted); font-size: 13px; }
.outcome-card a { display: inline-flex; margin-top: 17px; color: var(--orange-dark); font-size: 12px; font-weight: 700; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 24px 4px; cursor: pointer; font-size: 18px; font-weight: 650; letter-spacing: -.025em; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { color: var(--orange); font-family: var(--mono); font-size: 17px; content: "+"; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 790px; margin: -5px 0 25px; color: var(--muted); font-size: 14px; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; column-gap: 0; row-gap: 8px; margin-bottom: 28px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.breadcrumb > * { display: inline-flex; align-items: center; }
.breadcrumb a:hover { color: var(--orange-dark); }
.breadcrumb span::before { margin: 0 12px; color: var(--line-dark); content: "/"; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.case-card { padding: 34px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); transition: transform .5s var(--ease-fluid), box-shadow .5s var(--ease-fluid), border-color .3s; }
.case-card:hover { border-color: var(--line-dark); box-shadow: 0 18px 52px rgba(48,38,25,.08); transform: translateY(-5px); }
.case-card .eyebrow { margin-bottom: 28px; }
.case-card h3 { margin: 0 0 12px; font-size: 27px; line-height: 1.12; letter-spacing: -.045em; }
.case-card > p { color: var(--muted); font-size: 14px; }
.case-card ul { display: grid; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 13px; }
.case-card li::before { margin-right: 9px; color: var(--green); content: "✓"; }
.region-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 45px 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--line); }
.region-step { min-height: 190px; padding: 28px; background: var(--white); }
.region-step span { color: var(--orange); font-family: var(--mono); font-size: 10px; }
.region-step strong { display: block; margin: 35px 0 9px; font-size: 18px; }
.region-step p { margin: 0; color: var(--muted); font-size: 13px; }

.cta { position: relative; overflow: hidden; padding: 76px; border-radius: 18px; background: var(--orange); color: #fff; }
.cta::before { position: absolute; top: -105px; right: -45px; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 62px rgba(255,255,255,.07), 0 0 0 124px rgba(255,255,255,.04); content: ""; }
.cta::before { animation: orbit-drift 16s var(--ease-fluid) infinite alternate; }
.cta h2 { position: relative; max-width: 680px; }
.cta p { position: relative; max-width: 580px; margin: 21px 0 29px; color: rgba(255,255,255,.8); }
.cta .button { position: relative; }

.site-footer { padding: 70px 0 34px; border-top: 1px solid var(--line); background: #efede7; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }
.footer-about p { max-width: 280px; margin: 17px 0 0; color: var(--muted); font-size: 13px; }
.footer-col h3 { margin: 3px 0 19px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; }
.footer-col a:hover { color: var(--orange-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 65px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }

.page-hero { padding: 95px 0 75px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(48px, 6vw, 76px); }
.page-hero p { max-width: 690px; margin: 25px 0 0; color: var(--muted); font-size: 18px; }
.page-hero .meta { margin-top: 28px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.product-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding: 85px 0; }
.product-intro h2 { margin: 0; font-size: 31px; line-height: 1.15; letter-spacing: -.045em; }
.product-intro p { margin: 0 0 20px; color: var(--muted); font-size: 17px; }
.capability { padding: 90px 0; border-top: 1px solid var(--line); }
.capability-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.capability h2 { margin: 0; font-size: clamp(35px, 4vw, 51px); line-height: 1.07; letter-spacing: -.05em; }
.capability-lede { margin: 0; color: var(--muted); font-size: 17px; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 48px; }
.cap { min-height: 175px; padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.42); transition: transform .4s var(--ease-fluid), background .3s, box-shadow .4s var(--ease-fluid); }
.cap:hover { background: var(--white); box-shadow: 0 14px 38px rgba(48,38,25,.065); transform: translateY(-4px); }
.cap strong { display: block; margin-bottom: 8px; font-size: 15px; }
.cap p { margin: 0; color: var(--muted); font-size: 13px; }

.legal-wrap { display: grid; grid-template-columns: 235px minmax(0, 720px); gap: 85px; justify-content: center; padding: 85px 0 120px; }
.legal-nav { align-self: start; position: sticky; top: 105px; }
.legal-nav span { display: block; margin-bottom: 15px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 6px 0; color: var(--muted); font-size: 13px; }
.legal-nav a:hover { color: var(--orange-dark); }
.legal { min-width: 0; }
.legal h1 { margin-bottom: 17px; }
.legal .updated { margin-bottom: 55px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.legal h2 { scroll-margin-top: 105px; margin: 55px 0 14px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 24px; letter-spacing: -.035em; }
.legal h3 { margin: 28px 0 9px; font-size: 16px; }
.legal p, .legal li { color: #514c44; font-size: 15px; }
.legal ul { padding-left: 20px; }
.legal li { margin: 7px 0; }
.legal a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin: 30px 0; padding: 20px 22px; border: 0; border-radius: 12px; background: var(--paper-2); box-shadow: none; color: #483a30; font-size: 14px; }
.residency-map { display: grid; min-height: 330px; place-items: center; margin: 45px 0; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.map-card { text-align: center; }
.map-dot { width: 16px; height: 16px; margin: 0 auto 22px; border: 4px solid var(--paper-2); border-radius: 50%; background: var(--orange); box-sizing: content-box; }
.map-card strong { display: block; font-size: 29px; letter-spacing: -.04em; }
.map-card span { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 1; transform: none; }

@keyframes ambient-drift { to { background-position: 22px 13px; } }
@keyframes window-float { to { transform: perspective(1200px) rotateY(-1deg) rotateX(.5deg) translateY(-7px); } }
@keyframes orbit-drift { to { transform: translate(-24px, 18px) scale(1.06); } }

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-flow both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
  }
  @keyframes reveal-flow {
    from { transform: translateY(20px) scale(.994); }
    to { transform: none; }
  }
}

@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; }
  body::before, .app-window, .cta::before { animation: none !important; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav.is-open .nav-links { position: absolute; top: 72px; left: 20px; right: 20px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
  .nav.is-open .nav-links a { padding: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .app-window { max-width: 700px; transform: none; animation: none; }
  .section-head, .feature-row, .privacy-grid, .capability-head { grid-template-columns: 1fr; gap: 34px; }
  .feature-row--reverse .feature-copy, .feature-row--reverse .feature-visual { order: initial; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; min-height: auto; }
  .privacy-grid h2 { max-width: 700px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .product-intro { grid-template-columns: 1fr; gap: 30px; }
  .legal-wrap { grid-template-columns: 190px minmax(0, 1fr); gap: 55px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav { min-height: 64px; }
  .nav-actions > .button { display: none; }
  .nav.is-open .nav-links { top: 65px; left: 14px; right: 14px; }
  .hero { padding: 72px 0 55px; }
  .hero h1, .page-hero h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-grid { gap: 50px; }
  .dashboard { min-height: 340px; grid-template-columns: 44px 1fr; }
  .dash-rail { padding-inline: 8px; }
  .dash-body { padding: 13px; overflow: hidden; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(n+3), .table-preview { display: none; }
  .chart { height: 80px; }
  .mini-tabs span:nth-child(n+5) { display: none; }
  .ticker-inner { grid-template-columns: 1fr 1fr; padding: 20px 0; gap: 16px; }
  .ticker-title { grid-column: 1 / -1; }
  .section { padding: 85px 0; }
  .section--tight { padding: 60px 0; }
  .section-head { margin-bottom: 38px; }
  .product-grid, .privacy-points, .how-grid, .cap-grid, .outcome-grid, .case-grid, .region-flow { grid-template-columns: 1fr; }
  .product-card, .product-card:last-child { grid-column: auto; min-height: auto; }
  .product-icon { margin-top: 30px; }
  .feature-row { gap: 42px; margin-top: 75px; }
  .feature-visual { padding: 17px; }
  .geo-ring { grid-template-columns: 1fr; }
  .privacy-grid { gap: 45px; }
  .how-card::before { margin-bottom: 30px; }
  .cta { padding: 46px 27px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .page-hero { padding: 70px 0 55px; }
  .capability { padding: 70px 0; }
  .legal-wrap { display: block; padding: 65px 0 90px; }
  .legal-nav { display: none; }
}

/* -------------------------------------------------------------------------
   Abnio Studio — editorial product direction
   Open composition, soft depth, restrained accent, no decorative edge bars.
   ---------------------------------------------------------------------- */

:root {
  --paper: #f3f1eb;
  --paper-2: #e9e6de;
  --ink: #10110f;
  --muted: #68675f;
  --line: rgba(16, 17, 15, .11);
  --line-dark: rgba(16, 17, 15, .22);
  --white: #fbfaf7;
  --orange: #e5662c;
  --orange-dark: #c84d17;
  --orange-soft: #f5dfd2;
  --green: #257a50;
  --green-soft: #deeee4;
  --shadow: 0 30px 90px rgba(24, 22, 17, .12), 0 4px 18px rgba(24, 22, 17, .07);
}

body {
  background: var(--paper);
  font-size: 17px;
  letter-spacing: -.018em;
}
body::before {
  background-size: 14px 14px;
  opacity: .1;
}
.shell { width: min(1240px, calc(100% - 56px)); }

.site-header {
  top: 14px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}
.site-header.is-scrolled { border: 0; box-shadow: none; }
.nav {
  min-height: 62px;
  padding: 0 9px 0 17px;
  border: 1px solid rgba(16,17,15,.1);
  border-radius: 18px;
  background: rgba(251,250,247,.86);
  box-shadow: 0 12px 40px rgba(29,26,20,.07);
  backdrop-filter: blur(22px) saturate(140%);
  pointer-events: auto;
}
.brand { gap: 11px; font-size: 20px; }
.brand-mark { width: 31px; height: 31px; border-radius: 10px; }
.nav-links { gap: 32px; font-size: 13px; }
.nav-actions { gap: 8px; }
.button {
  min-height: 46px;
  padding: 0 21px;
  border-color: transparent;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  box-shadow: inset 0 0 0 1px var(--line), 0 2px 8px rgba(24,22,17,.03);
}
.button--small { min-height: 42px; padding: 0 17px; }
.button--primary { border-color: transparent; background: var(--ink); box-shadow: none; }
.button--primary:hover { border-color: transparent; background: #292a26; }
.button--dark { border-color: transparent; }

.eyebrow {
  gap: 0;
  margin-bottom: 23px;
  color: var(--orange-dark);
  font-size: 10px;
  letter-spacing: .16em;
}
.hero {
  padding: 154px 0 115px;
}
.hero-grid {
  grid-template-columns: minmax(0,.82fr) minmax(610px,1.18fr);
  gap: 80px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(58px, 6vw, 88px);
  line-height: .93;
  letter-spacing: -.075em;
  font-weight: 690;
}
.hero h1 em { color: var(--orange); }
.hero-copy { max-width: 580px; margin-top: 32px; font-size: 18px; line-height: 1.7; }
.hero-actions { margin-top: 38px; }
.proof-line { gap: 22px; margin-top: 34px; font-size: 11px; }
.proof-line i { width: 5px; height: 5px; box-shadow: none; }

.app-window {
  overflow: hidden;
  border: 0;
  border-radius: 27px;
  background: var(--ink);
  box-shadow: 0 45px 120px rgba(25,22,17,.18), 0 10px 30px rgba(25,22,17,.1);
  transform: none;
  animation: studio-float 9s var(--ease-fluid) infinite alternate;
}
.app-window::before { display: none; }
.window-bar { height: 50px; padding-inline: 18px; border-color: rgba(255,255,255,.08); color: #fff; }
.window-dots i { background: rgba(255,255,255,.25); }
.window-dots i:first-child { background: var(--orange); }
.window-title { color: rgba(255,255,255,.54); }
.dashboard { min-height: 435px; margin: 0 7px 7px; overflow: hidden; border-radius: 19px; background: var(--white); }
.dash-rail { border-color: var(--line); background: #eeece5; }
.rail-logo { border-radius: 9px; }
.rail-item { background: rgba(255,255,255,.62); }
.rail-item.active { background: var(--ink); box-shadow: none; }
.dash-body { padding: 23px 24px 25px; }
.metric, .chart-card, .preview-card { border: 0; background: #eeece5; }
.metric { border-radius: 11px; }
.chart-card { border-radius: 14px; }
.preview-card { border-radius: 11px; }
.chart .grid { stroke: rgba(16,17,15,.08); }

.ticker { border: 0; background: transparent; }
.ticker-inner {
  min-height: 82px;
  padding: 0 30px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
}
.ticker-title { color: rgba(255,255,255,.58); }
.ticker-item { color: rgba(255,255,255,.86); }
.ticker-item i { border-radius: 50%; }

.section { padding: 145px 0; }
.section--tight { padding: 105px 0; }
.section-head { grid-template-columns: .9fr 1.1fr; gap: 100px; margin-bottom: 68px; }
.section-head h2,
.feature-copy h2,
.cta h2,
.legal h1 {
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: .98;
  letter-spacing: -.065em;
}
.section-head p { font-size: 17px; line-height: 1.75; }

.outcome-grid { gap: 18px; }
.outcome-card {
  min-height: 290px;
  padding: 31px;
  border: 0;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16,17,15,.04);
}
.outcome-card:nth-child(2), .outcome-card:nth-child(4) { background: #e7e4dc; }
.outcome-card h3 { margin-top: 76px; font-size: 24px; }
.outcome-card:hover { border-color: transparent; box-shadow: 0 24px 70px rgba(24,22,17,.09); transform: translateY(-8px) rotate(-.3deg); }

.product-grid { gap: 18px; }
.product-card {
  min-height: 510px;
  padding: 36px;
  border: 0;
  border-radius: 30px;
  background: var(--ink);
  color: #f8f7f3;
}
.product-card:nth-child(2) { background: #22231f; }
.product-card:nth-child(3) { background: #30312b; }
.product-card:hover { border-color: transparent; background: var(--ink); box-shadow: 0 28px 80px rgba(24,22,17,.17); transform: translateY(-9px); }
.product-card:nth-child(2):hover { background: #22231f; }
.product-card:nth-child(3):hover { background: #30312b; }
.product-num { color: #f29a69; }
.product-icon { width: 58px; height: 58px; margin-top: 82px; border-radius: 18px; background: rgba(255,255,255,.1); }
.product-card h3 { font-size: 29px; }
.product-card p, .product-card .card-list { color: rgba(255,255,255,.62); }
.product-card .card-list li::before { color: #f29a69; }
.product-card .text-link { color: #fff; }

.feature-row {
  gap: 100px;
  margin-top: 28px;
  padding: 82px;
  border-radius: 42px;
  background: rgba(255,255,255,.62);
}
.feature-row + .feature-row { margin-top: 30px; }
.feature-row:nth-child(2) { background: #e9e6de; }
.feature-row:nth-child(3) { background: var(--white); }
.feature-copy > p { margin-top: 27px; line-height: 1.75; }
.feature-visual {
  padding: 29px;
  border: 0;
  border-radius: 25px;
  box-shadow: 0 24px 70px rgba(24,22,17,.1);
}
.feature-visual::after { display: none; }
.feature-row:hover .feature-visual { transform: translateY(-6px) rotate(.35deg); }
.journey-row, .bot-list { border-color: var(--line); }

.section--ink {
  width: calc(100% - 36px);
  margin-inline: auto;
  border-radius: 44px;
  background: #11120f;
}
.section--ink::after { opacity: .42; }
.privacy-grid { gap: 120px; }
.privacy-grid h2 { font-size: clamp(50px, 5.3vw, 76px); }
.privacy-points { gap: 14px; background: transparent; }
.privacy-point { min-height: 230px; padding: 29px; border-radius: 22px; background: rgba(255,255,255,.055); }
.privacy-icon { border-color: rgba(255,255,255,.13); }

.how-grid { gap: 18px; }
.how-card {
  min-height: 330px;
  padding: 34px;
  border: 0;
  border-radius: 27px;
  background: var(--white);
}
.how-card::before { margin-bottom: 105px; }

.faq-list { border-top-color: var(--line-dark); }
.faq-item { border-bottom-color: var(--line); }
.faq-item summary { padding: 30px 5px; font-size: 20px; }
.faq-item summary::after { color: var(--ink); }

.cta {
  padding: 92px;
  border-radius: 38px;
  background: var(--ink);
}
.cta::before {
  top: auto;
  right: -70px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}
.cta .eyebrow { color: #f29a69 !important; }

.site-footer { margin-top: 30px; padding-top: 90px; border: 0; background: #e7e4dc; }
.footer-grid { gap: 80px; }
.footer-bottom { margin-top: 78px; }

.page-hero { padding: 160px 0 110px; border: 0; }
.page-hero::after { display: block; width: min(1240px, calc(100% - 56px)); height: 1px; margin: 92px auto -110px; background: var(--line); content: ""; }
.page-hero p { margin-top: 32px; font-size: 19px; line-height: 1.75; }
.breadcrumb { margin-bottom: 38px; }
.product-intro { gap: 110px; padding: 120px 0; }
.product-intro h2 { font-size: 40px; }
.capability { padding: 120px 0; border-color: var(--line); }
.capability-head { gap: 100px; }
.cap-grid { gap: 16px; margin-top: 65px; }
.cap {
  min-height: 220px;
  padding: 29px;
  border: 0;
  border-radius: 24px;
  background: var(--white);
}
.cap:hover { box-shadow: 0 20px 60px rgba(24,22,17,.08); transform: translateY(-6px); }
.cap strong { font-size: 17px; }
.cap p { line-height: 1.65; }
.case-grid { gap: 18px; }
.case-card { padding: 42px; border: 0; border-radius: 29px; }
.case-card:hover { border-color: transparent; }
.region-flow { gap: 14px; border: 0; border-radius: 0; overflow: visible; background: transparent; }
.region-step { min-height: 230px; border-radius: 24px; background: var(--white); }

.legal-wrap { grid-template-columns: 220px minmax(0,760px); gap: 105px; padding: 135px 0 150px; }
.legal-nav { top: 120px; }
.legal-nav a { padding: 8px 0; }
.legal h2 { margin-top: 70px; padding-top: 28px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; }
.legal-note { padding: 26px 28px; border-radius: 20px; background: #e6e3dc; }
.residency-map { min-height: 390px; border: 0; border-radius: 32px; background: var(--white); }

@keyframes studio-float {
  to { transform: translateY(-8px) rotate(.25deg); }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 860px; }
  .app-window { max-width: 820px; animation: none; }
  .section-head { grid-template-columns: 1fr; }
  .feature-row { padding: 58px; }
  .section-head, .feature-row, .privacy-grid, .capability-head { gap: 52px; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px,1240px); }
  .site-header { top: 8px; }
  .nav { min-height: 56px; padding-left: 12px; border-radius: 15px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 28px; height: 28px; }
  .nav.is-open .nav-links { top: 62px; }
  .hero { padding: 118px 0 70px; }
  .hero h1, .page-hero h1 { font-size: clamp(48px,14.2vw,64px); }
  .hero-copy { font-size: 16px; }
  .proof-line { display: grid; gap: 10px; }
  .app-window { border-radius: 20px; }
  .window-bar { height: 42px; }
  .dashboard { margin: 0 5px 5px; border-radius: 15px; }
  .ticker { padding-inline: 14px; }
  .ticker-inner { border-radius: 18px; }
  .section { padding: 95px 0; }
  .section--tight { padding: 72px 0; }
  .section-head { gap: 27px; }
  .section-head h2, .feature-copy h2, .cta h2, .legal h1 { font-size: clamp(40px,12vw,56px); }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 245px; }
  .outcome-card h3 { margin-top: 54px; }
  .product-card { min-height: 450px; border-radius: 25px; }
  .product-icon { margin-top: 62px; }
  .feature-row { gap: 45px; margin-top: 18px; padding: 35px 22px; border-radius: 27px; }
  .feature-row + .feature-row { margin-top: 18px; }
  .feature-visual { padding: 17px; border-radius: 20px; }
  .section--ink { width: calc(100% - 16px); border-radius: 29px; }
  .privacy-point { min-height: 190px; }
  .how-card { min-height: 270px; }
  .how-card::before { margin-bottom: 68px; }
  .faq-item summary { font-size: 17px; }
  .cta { padding: 53px 28px; border-radius: 27px; }
  .page-hero { padding: 125px 0 75px; }
  .page-hero::after { width: calc(100% - 28px); margin-top: 64px; margin-bottom: -75px; }
  .page-hero p { font-size: 17px; }
  .product-intro { padding: 85px 0; }
  .capability { padding: 85px 0; }
  .cap { min-height: 190px; }
  .case-card { padding: 30px; border-radius: 24px; }
  .legal-wrap { padding: 105px 0 100px; }
  .residency-map { min-height: 310px; }
  .site-footer { padding-top: 65px; }
}

/* -------------------------------------------------------------------------
   Modern compact direction — cleaner surfaces, faster rhythm, mobile first.
   ---------------------------------------------------------------------- */

:root {
  --paper: #f7f7f5;
  --paper-2: #eeeeeb;
  --ink: #141513;
  --muted: #666761;
  --line: rgba(20,21,19,.10);
  --line-dark: rgba(20,21,19,.18);
  --white: #ffffff;
  --orange: #ee642d;
  --orange-dark: #c94c1c;
  --orange-soft: #f8e4da;
}

body { background: var(--paper); }
body::before { display: none; }

.nav {
  border-color: rgba(20,21,19,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 28px rgba(20,21,19,.055);
}
.button { border-radius: 11px; }
.button--primary { background: var(--ink); }
.button--small { border-radius: 10px; }

.hero { padding-top: 135px; padding-bottom: 88px; }
.hero h1, .page-hero h1 { line-height: .96; }
.hero h1 em, .privacy-grid h2 em { font-family: inherit; font-weight: inherit; font-style: normal; }
.hero-copy { margin-top: 25px; }
.hero-actions { margin-top: 29px; }
.proof-line { margin-top: 26px; }
.app-window { border-radius: 20px; box-shadow: 0 24px 70px rgba(20,21,19,.14); }
.dashboard { border-radius: 13px; }

.ticker-inner { min-height: 68px; border-radius: 15px; }
.section { padding: 104px 0; }
.section--tight { padding: 78px 0; }
.section-head { gap: 68px; margin-bottom: 46px; }
.section-head h2, .feature-copy h2, .cta h2, .legal h1 { line-height: 1; }

.outcome-grid { gap: 12px; }
.outcome-card,
.outcome-card:nth-child(2),
.outcome-card:nth-child(4) {
  min-height: 225px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: none;
}
.outcome-card h3 { margin-top: 48px; font-size: 21px; }
.outcome-card:hover { box-shadow: 0 14px 42px rgba(20,21,19,.07); transform: translateY(-4px); }

.product-grid { gap: 12px; }
.product-card {
  min-height: 410px;
  padding: 29px;
  border-radius: 18px;
}
.product-card:nth-child(2) { background: #232420; }
.product-card:nth-child(3) { background: #33342f; }
.product-icon { width: 52px; height: 52px; margin-top: 55px; border-radius: 13px; }
.product-card h3 { font-size: 25px; }

.feature-row,
.feature-row:nth-child(2),
.feature-row:nth-child(3) {
  gap: 76px;
  margin-top: 0;
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.feature-row + .feature-row { margin-top: 0; }
.feature-visual { border-radius: 18px; box-shadow: 0 18px 52px rgba(20,21,19,.09); }

.section--ink {
  width: calc(100% - 28px);
  border-radius: 26px;
}
.privacy-grid { gap: 80px; }
.privacy-grid h2 { font-size: clamp(44px,4.8vw,68px); }
.privacy-points { gap: 8px; }
.privacy-point { min-height: 185px; padding: 24px; border-radius: 14px; }

.how-grid { gap: 12px; }
.how-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.how-card::before { margin-bottom: 60px; }
.faq-item summary { padding: 24px 4px; }

.cta { padding: 70px; border-radius: 22px; }
.cta::before { display: none; }
.site-footer { margin-top: 0; padding-top: 70px; }

.page-hero { padding-top: 135px; padding-bottom: 82px; }
.page-hero::after { margin-top: 65px; margin-bottom: -82px; }
.product-intro { gap: 70px; padding: 88px 0; }
.capability { padding: 86px 0; }
.capability-head { gap: 70px; }
.cap-grid { gap: 10px; margin-top: 44px; }
.cap {
  min-height: 185px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.case-grid { gap: 12px; margin-top: 36px; }
.case-card { padding: 32px; border: 1px solid var(--line); border-radius: 17px; }
.region-flow { gap: 10px; }
.region-step { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 15px; }
.legal-wrap { gap: 75px; padding: 105px 0 115px; }
.legal h2 { margin-top: 54px; padding-top: 22px; }
.legal-note { padding: 21px 23px; border-radius: 13px; background: var(--paper-2); }
.residency-map { min-height: 330px; border-radius: 18px; }

@media (max-width: 1100px) {
  .hero { padding-bottom: 72px; }
  .section { padding: 84px 0; }
  .section--tight { padding: 66px 0; }
  .feature-row, .feature-row:nth-child(2), .feature-row:nth-child(3) { gap: 42px; padding: 62px 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .shell { width: calc(100% - 32px); }
  .site-header { top: 7px; }
  .nav { min-height: 54px; border-radius: 12px; }
  .mobile-toggle { width: 38px; height: 38px; border-radius: 9px; }

  .hero { padding: 92px 0 42px; }
  .hero-grid { gap: 30px; }
  .hero h1, .page-hero h1 { font-size: clamp(44px,13vw,56px); letter-spacing: -.065em; }
  .hero-copy { margin-top: 18px; font-size: 15px; line-height: 1.55; }
  .hero-actions { margin-top: 22px; }
  .button { min-height: 42px; padding-inline: 16px; }
  .proof-line { margin-top: 20px; }
  .app-window { border-radius: 14px; }
  .window-bar { height: 36px; }
  .dashboard { min-height: 290px; border-radius: 10px; }
  .dash-body { padding: 10px; }
  .ticker { padding-inline: 8px; }
  .ticker-inner { min-height: 0; padding: 17px 19px; border-radius: 12px; }

  .section { padding: 58px 0; }
  .section--tight { padding: 48px 0; }
  .section-head { gap: 14px; margin-bottom: 27px; }
  .section-head h2, .feature-copy h2, .cta h2, .legal h1 { font-size: clamp(36px,10.8vw,46px); }
  .section-head p { font-size: 15px; line-height: 1.55; }
  .eyebrow { margin-bottom: 13px; }

  .outcome-grid { gap: 9px; }
  .outcome-card,
  .outcome-card:nth-child(2),
  .outcome-card:nth-child(4) {
    min-height: 0;
    padding: 22px;
    border-radius: 13px;
  }
  .outcome-card h3 { margin-top: 30px; font-size: 20px; }

  .product-grid { gap: 9px; }
  .product-card { min-height: 0; padding: 24px; border-radius: 14px; }
  .product-icon { width: 46px; height: 46px; margin: 36px 0 22px; border-radius: 11px; }
  .product-card h3 { font-size: 23px; }
  .product-card .card-list { margin-top: 16px; }

  .feature-row,
  .feature-row:nth-child(2),
  .feature-row:nth-child(3) {
    gap: 25px;
    padding: 48px 0;
  }
  .feature-row:first-child { padding-top: 20px; }
  .feature-copy > p { margin-top: 16px; line-height: 1.55; }
  .tick-list { gap: 9px; margin-top: 19px; }
  .feature-visual { padding: 14px; border-radius: 13px; box-shadow: 0 12px 34px rgba(20,21,19,.08); }

  .section--ink { width: 100%; border-radius: 0; }
  .privacy-grid { gap: 26px; }
  .privacy-grid h2 { font-size: 42px; }
  .privacy-points { gap: 7px; }
  .privacy-point { min-height: 0; padding: 21px; border-radius: 11px; }
  .privacy-icon { margin-bottom: 16px; }

  .how-grid { gap: 8px; }
  .how-card { min-height: 0; padding: 22px; border-radius: 13px; }
  .how-card::before { margin-bottom: 32px; }
  .faq-item summary { padding: 20px 2px; font-size: 16px; }
  .faq-item p { margin-bottom: 20px; }
  .cta { padding: 38px 24px; border-radius: 15px; }

  .page-hero { padding: 98px 0 54px; }
  .page-hero::after { margin-top: 42px; margin-bottom: -54px; }
  .page-hero p { margin-top: 19px; font-size: 16px; line-height: 1.55; }
  .breadcrumb { margin-bottom: 24px; }
  .product-intro { gap: 18px; padding: 58px 0; }
  .product-intro h2 { font-size: 30px; }
  .product-intro p { font-size: 16px; }
  .capability { padding: 58px 0; }
  .capability-head { gap: 15px; }
  .capability-lede { font-size: 15px; }
  .cap-grid { gap: 8px; margin-top: 28px; }
  .cap { min-height: 0; padding: 22px; border-radius: 13px; }
  .case-grid { gap: 8px; margin-top: 27px; }
  .case-card { padding: 23px; border-radius: 13px; }
  .region-flow { gap: 8px; margin-block: 30px; }
  .region-step { min-height: 0; padding: 22px; border-radius: 13px; }
  .region-step strong { margin-top: 25px; }
  .legal-wrap { padding: 82px 0 78px; }
  .legal .updated { margin-bottom: 34px; }
  .legal h2 { margin-top: 42px; padding-top: 18px; }
  .legal p, .legal li { font-size: 15px; line-height: 1.62; }
  .legal-note { margin: 23px 0; padding: 19px; border-radius: 11px; }
  .residency-map { min-height: 250px; margin: 30px 0; border-radius: 14px; }
  .site-footer { padding-top: 48px; }
  .footer-grid { gap: 30px; }
  .footer-bottom { margin-top: 45px; }
}
