/* ============================================================
   Gonanku - landing.css
   Editorial premium SaaS — palette match dashboard (navy + ice blue)
   Inspirasi: rampay.webflow.io (warm canvas, big serif italic accent,
   monochrome restraint, product-first hero). NO purple gradients,
   NO AI-generic orbs.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Canvas - warm off-white seperti Rampay */
  --canvas: #F4F1EA;
  --canvas-soft: #EAE6DC;
  --paper: #FFFFFF;

  /* Ink - deep navy DARI dashboard (base.css --navy-deep #0F2854) */
  --ink: #0F2854;
  --ink-soft: #1C4D8D;
  --ink-mute: #6B7B95;
  --ink-faint: #A8B3C5;
  --line: rgba(15, 40, 84, 0.12);
  --line-soft: rgba(15, 40, 84, 0.06);

  /* Accent surface match dashboard */
  --ice: #DCEAF5;
  --soft-blue: #3E7CB1;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-card: 0 1px 2px rgba(15,40,84,.04), 0 8px 24px rgba(15,40,84,.06);
  --shadow-lift: 0 20px 60px rgba(15,40,84,.12);
  --shadow-screen: 0 30px 80px rgba(15,40,84,.18), 0 2px 8px rgba(15,40,84,.06);

  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--ink); color: var(--canvas); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,234,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244,241,234,.95);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
/* brand-mark sekarang <img> bukan span. Box tipis dengan kontras lembut
   biar logo asli kelihatan jelas di atas canvas cream. */
.brand-mark {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--paper);
  padding: 4px;
  box-shadow: 0 1px 3px rgba(15, 40, 84, .08);
}
.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a { font-size: 14px; color: var(--ink-mute); font-weight: 500; transition: color .2s; }
.nav-menu a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; background: var(--ink); color: var(--canvas);
  border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: -.01em;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: #0a1d3f; transform: translateY(-1px); }
.nav-cta .arr { transition: transform .2s; }
.nav-cta:hover .arr { transform: translateX(3px); }

/* ---------- Grid background pattern (Linear/Vercel-style linework) ----------
   Pakai dua linear-gradient repeating: garis vertikal + garis horizontal,
   tipis (1px) di atas line-soft. Mask-image fade-out di tepi supaya tidak
   menabrak konten. Parallax dilakukan dari JS lewat translate3d.
   ---------------------------------------------------------------------- */
.has-grid { position: relative; overflow: hidden; }
.grid-overlay {
  position: absolute;
  inset: -10% -5% -5%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(15, 40, 84, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 40, 84, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  /* Sapuan fade radial di tengah supaya grid terlihat solid di edge dan
     lembut di area konten — terkesan editorial bukan grid biasa. */
  mask-image: radial-gradient(
    ellipse 70% 80% at 50% 40%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 80% at 50% 40%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
  will-change: transform;
}
/* Konten hero/cta posisi relatif supaya tidak ketimbun overlay. */
.has-grid > .wrap,
.has-grid > .hero-stage,
.has-grid > .stats { position: relative; z-index: 1; }

/* Elemen parallax: hint browser untuk compositor, transform via JS. */
[data-parallax] { will-change: transform; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 60px; text-align: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(255,255,255,.5);
  font-size: 12px; font-weight: 500; color: var(--ink-soft);
  letter-spacing: .01em; margin-bottom: 32px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

h1.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: .98; letter-spacing: -.045em;
  font-weight: 600; margin: 0 auto 28px;
  color: var(--ink); max-width: 980px;
}
.hero-title .serif {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400; letter-spacing: -.02em;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-mute);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.5;
}
.hero-actions {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--ink); color: var(--canvas);
  border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(15,40,84,.25);
}
.btn-primary:hover { background: #0a1d3f; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,40,84,.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; color: var(--ink);
  font-size: 15px; font-weight: 600; border-radius: 999px;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(15,40,84,.06); }

.hero-meta {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; font-size: 13px; color: var(--ink-mute);
}
.hero-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

/* ---------- Hero mockup (product-first) ---------- */
.hero-stage { margin: 80px auto 0; max-width: 1180px; padding: 0 20px; position: relative; }
.hero-screen {
  position: relative; border-radius: 20px;
  background: var(--paper); box-shadow: var(--shadow-screen);
  overflow: hidden; border: 1px solid var(--line);
}
.hero-screen::before {
  content: ""; display: block; height: 38px;
  background: #F8F6F1;
  border-bottom: 1px solid var(--line-soft);
  background-image:
    radial-gradient(circle 5px at 18px 19px, #FF5F57 50%, transparent 51%),
    radial-gradient(circle 5px at 36px 19px, #FEBC2E 50%, transparent 51%),
    radial-gradient(circle 5px at 54px 19px, #28C840 50%, transparent 51%);
}
.screen-body { display: grid; grid-template-columns: 220px 1fr; min-height: 520px; }
.screen-side {
  background: #FAFAF7; border-right: 1px solid var(--line-soft); padding: 24px 18px;
}
.screen-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; margin-bottom: 28px; }
.screen-brand .m {
  width: 24px; height: 24px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper);
  padding: 2px;
  box-shadow: 0 1px 2px rgba(15, 40, 84, .1);
}
.screen-nav { display: flex; flex-direction: column; gap: 4px; }
.screen-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13px; color: var(--ink-mute); font-weight: 500;
}
.screen-nav-item.active { background: var(--ink); color: var(--canvas); }
.screen-nav-item .ic { width: 14px; height: 14px; border-radius: 4px; background: currentColor; opacity: .6; }
.screen-nav-item.active .ic { opacity: 1; }

.screen-main { padding: 28px 32px; }
.screen-h { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 4px; }
.screen-p { font-size: 13px; color: var(--ink-mute); margin: 0 0 22px; }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.kpi { border: 1px solid var(--line-soft); border-radius: 14px; padding: 16px; background: #FCFBF7; }
.kpi-label { font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.kpi-value { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-top: 4px; }
.kpi-trend { font-size: 11px; color: #16A34A; margin-top: 6px; font-weight: 600; }

.chart { border: 1px solid var(--line-soft); border-radius: 14px; padding: 18px; background: var(--paper); height: 200px; position: relative; overflow: hidden; }
.chart-h { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.chart svg { width: 100%; height: 140px; }

/* Floating accent cards on hero mockup */
.float-chat {
  position: absolute; right: -10px; bottom: -30px; width: 290px;
  background: var(--paper); border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow-lift); border: 1px solid var(--line);
  animation: fl 6s ease-in-out infinite;
}
.float-chat-h { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-mute); margin-bottom: 12px; }
.float-chat-h .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: pulse 2s infinite;
}
.bub { font-size: 13px; padding: 10px 12px; border-radius: 12px; margin-bottom: 8px; max-width: 85%; }
.bub.me { background: var(--ink); color: var(--canvas); margin-left: auto; border-bottom-right-radius: 4px; }
.bub.ai { background: var(--ice); color: var(--ink); border-bottom-left-radius: 4px; }

.float-vision {
  position: absolute; left: -10px; top: 60px; width: 230px;
  background: var(--paper); border-radius: 16px; padding: 14px;
  box-shadow: var(--shadow-lift); border: 1px solid var(--line);
  animation: fl 7s ease-in-out infinite reverse;
}
.fv-img {
  height: 110px; border-radius: 10px;
  background: linear-gradient(135deg, #DCEAF5, #3E7CB1);
  position: relative; overflow: hidden; margin-bottom: 10px;
}
.fv-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,40,84,.4));
}
.fv-tag {
  display: inline-block; padding: 3px 8px; border-radius: 999px;
  background: var(--canvas-soft); font-size: 10px; font-weight: 600;
  color: var(--ink-mute); margin-right: 4px; margin-bottom: 3px;
}
.fv-h { font-size: 12px; font-weight: 700; margin-bottom: 6px; }

@keyframes fl { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,.6); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ---------- Logo strip ---------- */
.logos { padding: 120px 0 80px; text-align: center; }
.logos-label {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; margin-bottom: 28px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap; opacity: .65;
}
.logos-row span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--ink-soft); font-weight: 500;
}

/* ---------- Section heading ---------- */
.section { padding: 100px 0; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-tag {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -.035em;
  font-weight: 600; margin: 0 0 16px;
}
.section-title .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.section-sub { font-size: 17px; color: var(--ink-mute); line-height: 1.55; }

/* ---------- Feature grid (3 col editorial) ---------- */
.f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.f-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.f-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.f-num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--ink-faint); margin-bottom: 32px;
}
.f-h { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 0 0 10px; line-height: 1.2; }
.f-p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; margin: 0; }
.f-ill {
  margin-top: 28px; height: 140px; border-radius: 14px;
  background: var(--canvas); border: 1px solid var(--line-soft);
  display: grid; place-items: center;
  color: var(--ink-faint); font-size: 11px;
  overflow: hidden; position: relative;
}
.f-ill.ill-meta {
  background: linear-gradient(180deg, var(--canvas) 0%, #ECE7DC 100%);
  padding: 14px; display: block;
}
.tag-mini {
  display: inline-block; padding: 4px 10px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; font-size: 11px; font-weight: 500;
  color: var(--ink); margin: 0 4px 6px 0;
}
.f-ill.ill-vision { padding: 0; }
.f-ill.ill-vision .v {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.6), transparent 50%),
    linear-gradient(135deg, #1C4D8D, #0F2854);
  position: relative;
}
.f-ill.ill-vision .scan {
  position: absolute; left: 12%; right: 12%; top: 30%; bottom: 30%;
  border: 1.5px dashed rgba(255,255,255,.7); border-radius: 6px;
}
.f-ill.ill-vision .scan::after {
  content: "FACE • 0.97"; position: absolute; top: -22px; left: 0;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.8);
}
.f-ill.ill-chat {
  padding: 14px; display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start; justify-content: center;
}
.f-ill.ill-chat .b {
  font-size: 11px; padding: 6px 10px; border-radius: 10px;
  background: var(--ink); color: var(--canvas); max-width: 80%;
}
.f-ill.ill-chat .b.r { background: var(--ice); color: var(--ink); align-self: flex-end; }
.f-ill.ill-priv { display: grid; place-items: center; }
.f-ill.ill-priv svg { width: 56px; height: 56px; color: var(--ink); }

/* ---------- Showcase rows (alternating editorial) ---------- */
.showcase-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 120px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.flip .sc-copy { order: 2; }

.sc-tag {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: var(--ink-soft); margin-bottom: 16px;
}
.sc-h {
  font-size: clamp(28px, 3vw, 40px); line-height: 1.1;
  letter-spacing: -.03em; font-weight: 600; margin: 0 0 18px;
}
.sc-p {
  font-size: 16px; color: var(--ink-mute); line-height: 1.6;
  margin: 0 0 22px; max-width: 460px;
}
.sc-list { list-style: none; padding: 0; margin: 0 0 24px; }
.sc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--ink);
  border-top: 1px solid var(--line-soft);
}
.sc-list li:first-child { border-top: 0; }
.sc-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); margin-top: 8px; flex-shrink: 0;
}
.sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}

.sc-visual {
  border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-card);
  border: 1px solid var(--line); padding: 24px;
  position: relative; overflow: hidden; min-height: 380px;
}

.sv-dash .kpi-row { grid-template-columns: repeat(2, 1fr); margin-bottom: 14px; }
.sv-dash .chart { height: 180px; }

.sv-chat { display: flex; flex-direction: column; gap: 10px; min-height: 380px; justify-content: center; }
.sv-chat .b {
  max-width: 78%; padding: 12px 16px; border-radius: 16px;
  font-size: 14px; line-height: 1.5;
}
.sv-chat .b.me { background: var(--ink); color: var(--canvas); margin-left: auto; border-bottom-right-radius: 4px; }
.sv-chat .b.ai { background: var(--canvas); color: var(--ink); border-bottom-left-radius: 4px; border: 1px solid var(--line-soft); }
.sv-chat .typing {
  display: inline-flex; gap: 3px; padding: 14px 16px;
  background: var(--canvas); border-radius: 16px;
  border: 1px solid var(--line-soft);
}
.sv-chat .typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute);
  animation: ty 1.2s infinite;
}
.sv-chat .typing span:nth-child(2) { animation-delay: .2s; }
.sv-chat .typing span:nth-child(3) { animation-delay: .4s; }
@keyframes ty { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

.sv-vision .vp {
  height: 200px; border-radius: 12px;
  background: linear-gradient(135deg, #3E7CB1 0%, #0F2854 100%);
  position: relative; overflow: hidden; margin-bottom: 18px;
}
.sv-vision .vp .box {
  position: absolute; border: 2px solid rgba(255,255,255,.9); border-radius: 6px;
}
.sv-vision .vp .box::after {
  content: attr(data-label);
  position: absolute; top: -22px; left: 0;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px;
}
.sv-vision .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.sv-vision .tags .tg {
  font-size: 11px; padding: 4px 10px; background: var(--ice); color: var(--ink);
  border-radius: 999px; font-weight: 600;
}
.sv-vision .extract {
  font-size: 13px; padding: 12px; background: var(--canvas);
  border: 1px solid var(--line-soft); border-radius: 10px;
  font-family: ui-monospace, SF Mono, monospace;
  color: var(--ink-soft); line-height: 1.5;
}

/* ---------- Stats band (dark hero strip) ---------- */
.stats {
  background: var(--ink); color: var(--canvas);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  max-width: 1240px; margin: 0 auto;
  text-align: center; position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(60,124,177,.18), transparent 60%),
    radial-gradient(700px 400px at 80% 100%, rgba(220,234,245,.08), transparent 60%);
  pointer-events: none;
}
.stats .inner { position: relative; }
.stats-eyebrow {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 16px;
}
.stats-h {
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1;
  letter-spacing: -.03em; font-weight: 600;
  margin: 0 auto 56px; max-width: 720px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 48px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: -.03em;
  font-weight: 400; margin-bottom: 10px;
}
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ---------- Steps timeline ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.step {
  padding: 40px 32px 8px 0;
  border-right: 1px solid var(--line); position: relative;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step-n {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--ink-mute);
  margin-bottom: 32px; display: block;
}
.step-h { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 0 0 10px; }
.step-p {
  font-size: 14px; color: var(--ink-mute); margin: 0;
  max-width: 280px; line-height: 1.6;
}

/* ---------- CTA ---------- */
.cta-wrap { padding: 120px 0 100px; text-align: center; }
.cta-h {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1; letter-spacing: -.04em;
  font-weight: 600; margin: 0 auto 24px; max-width: 820px;
}
.cta-h .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cta-p { font-size: 17px; color: var(--ink-mute); max-width: 520px; margin: 0 auto 36px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 36px; margin-top: 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.foot-brand-p { font-size: 13px; color: var(--ink-mute); max-width: 280px; margin: 16px 0 0; line-height: 1.6; }
.foot-col h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-mute); font-weight: 600; margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { font-size: 14px; color: var(--ink); transition: opacity .2s; }
.foot-col a:hover { opacity: .6; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-mute);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .nav-menu { display: none; }
  .hero { padding: 60px 0 40px; }
  .hero-stage { margin-top: 56px; }
  .screen-body { grid-template-columns: 1fr; }
  .screen-side { display: none; }
  .float-chat, .float-vision { display: none; }
  .f-grid { grid-template-columns: 1fr; }
  .showcase-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 80px; }
  .showcase-row.flip .sc-copy { order: 0; }
  .stats { padding: 56px 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .step:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .nav-inner { height: 64px; }
  .hero { padding: 40px 0 24px; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .hero-meta .sep { display: none; }
  .section { padding: 64px 0; }
  .stats { padding: 48px 20px; border-radius: var(--radius-lg); }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 32px; }
  .cta-wrap { padding: 72px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; }
  .screen-main { padding: 18px; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
}
