
/* ════════════════════════════════════════════

   TOKENS

════════════════════════════════════════════ */

:root {

  --blue:      #1A3FD6;

  --blue-dark: #1430A8;

  --blue-mid:  #2952E3;

  --sky:       #7188EF;

  --ice:       #F4F5FD;

  --teal:      #00A798;

  --turquoise: #00C4B3;

  --forest:    #118A5E;

  --amber:     #D4A200;

  --red:       #E02C1C;

  --white:     #FFFFFF;

  --g100:      #F8F9FC;

  --g200:      #ECEEF6;

  --g400:      #9BA3C4;

  --g700:      #3D4466;

  --g900:      #1A1D2E;

  --buy-color: #1A3FD6;

  --rent-color:#00A798;

 

  /* Landing-specific */

  --land-bg:   #0D0F1A;

  --land-card: rgba(255,255,255,0.04);

  --land-border: rgba(255,255,255,0.09);

  --land-text: rgba(255,255,255,0.88);

  --land-muted: rgba(255,255,255,0.42);

}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

 

/* ════════════════════════════════════════════

   LANDING PAGE

════════════════════════════════════════════ */

#landing {

  font-family: 'DM Sans', sans-serif;

  background: var(--land-bg);

  color: var(--land-text);

  min-height: 100vh;

  overflow-x: hidden;

}

 

/* ── Noise grain overlay ── */

#landing::before {

  content: '';

  position: fixed; inset: 0; z-index: 0; pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");

  opacity: 0.028;

}

 

/* ── Ambient glow ── */

.glow-orb {

  position: fixed; border-radius: 50%; filter: blur(120px);

  pointer-events: none; z-index: 0;

}

.glow-orb-1 {

  width: 600px; height: 600px;

  background: radial-gradient(circle, rgba(26,63,214,0.22) 0%, transparent 70%);

  top: -150px; left: -150px;

  animation: drift1 18s ease-in-out infinite alternate;

}

.glow-orb-2 {

  width: 500px; height: 500px;

  background: radial-gradient(circle, rgba(0,167,152,0.16) 0%, transparent 70%);

  bottom: -100px; right: -100px;

  animation: drift2 22s ease-in-out infinite alternate;

}

@keyframes drift1 { to { transform: translate(80px, 60px); } }

@keyframes drift2 { to { transform: translate(-60px, -80px); } }

 

/* ── Nav ── */

.land-nav {

  position: fixed; top: 0; left: 0; right: 0; z-index: 100;

  padding: 0 48px;

  height: 64px;

  display: flex; align-items: center; justify-content: space-between;

  border-bottom: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(20px);

  background: rgba(13,15,26,0.7);

}

.nav-logo {

  font-family: 'Playfair Display', serif;

  font-size: 18px; font-weight: 700;

  color: white; letter-spacing: -0.3px;

}

.nav-logo span { color: var(--sky); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {

  font-size: 13px; font-weight: 500; color: var(--land-muted);

  text-decoration: none; transition: color 0.2s;

  letter-spacing: 0.1px;

}

.nav-links a:hover { color: white; }

.nav-cta {

  font-size: 13px; font-weight: 600; color: white;

  background: var(--blue); border: none;

  padding: 9px 20px; border-radius: 8px; cursor: pointer;

  transition: all 0.18s; letter-spacing: -0.1px;

  box-shadow: 0 4px 16px rgba(26,63,214,0.4);

}

.nav-cta:hover { background: var(--blue-mid); transform: translateY(-1px); }

 

/* ── Hero ── */

.hero {

  position: relative; z-index: 1;

  padding: 160px 48px 100px;

  max-width: 1100px; margin: 0 auto;

}

.hero-eyebrow {

  display: inline-flex; align-items: center; gap: 8px;

  border: 1px solid var(--land-border);

  border-radius: 20px; padding: 6px 14px;

  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;

  color: var(--sky); margin-bottom: 32px;

  background: rgba(113,136,239,0.08);

  animation: fadeUp 0.8s ease both;

}

.hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--turquoise); }

 

.hero-h1 {

  font-family: 'Playfair Display', serif;

  font-size: clamp(48px, 6vw, 78px);

  font-weight: 900; line-height: 1.05;

  letter-spacing: -2px;

  color: white;

  max-width: 720px;

  animation: fadeUp 0.8s 0.1s ease both;

}

.hero-h1 em {

  font-style: italic;

  background: linear-gradient(135deg, var(--sky), var(--turquoise));

  -webkit-background-clip: text; -webkit-text-fill-color: transparent;

  background-clip: text;

  display: inline-block;

  padding-right: 6px;

}

 

.hero-sub {

  font-size: 17px; font-weight: 400; color: var(--land-muted);

  line-height: 1.65; max-width: 540px; margin-top: 24px;

  animation: fadeUp 0.8s 0.2s ease both;

}

 

.hero-actions {

  display: flex; align-items: center; gap: 16px; margin-top: 40px;

  animation: fadeUp 0.8s 0.3s ease both;

}

.btn-primary {

  display: inline-flex; align-items: center; gap: 8px;

  background: var(--blue); border: none;

  color: white; font-family: 'DM Sans', sans-serif;

  font-size: 15px; font-weight: 600; padding: 14px 28px;

  border-radius: 10px; cursor: pointer; transition: all 0.2s;

  box-shadow: 0 6px 24px rgba(26,63,214,0.45);

  letter-spacing: -0.2px;

}

.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,63,214,0.5); }

.btn-primary:active { transform: translateY(0); }

.btn-ghost-white {

  display: inline-flex; align-items: center; gap: 8px;

  background: transparent; border: 1px solid var(--land-border);

  color: var(--land-muted); font-family: 'DM Sans', sans-serif;

  font-size: 14px; font-weight: 500; padding: 14px 24px;

  border-radius: 10px; cursor: pointer; transition: all 0.2s;

}

.btn-ghost-white:hover { border-color: rgba(255,255,255,0.2); color: white; }

 

/* ── Hero stats strip ── */

.hero-stats {

  display: flex; gap: 48px; margin-top: 72px; padding-top: 40px;

  border-top: 1px solid var(--land-border);

  animation: fadeUp 0.8s 0.4s ease both;

}

.hero-stat {}


.hero-stat .sv {

  font-family: 'Playfair Display', serif;

  font-size: 36px; font-weight: 700; color: white; letter-spacing: -1.5px;

}

.hero-stat .sv span { color: var(--sky); }




.hero-stat .sl {

  font-size: 12px; font-weight: 500; color: var(--land-muted);

  margin-top: 4px; letter-spacing: 0.2px;

}

 

/* ── Mock chart preview ── */

.hero-visual {

  position: absolute; right: 0; top: 130px;

  width: 420px; pointer-events: none;

  animation: fadeIn 1.2s 0.5s ease both;

  z-index: -1;

}

@media (max-width: 1000px) { .hero-visual { display: none; } }

 

/* ── How it works ── */

.section {

  position: relative; z-index: 1;

  padding: 80px 48px;

  max-width: 1100px; margin: 0 auto;

}

.section-tag {

  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;

  color: var(--teal); margin-bottom: 16px; display: block;

}

.section-h2 {

  font-family: 'Playfair Display', serif;

  font-size: clamp(32px, 4vw, 50px); font-weight: 700;

  color: white; letter-spacing: -1.5px; line-height: 1.1;

  margin-bottom: 16px;

}

.section-sub {

  font-size: 15px; color: var(--land-muted); line-height: 1.65;

  max-width: 520px; margin-bottom: 60px;

}

 

.how-grid {

  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;

}

.how-card {

  background: var(--land-card); border: 1px solid var(--land-border);

  padding: 32px 28px; position: relative; overflow: hidden;

  transition: background 0.2s;

}

.how-card:first-child { border-radius: 14px 0 0 14px; }

.how-card:last-child  { border-radius: 0 14px 14px 0; }

.how-card:hover { background: rgba(255,255,255,0.06); }

.how-card::before {

  content: '';

  position: absolute; top: 0; left: 0; right: 0; height: 2px;

  background: linear-gradient(90deg, var(--blue), var(--teal));

  opacity: 0; transition: opacity 0.2s;

}

.how-card:hover::before { opacity: 1; }

.how-num {

  font-family: 'Playfair Display', serif;

  font-size: 52px; font-weight: 900; color: rgba(255,255,255,0.22);

  line-height: 1; margin-bottom: 20px; letter-spacing: -3px;

}

.how-icon { font-size: 28px; margin-bottom: 16px; }

.how-title {

  font-size: 15px; font-weight: 700; color: white; margin-bottom: 10px;

}

.how-desc { font-size: 13px; color: var(--land-muted); line-height: 1.65; }

 

/* ── What's inside ── */

.features-grid {

  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;

}

.feat-card {

  background: var(--land-card); border: 1px solid var(--land-border);

  border-radius: 12px; padding: 24px 26px;

  display: flex; gap: 16px; align-items: flex-start;

  transition: background 0.2s, border-color 0.2s;

}

.feat-card:hover { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.14); }

.feat-icon-wrap {

  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;

  display: flex; align-items: center; justify-content: center;

  font-size: 18px;

}

.feat-body h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }

.feat-body p  { font-size: 12px; color: var(--land-muted); line-height: 1.6; }

 

/* ── Context / SA section ── */

.context-strip {

  position: relative; z-index: 1;

  background: rgba(26,63,214,0.08);

  border-top: 1px solid rgba(26,63,214,0.2);

  border-bottom: 1px solid rgba(26,63,214,0.2);

  padding: 60px 48px;

}

.context-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.context-facts { display: flex; flex-direction: column; gap: 20px; }

.fact-row {

  display: flex; align-items: flex-start; gap: 14px;

  padding-bottom: 20px; border-bottom: 1px solid var(--land-border);

}

.fact-row:last-child { border-bottom: none; padding-bottom: 0; }

.fact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.fact-text h5 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }

.fact-text p  { font-size: 12px; color: var(--land-muted); line-height: 1.6; }

 

/* ── CTA section ── */

.cta-section {

  position: relative; z-index: 1;

  padding: 100px 48px;

  text-align: center;

}

.cta-inner { max-width: 600px; margin: 0 auto; }

.cta-section .section-h2 { margin-bottom: 16px; }

.cta-section .section-sub { margin: 0 auto 40px; }

 

/* ── Footer ── */

.land-footer {

  position: relative; z-index: 1;

  border-top: 1px solid var(--land-border);

  padding: 32px 48px;

  display: flex; align-items: center; justify-content: space-between;

}

.land-footer p { font-size: 12px; color: var(--land-muted); }

.land-footer-links { display: flex; gap: 24px; }

.land-footer-links span { font-size: 12px; color: var(--land-muted); }

 

/* ── Divider ── */

.section-divider {

  position: relative; z-index: 1;

  height: 1px; background: var(--land-border);

  margin: 0 48px;

}

 

/* ════════════════════════════════════════════

   DASHBOARD

════════════════════════════════════════════ */

#dashboard { display: none; font-family: 'DM Sans', sans-serif; }

 

/* ── App header ── */

.app-header {

  background: var(--blue);

  height: 60px; padding: 0 40px;

  display: flex; align-items: center; justify-content: space-between;

  position: sticky; top: 0; z-index: 100;

  box-shadow: 0 2px 20px rgba(26,63,214,0.35);

}

.app-header-l { display: flex; align-items: center; gap: 16px; }

.app-title { font-size: 17px; font-weight: 700; color: white; letter-spacing: -0.4px; font-family: 'Playfair Display', serif; }

.hdr-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.25); }

.app-meta { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 400; }

.hdr-badge {

  display: inline-flex; align-items: center; gap: 6px;

  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.22);

  color: rgba(255,255,255,0.85); border-radius: 20px; font-size: 11px; font-weight: 600;

  padding: 4px 11px;

}

.hdr-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--turquoise); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

 

.btn-back {

  display: inline-flex; align-items: center; gap: 7px;

  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);

  color: white; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;

  padding: 7px 14px; border-radius: 8px; cursor: pointer; transition: all 0.18s;

}

.btn-back:hover { background: rgba(255,255,255,0.18); }

 

/* ── Shell ── */

.shell {

  display: grid; grid-template-columns: 310px 1fr;

  min-height: calc(100vh - 60px);

  background: var(--g100);

}

 

/* ── Sidebar ── */

.sidebar {

  background: white; border-right: 1px solid var(--g200);

  padding: 24px 20px 60px; overflow-y: auto;

}

.sidebar-section { margin-bottom: 24px; }

.section-label {

  font-size: 10px; font-weight: 700; text-transform: uppercase;

  letter-spacing: 1.2px; color: var(--g400);

  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;

}

.section-label::after { content: ''; flex: 1; height: 1px; background: var(--g200); }

.section-pill { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; }

.pill-buy  { background: rgba(26,63,214,0.1); color: var(--blue); }

.pill-rent { background: rgba(0,167,152,0.1); color: var(--teal); }

.pill-general { background: var(--g200); color: var(--g700); }

 

.field { margin-bottom: 11px; }

.field label { display: block; font-size: 11px; font-weight: 600; color: var(--g700); margin-bottom: 4px; }

.field .hint  { font-size: 10px; color: var(--g400); margin-top: 3px; }

.input-wrap { position: relative; }

.input-prefix { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 600; color: var(--g400); pointer-events: none; }

.input-suffix { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 600; color: var(--g400); pointer-events: none; }

.field input[type="number"] {

  width: 100%; background: var(--g100); border: 1.5px solid var(--g200);

  border-radius: 8px; padding: 8px 36px 8px 28px;

  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; color: var(--g900);

  transition: border-color 0.15s, box-shadow 0.15s;

  -moz-appearance: textfield;

}

.field input[type="number"]:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,63,214,0.1); background: white; }

.field input[type="number"]::-webkit-inner-spin-button,

.field input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

 

.btn-calc {

  width: 100%; padding: 12px;

  background: var(--blue); border: none; border-radius: 10px;

  color: white; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;

  cursor: pointer; transition: all 0.18s;

  box-shadow: 0 4px 14px rgba(26,63,214,0.35); margin-top: 8px;

}

.btn-calc:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,63,214,0.42); }

.btn-reset {

  width: 100%; padding: 9px;

  background: transparent; border: 1.5px solid var(--g200); border-radius: 10px;

  color: var(--g400); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;

  cursor: pointer; transition: all 0.15s; margin-top: 6px;

}

.btn-reset:hover { border-color: var(--g400); color: var(--g700); }

 

/* ── Main ── */

.main { padding: 24px 28px 60px; overflow-y: auto; }

 

/* ── Verdict ── */

.verdict-banner {

  border-radius: 14px; padding: 20px 22px;

  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;

  animation: fadeUp 0.4s ease both;

}

.verdict-banner.buy  { background: rgba(26,63,214,0.07); border: 1.5px solid rgba(26,63,214,0.2); }

.verdict-banner.rent { background: rgba(0,167,152,0.07); border: 1.5px solid rgba(0,167,152,0.2); }

.verdict-icon { font-size: 28px; }

.verdict-text h2 { font-size: 15px; font-weight: 700; color: var(--g900); letter-spacing: -0.3px; }

.verdict-text p  { font-size: 12px; color: var(--g700); margin-top: 3px; line-height: 1.5; }

.verdict-delta { margin-left: auto; text-align: right; flex-shrink: 0; }

.verdict-delta .dv { font-size: 24px; font-weight: 800; letter-spacing: -1px; font-family: 'DM Sans', sans-serif; }

.verdict-delta .dl { font-size: 10px; font-weight: 600; color: var(--g400); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px; }

 

/* ── KPIs ── */

.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 12px; margin-bottom: 20px; }

.kpi-card {

  background: white; border-radius: 12px; overflow: hidden;

  box-shadow: 0 2px 12px rgba(26,63,214,0.08), 0 1px 3px rgba(0,0,0,0.04);

  transition: transform 0.2s, box-shadow 0.2s; animation: fadeUp 0.4s ease both;

}

.kpi-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,63,214,0.12); }

.kpi-bar { height: 3px; }

.kpi-body { padding: 12px 16px 14px; }

.kpi-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--g400); margin-bottom: 6px; }

.kpi-value { font-size: 18px; font-weight: 800; letter-spacing: -0.8px; line-height: 1; font-family: 'DM Sans', sans-serif; }

.kpi-sub { font-size: 10px; color: var(--g400); margin-top: 4px; }

 

/* ── Breakeven ── */

.breakeven-card {

  background: linear-gradient(135deg, rgba(26,63,214,0.06) 0%, rgba(0,167,152,0.06) 100%);

  border: 1.5px solid var(--g200); border-radius: 12px;

  padding: 16px 20px; display: flex; align-items: center; gap: 14px;

  margin-bottom: 18px; animation: fadeUp 0.4s ease both;

}

.be-icon { font-size: 22px; }

.be-body h3 { font-size: 13px; font-weight: 700; color: var(--g900); }

.be-body p  { font-size: 11px; color: var(--g700); margin-top: 3px; }

.be-year { margin-left: auto; font-size: 32px; font-weight: 800; letter-spacing: -2px; color: var(--blue); flex-shrink: 0; font-family: 'DM Sans', sans-serif; }

.be-year span { font-size: 12px; font-weight: 600; letter-spacing: -0.5px; }

 

/* ── Charts ── */

.chart-grid-full { margin-bottom: 18px; }

.chart-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }

.chart-card {

  background: white; border-radius: 12px; padding: 20px 22px;

  box-shadow: 0 1px 8px rgba(26,63,214,0.07); animation: fadeUp 0.4s ease both;

}

.chart-title { font-size: 13px; font-weight: 700; color: var(--g900); margin-bottom: 2px; }

.chart-sub   { font-size: 11px; color: var(--g400); margin-bottom: 14px; }

.ch { position: relative; }

.ch.h270 { height: 270px; }

.ch.h210 { height: 210px; }

.legend { display: flex; gap: 14px; margin-bottom: 12px; }

.leg-item { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--g700); }

.leg-dot { width: 10px; height: 10px; border-radius: 3px; }

 

/* ── Table ── */

.table-card {

  background: white; border-radius: 12px;

  box-shadow: 0 1px 8px rgba(26,63,214,0.07); overflow: hidden;

  animation: fadeUp 0.4s ease both; margin-bottom: 18px;

}

.table-toolbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--g200); }

.table-toolbar .ttitle { font-size: 14px; font-weight: 700; color: var(--g900); flex: 1; }

.t-wrap { overflow-x: auto; max-height: 300px; overflow-y: auto; }

table { width: 100%; border-collapse: collapse; font-size: 12px; }

thead th {

  padding: 9px 14px; text-align: right;

  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--g400);

  background: var(--g100); border-bottom: 1px solid var(--g200); position: sticky; top: 0;

}

thead th:first-child { text-align: left; }

tbody td { padding: 8px 14px; text-align: right; border-bottom: 1px solid var(--g200); color: var(--g900); font-variant-numeric: tabular-nums; }

tbody td:first-child { text-align: left; font-weight: 600; color: var(--g700); }

tbody tr:last-child td { border-bottom: none; }

tbody tr:hover td { background: var(--g100); }

.pos { color: var(--forest) !important; font-weight: 600; }

.neg { color: var(--red) !important; }

 

/* ── Disclaimer ── */

.disclaimer {

  background: rgba(212,162,0,0.07); border: 1px solid rgba(212,162,0,0.2);

  border-radius: 10px; padding: 14px 18px; margin-bottom: 18px;

  display: flex; gap: 12px; align-items: flex-start; animation: fadeUp 0.4s ease both;

}

.disc-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.disclaimer p { font-size: 11px; color: var(--g700); line-height: 1.6; }

 

/* ════════════════════════════════════════════

   SHARED ANIMATIONS

════════════════════════════════════════════ */

@keyframes fadeUp {

  from { opacity: 0; transform: translateY(14px); }

  to   { opacity: 1; transform: translateY(0); }

}

@keyframes fadeIn {

  from { opacity: 0; }

  to   { opacity: 1; }

}

 

/* ── Transition overlay ── */

.page-transition {

  position: fixed; inset: 0; z-index: 999;

  background: var(--blue);

  transform: translateY(-100%);

  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);

  pointer-events: none;

}

.page-transition.entering { transform: translateY(0); pointer-events: all; }

.page-transition.leaving  { transform: translateY(100%); }

 

/* ── Toast ── */

#toast {

  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);

  background: var(--g900); color: white; font-size: 13px; font-weight: 500;

  padding: 10px 20px; border-radius: 10px;

  box-shadow: 0 8px 30px rgba(0,0,0,0.25);

  opacity: 0; transition: all 0.25s; pointer-events: none; z-index: 9999;

}

#toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

 

/* ── Scrollbar ── */

::-webkit-scrollbar { width: 5px; height: 5px; }

::-webkit-scrollbar-track { background: transparent; }

::-webkit-scrollbar-thumb { background: var(--g200); border-radius: 4px; }

 

/* ── Responsive ── */

@media (max-width: 900px) {

  .how-grid, .features-grid, .context-inner { grid-template-columns: 1fr; }

  .how-card:first-child { border-radius: 14px 14px 0 0; }

  .how-card:last-child  { border-radius: 0 0 14px 14px; }

  .hero-stats { gap: 32px; flex-wrap: wrap; }

  .shell { grid-template-columns: 1fr; }

  .chart-grid-2 { grid-template-columns: 1fr; }

  .land-nav { padding: 0 24px; }

  .hero { padding: 120px 24px 80px; }

  .section { padding: 60px 24px; }

  .context-strip { padding: 60px 24px; }

  .cta-section { padding: 80px 24px; }

  .land-footer { flex-direction: column; gap: 16px; padding: 24px; }

}
