/* ============ TOKENS ============ */
:root {
  --bg: #0b0b10;
  --bg-soft: #101016;
  --panel: #16161a;
  --panel-2: #1c1c22;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --muted: #9c9ca6;
  --muted-2: #6d6d78;
  --accent: #104549;
  --accent-2: #0b3639;
  --accent-hi: #3bbcc2;
  --accent-grad: linear-gradient(120deg, #3bbcc2, #15858c 45%, #104549);
  --font-d: "Space Grotesk", "Inter", sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
  --radius: 18px;
  --max: 1180px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-hi); color: #052c30; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #2a2a33; border-radius: 99px; }
::-webkit-scrollbar-track { background: var(--bg); }

/* ============ BACKGROUND ============ */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: drift 22s ease-in-out infinite;
}
.orb-a { width: 520px; height: 520px; top: -140px; left: -120px;
  background: radial-gradient(circle, rgba(31,168,175,0.28), transparent 65%); }
.orb-b { width: 460px; height: 460px; top: 8%; right: -160px;
  background: radial-gradient(circle, rgba(59,188,194,0.22), transparent 65%);
  animation-delay: -7s; }
.orb-c { width: 600px; height: 600px; bottom: -260px; left: 30%;
  background: radial-gradient(circle, rgba(16,69,73,0.45), transparent 65%);
  animation-delay: -14s; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.06); }
  66% { transform: translate(-30px, 20px) scale(0.96); }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition:
  opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
  transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .halo, .float-badge, .scene-sun, .mouse { animation: none !important; }
}

/* ============ LAYOUT ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 96px 0; }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 12px; }
.section-head .sub { color: var(--muted); margin-top: 14px; font-size: 17px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-weight: 600; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-hi);
}
.kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent-grad); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; max-width: 1280px; margin: 0 auto;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(11, 11, 16, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 40px rgba(0,0,0,0.35);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-d); font-weight: 700; font-size: 18px; }
.brand-logo {
  width: 34px; height: 34px; object-fit: contain; display: block;
  border-radius: 10px; flex: 0 0 auto;
}
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  background: var(--accent-grad); color: #161006; font-size: 14px;
  border-radius: 10px; font-weight: 700;
  box-shadow: 0 4px 18px rgba(31,168,175,0.35);
}
.brand-name em { font-style: normal; color: var(--accent-hi); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--accent-grad); border-radius: 2px; transition: width 0.25s; }
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* mobile nav */
@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: 72px; right: 16px; left: 16px; display: none;
    flex-direction: column; gap: 4px; background: rgba(16,16,22,0.97);
    border: 1px solid var(--line); border-radius: 14px; padding: 12px;
    backdrop-filter: blur(16px); box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(255,255,255,0.05); }
  .nav-burger { display: flex; }
  .nav .btn-primary.btn-sm { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--font-d); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 12px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent-grad); color: #161006;
  box-shadow: 0 8px 28px rgba(31,168,175,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(31,168,175,0.42); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: rgba(31,168,175,0.5); background: rgba(31,168,175,0.06); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 64px; overflow: hidden;
}
.hero-inner { max-width: calc(var(--max) + 160px); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 0 24px; }
.hero-copy .pill { margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line); border-radius: 99px; padding: 8px 16px;
  background: rgba(255,255,255,0.03);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-hi);
  box-shadow: 0 0 0 0 rgba(31,168,175,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,168,175,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(31,168,175,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,168,175,0); }
}
.display { font-size: clamp(40px, 6vw, 74px); margin: 0 0 20px; }
.grad-word {
  background: var(--accent-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; position: relative;
}
.grad-word::after {
  content: ""; position: absolute; inset: auto 2% -12% 2%; height: 10px; opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='12' viewBox='0 0 400 12'%3E%3Cpath d='M2 8 C 60 2, 120 2, 200 6 S 340 10, 398 4' stroke='%231fa8af' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  animation: underline 3.5s ease-in-out infinite;
}
@keyframes underline { 0%,100% { transform: scaleX(1);} 50% { transform: scaleX(0.82);} }
.lead { color: var(--muted); font-size: 18px; max-width: 540px; margin-bottom: 30px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.hero-stats { display: flex; gap: 38px; margin-top: 46px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-d); font-size: 26px; color: var(--text); }
.stat span { color: var(--muted-2); font-size: 13px; margin-top: 2px; }

/* device */
.device-wrap { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.halo { position: absolute; inset: -8% -6% -14% -6%; border-radius: 48%;
  background: radial-gradient(circle at 50% 40%, rgba(31,168,175,0.32), transparent 60%);
  filter: blur(30px); animation: breathe 6s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.08); opacity: 1; } }
.device {
  position: relative; width: 300px; height: 612px; border-radius: 44px;
  background: linear-gradient(160deg, #26262e, #16161a);
  padding: 10px; border: 1px solid var(--line-strong);
  box-shadow: 0 60px 120px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotateY(-12deg) rotateX(6deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.device-wrap:hover .device { transform: rotateY(-6deg) rotateX(3deg); }
.device-speaker { width: 88px; height: 6px; border-radius: 99px; background: #000; margin: 2px auto 8px; opacity: 0.6; }
.device-screen { position: relative; height: 100%; border-radius: 34px; overflow: hidden; background: #0d0d12; }
.device-screenshot {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.012);
}

.float-badge {
  position: absolute; font-family: var(--font-d); font-weight: 600; font-size: 13px;
  color: var(--text); background: rgba(22,22,26,0.85); border: 1px solid var(--line-strong);
  padding: 8px 14px; border-radius: 10px; backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4); animation: floaty 6s ease-in-out infinite;
}
.badge-1 { top: 18%; left: -26px; }
.badge-2 { top: 46%; right: -30px; animation-delay: -2s; }
.badge-3 { bottom: 16%; left: -30px; animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-cue { display: flex; justify-content: center; margin-top: 34px; }
.mouse { width: 24px; height: 38px; border: 2px solid var(--muted-2); border-radius: 14px; position: relative; }
.mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px;
  border-radius: 3px; background: var(--accent-hi); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .device-wrap { transform: scale(0.86); margin-top: 0; }
  .badge-1 { left: -4px; } .badge-2 { right: -4px; } .badge-3 { left: -4px; }
}

/* ============ MARQUEE ============ */
.lang-marquee { padding: 26px 0 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015); overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 34px; width: max-content; white-space: nowrap;
  animation: track 32s linear infinite; }
.marquee-track span { color: var(--muted-2); font-family: var(--font-d); font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em; }
.marquee-track span:last-child { color: var(--accent-hi); }
@keyframes track { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.lang-marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ STEPS ============ */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform 0.3s, border-color 0.3s; overflow: hidden; }
.step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step-num { position: absolute; top: 18px; right: 22px; font-family: var(--font-d); font-weight: 700;
  font-size: 44px; color: rgba(255,255,255,0.06); }
.step-icon { font-size: 26px; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* ============ FEATURES ============ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform 0.3s, border-color 0.3s, background 0.3s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); border-color: rgba(31,168,175,0.35); background: var(--panel-2); }
.card-media { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 24px; background: rgba(31,168,175,0.1); border: 1px solid rgba(31,168,175,0.22);
  margin-bottom: 18px; transition: transform 0.3s; }
.card:hover .card-media { transform: rotate(-6deg) scale(1.06); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ============ EDITOR ============ */
.editor-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.check-list li { color: var(--muted); font-size: 15px; display: flex; align-items: center; gap: 10px; }
.check { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; flex: 0 0 auto;
  background: rgba(31,168,175,0.14); color: var(--accent-hi); font-size: 12px; font-weight: 700; }

.editor-browser { border-radius: 16px; overflow: hidden; border: 1px solid var(--line-strong);
  background: var(--panel); box-shadow: 0 40px 90px rgba(0,0,0,0.45); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: #121218; border-bottom: 1px solid var(--line); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.browser-url { margin-left: 12px; flex: 1; font-size: 12px; color: var(--muted-2); font-family: var(--font-d);
  background: #0c0c11; border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; }
.browser-body { padding: 0; }
.browser-screenshot-wrap { position: relative; }
.browser-screenshot {
  width: 100%; max-height: 640px; object-fit: contain; object-position: top center;
  background: radial-gradient(900px 420px at 50% 0%, rgba(31,168,175,0.05), transparent 60%), #0d0d12;
  display: block;
}

@media (max-width: 1000px) {
  .editor-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .feature-grid, .step-grid, .price-grid { grid-template-columns: 1fr; }
}

/* ============ SCREENSHOTS GALLERY ============ */
.shot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.shot { text-align: center; }
.shot-phone { position: relative; width: min(250px, 78%); margin: 0 auto 20px;
  padding: 9px; border-radius: 30px;
  background: linear-gradient(160deg, #2a2a32, #14141a);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.shot-phone::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 5px; border-radius: 99px; background: #000; z-index: 2; opacity: 0.7; }
.shot-img { display: block; width: 100%; height: auto; border-radius: 22px; overflow: hidden;
  background: #0d0d12; }
.shot figure:hover .shot-phone, .shot:hover .shot-phone { transform: translateY(-10px); border-color: rgba(31,168,175,0.4); }
.shot-phone.raised { transform: translateY(-14px) rotate(2deg); }
.shot:hover .shot-phone.raised { transform: translateY(-20px) rotate(1deg); }
.shot-tag { display: inline-block; font-family: var(--font-d); font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-hi);
  border: 1px solid rgba(31,168,175,0.35); background: rgba(31,168,175,0.08);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 10px; }
.shot-cap h3 { font-size: 18px; color: var(--text); }

@media (max-width: 1200px) {
  .shot-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .shot-phone.raised { transform: none; }
  .shot:hover .shot-phone.raised { transform: translateY(-8px); }
}
@media (max-width: 640px) {
  .shot-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ============ LANGUAGES ============ */
.lang-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 860px; margin: 0 auto; }
.lang-cloud span { font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); padding: 10px 18px; border-radius: 99px;
  transition: all 0.25s; cursor: default; }
.lang-cloud span:hover { color: var(--accent-hi); border-color: rgba(31,168,175,0.4);
  transform: translateY(-3px) rotate(-1deg); background: rgba(31,168,175,0.06); }

/* ============ PRICING ============ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform 0.3s, border-color 0.3s; }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: rgba(31,168,175,0.55);
  background: linear-gradient(180deg, rgba(31,168,175,0.06), var(--panel) 40%);
  box-shadow: 0 30px 70px rgba(31,168,175,0.12); }
.featured-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-d); font-weight: 600; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #161006; background: var(--accent-grad); padding: 5px 14px; border-radius: 99px; }
.price-card h3 { font-size: 18px; margin-bottom: 10px; }
.price { font-family: var(--font-d); font-weight: 700; font-size: 42px; margin-bottom: 8px; }
.price span { font-size: 15px; color: var(--muted); font-weight: 500; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price-list { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-list li { color: var(--muted); font-size: 14px; padding-left: 26px; position: relative; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-hi); font-weight: 700; }
.price-grid.single { max-width: 460px; margin: 0 auto; }
.price-ads { color: var(--muted-2); font-size: 13px; margin-bottom: 26px; }
.btn-disabled { opacity: 0.55; cursor: not-allowed; }
.btn-disabled:hover { transform: none; border-color: var(--line-strong); background: rgba(255,255,255,0.02); }

/* store notes */
.store-note { color: var(--muted-2); font-size: 14px; margin-top: 16px; width: 100%; }
.store-note.small { font-size: 13px; margin-top: 18px; }

/* ============ LEGAL PAGES ============ */
.legal { padding: calc(var(--nav-h) + 56px) 0 96px; }
.legal .legal-head { max-width: 760px; margin-bottom: 48px; }
.legal-head h1 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 12px; }
.legal-head .updated { color: var(--muted-2); font-size: 13px; margin-top: 10px; }
.legal-body { max-width: 760px; display: grid; gap: 28px; }
.legal-body h2 { font-size: 20px; margin-bottom: 8px; }
.legal-body p { color: var(--muted); font-size: 15px; }
.legal-body ul { list-style: none; display: grid; gap: 8px; margin-top: 10px; }
.legal-body ul li { color: var(--muted); font-size: 15px; padding-left: 24px; position: relative; }
.legal-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent-hi); }
.legal-body a { color: var(--accent-hi); text-decoration: underline; text-underline-offset: 3px; }

/* ============ FINAL CTA ============ */
.final-cta { text-align: center; padding: 120px 0; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.display-sm { font-size: clamp(30px, 5vw, 52px); margin-bottom: 14px; }
.cta-inner p { color: var(--muted); font-size: 17px; margin-bottom: 30px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 60px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-note { color: var(--muted-2); font-size: 14px; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-size: 14px; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-hi); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted-2); font-size: 13px; flex-wrap: wrap; }
.pill-small { font-family: var(--font-d); font-size: 12px; border: 1px solid var(--line); padding: 6px 12px;
  border-radius: 99px; color: var(--muted); }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}