/* ===== Ranbval Health — Landing ===== */
:root {
  --bg: #05070d;
  --bg-2: #080c16;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-brd: rgba(255, 255, 255, 0.09);
  --ink: #eaf2ff;
  --muted: #9fb0c9;
  --muted-2: #66748f;
  --cyan: #22d3ee;
  --teal: #10b981;
  --emerald: #34d399;
  --blue: #3b82f6;
  --pink: #f472b6;
  --warn: #fbbf24;
  --grad: linear-gradient(120deg, #22d3ee 0%, #34d399 55%, #10b981 100%);
  --grad-soft: linear-gradient(120deg, rgba(34,211,238,.14), rgba(16,185,129,.14));
  --radius: 22px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.75);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strike { text-decoration: line-through; text-decoration-color: rgba(244,114,182,.6); text-decoration-thickness: 3px; color: var(--muted); }

/* ===== Background ===== */
.bg-mesh { position: fixed; inset: 0; z-index: -3; overflow: hidden; background: radial-gradient(1200px 600px at 70% -10%, rgba(16,185,129,.12), transparent 60%), radial-gradient(900px 500px at 10% 10%, rgba(34,211,238,.12), transparent 55%), var(--bg); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; animation: float 18s ease-in-out infinite; }
.orb-1 { width: 460px; height: 460px; background: #10b981; top: -120px; right: -80px; }
.orb-2 { width: 420px; height: 420px; background: #22d3ee; bottom: -140px; left: -100px; animation-delay: -6s; }
.orb-3 { width: 380px; height: 380px; background: #3b82f6; top: 40%; left: 55%; opacity: .3; animation-delay: -11s; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%); }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.08); } }

#particles { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.cursor-glow { position: fixed; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(34,211,238,.10), transparent 65%); transform: translate(-50%, -50%); pointer-events: none; z-index: -1; transition: opacity .3s; opacity: 0; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 100; box-shadow: 0 0 12px rgba(34,211,238,.6); }

/* ===== Nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px clamp(18px, 4vw, 48px); transition: background .3s, backdrop-filter .3s, padding .3s; }
.nav.scrolled { background: rgba(5,7,13,.72); backdrop-filter: blur(16px); border-bottom: 1px solid var(--panel-brd); padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; }
.brand-text b { color: var(--emerald); font-weight: 800; }
.brand-mark svg { display: block; filter: drop-shadow(0 4px 12px rgba(16,185,129,.4)); }
.brand-pulse { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 2.4s ease-in-out infinite; }
@keyframes draw { 0% { stroke-dashoffset: 60; } 45% { stroke-dashoffset: 0; } 75%,100% { stroke-dashoffset: -60; } }
.nav-links { display: flex; gap: 28px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--grad); transition: width .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Plus Jakarta Sans'; font-weight: 600; font-size: .95rem; padding: 11px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .3s, background .2s; white-space: nowrap; }
.btn-primary { background: var(--grad); color: #04120c; box-shadow: 0 10px 30px -8px rgba(16,185,129,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(16,185,129,.75); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--ink); border: 1px solid var(--panel-brd); }
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

/* ===== Hero ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 130px clamp(18px,4vw,48px) 60px; overflow: hidden; }
.ecg-wrap { position: absolute; left: 0; right: 0; top: 50%; height: 120px; opacity: .28; pointer-events: none; }
.ecg { width: 100%; height: 100%; }
.ecg-line { fill: none; stroke: #ff3b52; stroke-width: 2.5; filter: drop-shadow(0 0 7px rgba(255,59,82,.85)); stroke-dasharray: 2600; stroke-dashoffset: 2600; animation: ecg 4s linear infinite; }
@keyframes ecg { to { stroke-dashoffset: -2600; } }
.ecg-sweep { position: absolute; top: 0; bottom: 0; width: 90px; left: -90px; background: linear-gradient(90deg, transparent, rgba(255,59,82,.18) 70%, rgba(255,255,255,.35)); border-right: 2px solid rgba(255,255,255,.6); box-shadow: 0 0 18px rgba(255,59,82,.5); animation: sweep 4s linear infinite; }
@keyframes sweep { from { left: -90px; } to { left: 100%; } }
.ecg-badge { position: absolute; top: -30px; right: clamp(18px,4vw,48px); display: inline-flex; align-items: center; gap: 8px; font-family: 'Sora'; font-size: .78rem; font-weight: 700; letter-spacing: .08em; color: #ff6b7d; background: rgba(8,12,22,.7); border: 1px solid rgba(255,59,82,.3); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(8px); }
.ecg-badge b { color: #fff; font-size: .9rem; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3b52; box-shadow: 0 0 0 0 rgba(255,59,82,.6); animation: pulse 1.6s infinite; }

.hero-inner { width: 100%; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: var(--panel); border: 1px solid var(--panel-brd); color: var(--muted); padding: 7px 15px; border-radius: 999px; font-size: .84rem; font-weight: 600; margin-bottom: 24px; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); } 70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); font-weight: 800; margin-bottom: 20px; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust p { font-size: .86rem; color: var(--muted-2); }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; background: var(--grad); }
.avatars span:nth-child(2) { background: linear-gradient(120deg,#3b82f6,#22d3ee); }
.avatars span:nth-child(3) { background: linear-gradient(120deg,#f472b6,#fbbf24); }
.avatars span:nth-child(4) { background: linear-gradient(120deg,#34d399,#3b82f6); }

/* Glass card */
.glass-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid var(--panel-brd); border-radius: var(--radius); backdrop-filter: blur(14px); box-shadow: var(--shadow); }

/* Hero visual */
.hero-visual { position: relative; }
.patient-card { padding: 22px; position: relative; z-index: 2; animation: cardfloat 7s ease-in-out infinite; }
@keyframes cardfloat { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-14px) rotate(.4deg); } }
.pc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pc-avatar { width: 46px; height: 46px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; font-weight: 800; color: #04120c; font-family: 'Sora'; }
.pc-head h4 { font-size: 1.05rem; }
.pc-age { color: var(--muted); font-weight: 500; font-family: 'Plus Jakarta Sans'; }
.pc-head p { font-size: .8rem; color: var(--muted-2); }
.pc-badge { margin-left: auto; font-size: .72rem; padding: 5px 10px; border-radius: 999px; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.3); color: var(--emerald); font-weight: 700; }
.pc-vitals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.vital { background: rgba(255,255,255,.04); border: 1px solid var(--panel-brd); border-radius: 12px; padding: 9px 6px; text-align: center; }
.vital span { display: block; font-size: .66rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }
.vital b { font-size: .98rem; font-family: 'Sora'; }
.hr-beat i { color: var(--pink); animation: beat 1s ease-in-out infinite; display: inline-block; }
@keyframes beat { 0%,100% { transform: scale(1); } 15% { transform: scale(1.35); } 30% { transform: scale(1); } }
.pc-ai { background: var(--grad-soft); border: 1px solid rgba(34,211,238,.22); border-radius: 14px; padding: 13px 14px; margin-bottom: 14px; }
.pc-ai-head { font-size: .74rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.ai-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); animation: pulse 1.6s infinite; }
.typed { font-size: .88rem; color: var(--ink); min-height: 3.2em; }
.typed::after { content: '▋'; color: var(--cyan); animation: blink 1s steps(1) infinite; }
.typed.done::after { content: ''; }
@keyframes blink { 50% { opacity: 0; } }
.pc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: .74rem; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--panel-brd); color: var(--muted); }
.tag.warn { background: rgba(251,191,36,.12); border-color: rgba(251,191,36,.35); color: var(--warn); }

.float-chip { position: absolute; background: rgba(8,12,22,.85); border: 1px solid var(--panel-brd); backdrop-filter: blur(10px); padding: 9px 14px; border-radius: 12px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow); z-index: 3; animation: chipfloat 6s ease-in-out infinite; }
.chip-1 { top: -12px; left: -30px; }
.chip-2 { bottom: 20%; right: -40px; animation-delay: -2s; }
.chip-3 { bottom: -14px; left: 20%; animation-delay: -4s; }
@keyframes chipfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Marquee ===== */
.marquee-wrap { border-top: 1px solid var(--panel-brd); border-bottom: 1px solid var(--panel-brd); background: rgba(255,255,255,.015); padding: 18px 0; overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 24px; white-space: nowrap; width: max-content; animation: scroll 34s linear infinite; }
.marquee-track span { font-family: 'Sora'; font-weight: 700; font-size: 1.05rem; color: var(--muted); }
.marquee-track span:nth-child(2n) { color: var(--emerald); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(70px, 10vh, 120px) clamp(18px,4vw,48px); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--emerald); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); font-weight: 800; }
.section-lead { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }

/* Compare */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.compare-col { border-radius: var(--radius); padding: 30px; border: 1px solid var(--panel-brd); }
.compare-col h3 { font-size: 1.3rem; margin-bottom: 18px; }
.compare-col ul { list-style: none; display: grid; gap: 12px; }
.compare-col li { position: relative; padding-left: 30px; color: var(--muted); font-size: .96rem; }
.compare-col.old { background: rgba(244,114,182,.04); }
.compare-col.old li::before { content: '✕'; position: absolute; left: 0; color: var(--pink); font-weight: 700; }
.compare-col.new { background: var(--grad-soft); border-color: rgba(52,211,153,.28); }
.compare-col.new li { color: var(--ink); }
.compare-col.new li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }
.compare-vs span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #04120c; font-family: 'Sora'; font-weight: 800; box-shadow: 0 10px 30px -6px rgba(16,185,129,.5); }

/* Journey */
.journey { position: relative; }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 24px; }
.jstep { position: relative; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 18px; padding: 24px 20px; transition: transform .3s, border-color .3s, box-shadow .3s; }
.jstep:hover { transform: translateY(-6px); border-color: rgba(52,211,153,.4); box-shadow: 0 20px 50px -20px rgba(16,185,129,.4); }
.jnum { position: absolute; top: 14px; right: 16px; font-family: 'Sora'; font-weight: 800; font-size: 1.1rem; color: rgba(255,255,255,.08); }
.jicon { font-size: 1.9rem; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid rgba(34,211,238,.2); margin-bottom: 14px; }
.jstep h4 { font-size: 1.05rem; margin-bottom: 6px; }
.jstep p { font-size: .86rem; color: var(--muted); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 20px; padding: 28px; transition: transform .3s, border-color .3s, background .3s; position: relative; overflow: hidden; }
.bento-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(34,211,238,.10), transparent 60%); opacity: 0; transition: opacity .3s; }
.bento-card:hover { transform: translateY(-5px); border-color: rgba(52,211,153,.35); }
.bento-card:hover::before { opacity: 1; }
.bento-card.big { grid-column: span 2; grid-row: span 1; }
.bento-card.wide { grid-column: span 2; }
.bicon { font-size: 1.8rem; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid rgba(34,211,238,.2); margin-bottom: 16px; }
.bento-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.bento-card p { color: var(--muted); font-size: .94rem; }
.mini-chat { margin-top: 18px; display: grid; gap: 10px; }
.mc-q, .mc-a { padding: 11px 14px; border-radius: 14px; font-size: .88rem; max-width: 88%; }
.mc-q { background: rgba(255,255,255,.06); border: 1px solid var(--panel-brd); justify-self: end; border-bottom-right-radius: 4px; }
.mc-a { background: var(--grad-soft); border: 1px solid rgba(52,211,153,.28); border-bottom-left-radius: 4px; color: var(--ink); }

/* Dashboard preview */
.dash { max-width: 940px; margin: 0 auto; overflow: hidden; padding: 0; }
.dash-top { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--panel-brd); background: rgba(255,255,255,.02); }
.dash-dots { display: flex; gap: 7px; }
.dash-dots i { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; }
.dash-dots i:nth-child(2) { background: #febc2e; }
.dash-dots i:nth-child(3) { background: #28c840; }
.dash-url { font-size: .82rem; color: var(--muted-2); background: rgba(255,255,255,.04); border: 1px solid var(--panel-brd); padding: 5px 14px; border-radius: 8px; margin: 0 auto; }
.dash-body { display: grid; grid-template-columns: 210px 1fr; min-height: 340px; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; padding: 16px 12px; border-right: 1px solid var(--panel-brd); background: rgba(255,255,255,.015); }
.dash-nav button { text-align: left; background: none; border: none; color: var(--muted); font-family: inherit; font-size: .92rem; font-weight: 600; padding: 11px 14px; border-radius: 11px; cursor: pointer; transition: .2s; }
.dash-nav button:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.dash-nav button.active { background: var(--grad-soft); color: var(--ink); border: 1px solid rgba(52,211,153,.3); }
.dash-main { padding: 24px 26px; }
.dash-view { display: none; animation: msgin .4s ease; }
.dash-view.active { display: block; }
.dv-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.dv-head h4 { font-size: 1.15rem; }
.dv-chip { font-size: .74rem; color: var(--muted); background: rgba(255,255,255,.05); border: 1px solid var(--panel-brd); padding: 5px 11px; border-radius: 999px; }
.dv-chip.ok { color: var(--emerald); background: var(--grad-soft); border-color: rgba(52,211,153,.3); }
.dv-row { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--panel-brd); margin-bottom: 9px; transition: transform .2s, border-color .2s; }
.dv-row:hover { transform: translateX(5px); border-color: rgba(52,211,153,.35); }
.dv-row b { font-family: 'Sora'; font-size: .95rem; }
.dv-time { font-family: 'Sora'; font-weight: 700; color: var(--cyan); font-size: .9rem; min-width: 48px; }
.dv-ava { width: 34px; height: 34px; border-radius: 9px; background: var(--grad); color: #04120c; display: grid; place-items: center; font-weight: 800; font-size: .78rem; font-family: 'Sora'; flex: none; }
.dv-tag { font-size: .8rem; color: var(--muted); }
.dv-status { margin-left: auto; font-size: .74rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.dv-status.done { color: var(--emerald); background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); }
.dv-status.live { color: var(--cyan); background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.3); }
.dv-status.wait { color: var(--warn); background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.3); }
.dv-status.ai { color: var(--pink); background: rgba(244,114,182,.12); border: 1px solid rgba(244,114,182,.3); }
.dv-rx, .dv-lab, .dv-bill { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--panel-brd); margin-bottom: 9px; }
.dv-rx b, .dv-lab b, .dv-bill b { font-family: 'Sora'; font-size: .95rem; }
.dv-rx span { color: var(--muted); font-size: .85rem; margin-left: auto; }
.dv-lab span:first-child { color: var(--muted); font-size: .9rem; }
.dv-lab b { margin-left: auto; }
.dv-lab .dv-status { margin-left: 0; }
.dv-bill span { color: var(--muted); font-size: .9rem; }
.dv-bill b { margin-left: auto; }
.dv-bill.total { background: var(--grad-soft); border-color: rgba(52,211,153,.3); }
.dv-bill.total b, .dv-bill.total span { color: var(--ink); font-weight: 700; }
.dv-warn { margin-top: 12px; font-size: .84rem; color: var(--warn); background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.28); padding: 11px 14px; border-radius: 12px; }
.dv-paid { margin-top: 12px; font-size: .88rem; font-weight: 700; color: var(--emerald); }

/* ERP / CRM */
.no-manual { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; max-width: 900px; margin: 0 auto 40px; padding: 20px 24px; border-radius: 18px; background: var(--panel); border: 1px solid var(--panel-brd); }
.nm-old { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; color: var(--muted); font-weight: 600; font-size: .92rem; }
.nm-x { color: var(--pink); font-weight: 800; margin-right: 2px; }
.nm-arrow { font-size: 1.4rem; color: var(--emerald); font-weight: 800; }
.nm-new { display: inline-flex; align-items: center; gap: 8px; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.35); color: var(--ink); font-weight: 700; padding: 10px 18px; border-radius: 999px; }
.nm-check { color: var(--emerald); font-weight: 800; }
.erp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.erp-card { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 18px; padding: 26px; transition: transform .3s, border-color .3s; }
.erp-card:hover { transform: translateY(-5px); border-color: rgba(52,211,153,.35); }
.erp-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.erp-card p { font-size: .9rem; color: var(--muted); }

/* AI demo */
.ai-section { }
.ai-demo { max-width: 720px; margin: 0 auto; padding: 22px; }
.ai-demo-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--panel-brd); margin-bottom: 18px; }
.ai-avatar { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; color: #04120c; font-size: 1.2rem; }
.ai-demo-head b { display: block; font-family: 'Sora'; }
.ai-demo-head span { font-size: .8rem; color: var(--muted-2); }
.ai-live { margin-left: auto; font-size: .76rem; color: var(--emerald); display: flex; align-items: center; gap: 7px; }
.ai-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); animation: pulse 2s infinite; }
.ai-chat { display: flex; flex-direction: column; gap: 12px; min-height: 180px; margin-bottom: 18px; }
.msg { padding: 12px 15px; border-radius: 16px; font-size: .92rem; max-width: 82%; animation: msgin .4s ease; }
@keyframes msgin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.msg.user { align-self: flex-end; background: rgba(255,255,255,.07); border: 1px solid var(--panel-brd); border-bottom-right-radius: 4px; }
.msg.ai { align-self: flex-start; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.28); border-bottom-left-radius: 4px; }
.msg.ai.typing span { display: inline-block; width: 6px; height: 6px; margin: 0 2px; border-radius: 50%; background: var(--emerald); animation: dots 1.2s infinite; }
.msg.ai.typing span:nth-child(2) { animation-delay: .2s; }
.msg.ai.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes dots { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.ai-suggest { display: flex; flex-wrap: wrap; gap: 9px; }
.ai-suggest button { background: rgba(255,255,255,.05); border: 1px solid var(--panel-brd); color: var(--muted); padding: 9px 14px; border-radius: 999px; font-size: .84rem; cursor: pointer; font-family: inherit; transition: .2s; }
.ai-suggest button:hover { background: var(--grad-soft); border-color: rgba(52,211,153,.4); color: var(--ink); transform: translateY(-2px); }
.ai-input { display: flex; gap: 10px; margin-top: 16px; }
.ai-input input { flex: 1; background: rgba(5,7,13,.6); border: 1px solid var(--panel-brd); border-radius: 999px; padding: 13px 20px; color: var(--ink); font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.ai-input input::placeholder { color: var(--muted-2); }
.ai-input input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(52,211,153,.18); }
.ai-input button { flex: none; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--grad); color: #04120c; display: grid; place-items: center; cursor: pointer; transition: transform .2s, box-shadow .3s; box-shadow: 0 8px 22px -8px rgba(16,185,129,.6); }
.ai-input button:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 28px -8px rgba(16,185,129,.75); }

/* Memories & notifications */
.memories { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.memories-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 12px 0 16px; }
.memories-copy > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; }
.mem-check { grid-template-columns: 1fr; gap: 10px; }
.notif-feed { display: grid; gap: 14px; }
.notif { display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid var(--panel-brd); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); transition: transform .3s, border-color .3s; }
.notif:hover { transform: translateX(6px); border-color: rgba(52,211,153,.4); }
.notif-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.25rem; }
.notif-ic.pink { background: rgba(244,114,182,.14); border: 1px solid rgba(244,114,182,.35); }
.notif-ic.teal { background: var(--grad-soft); border: 1px solid rgba(52,211,153,.35); }
.notif-ic.blue { background: rgba(59,130,246,.14); border: 1px solid rgba(59,130,246,.35); }
.notif-ic.warn { background: rgba(251,191,36,.14); border: 1px solid rgba(251,191,36,.35); }
.notif b { font-family: 'Sora'; font-size: .95rem; }
.notif p { font-size: .88rem; color: var(--muted); margin: 3px 0 5px; }
.notif p b { color: var(--emerald); font-family: 'Plus Jakarta Sans'; }
.notif span { font-size: .74rem; color: var(--muted-2); }

/* AI Voice call demo */
.call { max-width: 620px; margin: 0 auto; padding: 24px; }
.call-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--panel-brd); }
.call-ava { position: relative; width: 50px; height: 50px; border-radius: 15px; background: var(--grad); display: grid; place-items: center; font-size: 1.4rem; flex: none; }
.call-ring { position: absolute; inset: 0; border-radius: 15px; border: 2px solid var(--emerald); opacity: 0; animation: callRing 1.8s ease-out infinite; }
@keyframes callRing { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }
.call-id b { display: block; font-family: 'Sora'; font-size: 1rem; }
.call-id span { font-size: .82rem; color: var(--emerald); display: inline-flex; align-items: center; gap: 6px; }
.call-live { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); animation: pulse 1.6s infinite; }
.call-timer { margin-left: auto; font-family: 'Sora'; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 54px; margin: 16px 0; }
.wave span { width: 3px; height: 6px; border-radius: 3px; background: rgba(52,211,153,.4); transition: background .3s; }
.wave.active span { background: var(--grad); animation: waveBar .8s ease-in-out infinite; }
.wave.active span:nth-child(3n) { animation-delay: .1s; }
.wave.active span:nth-child(3n+1) { animation-delay: .25s; }
.wave.active span:nth-child(4n) { animation-delay: .4s; }
@keyframes waveBar { 0%,100% { height: 6px; } 50% { height: 40px; } }
.call-chat { display: flex; flex-direction: column; gap: 11px; min-height: 150px; }
.cmsg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: .92rem; animation: msgin .4s ease; }
.cmsg .cmsg-who { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; opacity: .7; font-weight: 700; }
.cmsg.patient { align-self: flex-end; background: rgba(255,255,255,.07); border: 1px solid var(--panel-brd); border-bottom-right-radius: 4px; }
.cmsg.ai { align-self: flex-start; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.28); border-bottom-left-radius: 4px; }
.cmsg.ai .cmsg-who { color: var(--emerald); }
.call-foot { margin-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.call-confirm { display: flex; align-items: center; gap: 14px; width: 100%; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.35); border-radius: 14px; padding: 14px 18px; animation: msgin .5s ease; }
.cc-ic { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #04120c; display: grid; place-items: center; font-weight: 800; flex: none; }
.call-confirm b { display: block; font-family: 'Sora'; font-size: .95rem; }
.call-confirm span { font-size: .84rem; color: var(--muted); }

/* Specialties */
.specialties { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 860px; margin: 0 auto 44px; }
.sp-chip { background: var(--panel); border: 1px solid var(--panel-brd); color: var(--muted); padding: 9px 16px; border-radius: 999px; font-size: .9rem; font-weight: 600; transition: transform .2s, border-color .2s, color .2s, background .2s; cursor: default; }
.sp-chip:hover { transform: translateY(-3px); background: var(--grad-soft); border-color: rgba(52,211,153,.4); color: var(--ink); }
.sp-chip:last-child { background: var(--grad-soft); border-color: rgba(52,211,153,.35); color: var(--emerald); }

/* Tabs */
.tabs { max-width: 900px; margin: 0 auto; }
.tab-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.tab-btn { background: rgba(255,255,255,.04); border: 1px solid var(--panel-brd); color: var(--muted); padding: 11px 18px; border-radius: 999px; font-family: inherit; font-weight: 600; font-size: .92rem; cursor: pointer; transition: .25s; }
.tab-btn.active { background: var(--grad); color: #04120c; border-color: transparent; }
.tab-panels { position: relative; }
.tab-panel { display: none; background: var(--panel); border: 1px solid var(--panel-brd); border-radius: var(--radius); padding: 36px; animation: msgin .4s ease; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 1.5rem; margin-bottom: 12px; }
.tab-panel p { color: var(--muted); margin-bottom: 20px; }
.check { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check li { position: relative; padding-left: 28px; color: var(--ink); font-weight: 500; }
.check li::before { content: '✓'; position: absolute; left: 0; width: 20px; height: 20px; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.4); border-radius: 6px; display: grid; place-items: center; color: var(--emerald); font-size: .72rem; font-weight: 800; top: 2px; }

/* Offline / load-shedding demo */
.off-demo { max-width: 680px; margin: 0 auto; padding: 0; overflow: hidden; transition: filter .2s; }
.off-demo.flicker { animation: flicker .6s ease; }
@keyframes flicker { 0%,100% { filter: none; } 20% { filter: brightness(.3); } 25% { filter: brightness(1); } 45% { filter: brightness(.15); } 55% { filter: brightness(.9); } 70% { filter: brightness(.35); } }
.off-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 16px 20px; border-bottom: 1px solid var(--panel-brd); transition: background .4s; }
.off-status { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--muted); }
.off-status b { color: var(--ink); font-family: 'Sora'; }
.off-status i { width: 10px; height: 10px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px rgba(52,211,153,.7); transition: background .3s; }
.off-status.online i { background: var(--emerald); animation: pulse 2s infinite; }
.off-status.offline { color: #ff6b7d; }
.off-status.offline i { background: #ff3b52; box-shadow: 0 0 8px rgba(255,59,82,.7); animation: pulse 1.2s infinite; }
.off-status.syncing { color: var(--cyan); }
.off-status.syncing i { background: var(--cyan); box-shadow: 0 0 8px rgba(34,211,238,.7); }
.off-btn { font-size: .88rem; padding: 9px 16px; }
.off-body { padding: 20px; transition: background .4s; }
.off-demo.is-offline .off-bar { background: rgba(255,59,82,.06); }
.off-demo.is-offline .off-body { background: rgba(255,59,82,.03); }
.off-actions { display: grid; gap: 10px; }
.off-item { display: flex; align-items: center; gap: 13px; padding: 13px 15px; border-radius: 13px; background: rgba(255,255,255,.03); border: 1px solid var(--panel-brd); animation: msgin .4s ease; }
.oi-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); border: 1px solid rgba(34,211,238,.2); display: grid; place-items: center; font-size: 1.2rem; flex: none; }
.off-item b { display: block; font-family: 'Sora'; font-size: .95rem; }
.off-item > div span { font-size: .82rem; color: var(--muted); }
.oi-badge { margin-left: auto; font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; transition: .3s; }
.oi-badge.synced { color: var(--emerald); background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); }
.oi-badge.queued { color: var(--warn); background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.3); }
.oi-badge.syncing { color: var(--cyan); background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.3); }
.oi-badge.syncing::before { content: '↻ '; display: inline-block; animation: spin 1s linear infinite; }
.off-note { margin-top: 16px; text-align: center; font-size: .9rem; font-weight: 600; padding: 11px; border-radius: 11px; transition: .3s; }
.off-note.online { color: var(--emerald); background: var(--grad-soft); border: 1px solid rgba(52,211,153,.25); }
.off-note.offline { color: var(--warn); background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.28); }
.off-note.syncing { color: var(--cyan); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.28); }

/* Stats */
.stats-section { padding-top: 40px; padding-bottom: 40px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 18px; padding: 34px 18px; }
.stat b { display: block; font-family: 'Sora'; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .9rem; }

/* Security */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sec-card { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 18px; padding: 26px 22px; transition: .3s; }
.sec-card:hover { transform: translateY(-5px); border-color: rgba(52,211,153,.35); }
.sicon { font-size: 1.7rem; margin-bottom: 14px; }
.sec-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.sec-card p { font-size: .88rem; color: var(--muted); }

/* Vision Lab / Future */
.future-badge { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); background: rgba(255,255,255,.05); border: 1px solid var(--panel-brd); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.future-badge.flagship { color: var(--cyan); background: var(--grad-soft); border-color: rgba(34,211,238,.3); }
.radar-card { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 36px; margin-bottom: 24px; }
.radar-copy h3 { font-size: 1.9rem; margin-bottom: 14px; }
.radar-copy > p { color: var(--muted); margin-bottom: 20px; }
.radar-ticker { font-family: 'Sora'; font-size: .92rem; font-weight: 600; color: var(--ink); background: rgba(5,7,13,.5); border: 1px solid var(--panel-brd); border-left: 3px solid var(--cyan); border-radius: 10px; padding: 12px 16px; min-height: 3em; transition: opacity .4s; }
.radar-stats { display: flex; gap: 26px; margin-top: 20px; }
.radar-stats b { display: block; font-family: 'Sora'; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.radar-stats span { font-size: .8rem; color: var(--muted-2); }
.radar-map { position: relative; aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(16,185,129,.1), rgba(5,7,13,.9) 70%); border: 1px solid rgba(34,211,238,.2); }
.radar-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(34,211,238,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,.08) 1px, transparent 1px); background-size: 34px 34px; }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(34,211,238,.35), transparent 55%, transparent 100%); animation: radarSpin 4s linear infinite; }
@keyframes radarSpin { to { transform: rotate(360deg); } }
.radar-rings { position: absolute; inset: 0; }
.radar-rings span { position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; border: 1px solid rgba(34,211,238,.4); border-radius: 50%; transform: translate(-50%,-50%); animation: radarPing 4s ease-out infinite; }
.radar-rings span:nth-child(2) { animation-delay: 1.3s; }
.radar-rings span:nth-child(3) { animation-delay: 2.6s; }
@keyframes radarPing { 0% { width: 20px; height: 20px; opacity: .8; } 100% { width: 130%; height: 130%; opacity: 0; } }
.city { position: absolute; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 2; }
.city i { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px rgba(52,211,153,.8); }
.city em { font-size: .68rem; font-style: normal; color: var(--muted); font-weight: 600; white-space: nowrap; }
.city.hot i { background: #ff3b52; box-shadow: 0 0 0 0 rgba(255,59,82,.7); animation: hotPulse 1.8s infinite; }
.city.hot em { color: #ff6b7d; }
@keyframes hotPulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,82,.6); } 70% { box-shadow: 0 0 0 14px rgba(255,59,82,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,82,0); } }
.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.future-card { background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 18px; padding: 26px 22px; transition: transform .3s, border-color .3s; position: relative; }
.future-card:hover { transform: translateY(-6px); border-color: rgba(34,211,238,.35); }
.future-card .bicon { margin-bottom: 14px; }
.future-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.future-card p { font-size: .87rem; color: var(--muted); }

/* Vision */
.vision { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; overflow: hidden; }
.vision-inner { max-width: 620px; }
.vision-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin: 14px 0 18px; }
.vision-inner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.vision-flags { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.flag { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--panel-brd); background: rgba(255,255,255,.04); font-weight: 600; font-size: .9rem; color: var(--muted); }
.flag.active { background: var(--grad-soft); border-color: rgba(52,211,153,.4); color: var(--ink); }
.flag-arrow { color: var(--emerald); font-weight: 800; }
.globe { position: relative; height: 320px; display: grid; place-items: center; }
.globe-core { width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #22d3ee, #10b981 60%, #065f46); box-shadow: 0 0 80px -10px rgba(16,185,129,.7); position: relative; z-index: 2; }
.globe-ring { position: absolute; width: 240px; height: 240px; border: 1px solid rgba(34,211,238,.3); border-radius: 50%; animation: spin 14s linear infinite; }
.globe-ring.r2 { width: 300px; height: 300px; border-color: rgba(52,211,153,.2); border-style: dashed; animation-duration: 22s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Founder */
.founder-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; padding: 40px; max-width: 960px; margin: 0 auto; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; border-radius: 20px; position: relative; z-index: 2; background: linear-gradient(180deg, rgba(34,211,238,.14), rgba(16,185,129,.1)); }
.founder-glow { position: absolute; inset: -20px; background: var(--grad); filter: blur(50px); opacity: .35; border-radius: 30px; z-index: 1; animation: glowpulse 5s ease-in-out infinite; }
@keyframes glowpulse { 0%,100% { opacity: .28; } 50% { opacity: .48; } }
.founder-copy h2 { font-size: 2.2rem; }
.founder-role { color: var(--emerald); font-weight: 600; margin-bottom: 18px; }
.founder-quote { font-size: 1.14rem; color: var(--ink); font-style: italic; line-height: 1.6; margin-bottom: 24px; border-left: 3px solid; border-image: var(--grad) 1; padding-left: 18px; }

/* CTA */
.cta-section { }
.cta-card { position: relative; overflow: hidden; text-align: center; background: var(--grad-soft); border: 1px solid rgba(52,211,153,.3); border-radius: 28px; padding: 60px clamp(20px,4vw,60px); max-width: 900px; margin: 0 auto; }
.cta-card .ecg-wrap.mini { top: auto; bottom: 0; height: 80px; opacity: .3; }
.cta-card h2 { font-size: clamp(1.9rem, 4vw, 3rem); position: relative; z-index: 2; }
.cta-card > p { color: var(--muted); max-width: 520px; margin: 14px auto 30px; position: relative; z-index: 2; }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.waitlist-form input, .waitlist-form select { flex: 1 1 180px; background: rgba(5,7,13,.6); border: 1px solid var(--panel-brd); border-radius: 12px; padding: 14px 16px; color: var(--ink); font-family: inherit; font-size: .95rem; }
.waitlist-form input:focus, .waitlist-form select:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(52,211,153,.2); }
.waitlist-form select { color: var(--muted); }
.waitlist-form .btn { flex: 1 1 100%; }
.form-note { margin-top: 16px; color: var(--emerald); font-weight: 600; min-height: 1.2em; position: relative; z-index: 2; }

/* Footer */
.footer { border-top: 1px solid var(--panel-brd); background: rgba(5,7,13,.6); padding: 60px clamp(18px,4vw,48px) 30px; }
.footer-top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--panel-brd); }
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: 14px; max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.footer-cols h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 14px; }
.footer-cols a { display: block; color: var(--muted); font-size: .9rem; padding: 5px 0; transition: color .2s; }
.footer-cols a:hover { color: var(--emerald); }
.footer-bottom { max-width: var(--max); margin: 24px auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted-2); font-size: .85rem; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 34px -8px rgba(37,211,102,.7); transition: transform .25s; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: .55; animation: waPulse 2.4s ease-out infinite; z-index: -1; }
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav { flex-wrap: wrap; }
  .brand { order: 1; }
  .nav-toggle { display: flex; order: 2; }
  .nav-links { order: 3; }
  .nav-cta { order: 4; }
  .nav-links, .nav-cta { display: none; }
  .nav.open { background: rgba(5,7,13,.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--panel-brd); }
  .nav.open .nav-links { display: flex; flex-direction: column; flex-basis: 100%; width: 100%; gap: 2px; padding: 14px 0 6px; font-size: 1.05rem; }
  .nav.open .nav-links a { padding: 10px 4px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav.open .nav-cta { display: flex; flex-basis: 100%; width: 100%; gap: 10px; padding: 8px 0 14px; }
  .nav.open .nav-cta .btn { flex: 1; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .compare { grid-template-columns: 1fr; }
  .compare-vs { transform: rotate(90deg); margin: -6px auto; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr 1fr; }
  .erp-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .memories { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-nav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--panel-brd); }
  .dash-nav button { white-space: nowrap; }
  .radar-card { grid-template-columns: 1fr; }
  .radar-map { max-width: 420px; margin: 0 auto; width: 100%; }
  .future-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.big, .bento-card.wide { grid-column: span 2; }
  .stats, .sec-grid { grid-template-columns: 1fr 1fr; }
  .vision { grid-template-columns: 1fr; }
  .globe { height: 220px; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { max-width: 260px; margin: 0 auto; }
  .founder-quote { text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .journey-steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .erp-grid { grid-template-columns: 1fr; }
  .bento-card.big, .bento-card.wide { grid-column: span 1; }
  .stats, .sec-grid, .check { grid-template-columns: 1fr; }
  .future-grid { grid-template-columns: 1fr; }
  .radar-stats { flex-wrap: wrap; gap: 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .float-chip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
