/* ClearLock Landing — styles */
:root {
  --bg: #0F172A;
  --bg-2: #0B1224;
  --indigo: #1E1B4B;
  --indigo-2: #2A2566;
  --orange: #F97316;
  --orange-2: #FB923C;
  --green: #10B981;
  --text: #FFFFFF;
  --muted: #94A3B8;
  --line: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.03);
  --card-hover: rgba(255,255,255,0.05);
  --radius: 14px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.6vw, 72px); }
h2 { font-size: clamp(32px, 3.8vw, 52px); }
h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.01em; }
p { margin: 0; color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange);
  padding: 6px 12px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: rgba(249, 115, 22, 0.08);
  border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 12px var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  position: relative;
  background: linear-gradient(180deg, #FB923C 0%, #F97316 100%);
  color: #1a0a02;
  box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.55), inset 0 1px 0 rgba(255,255,255,0.35);
  overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -10px rgba(249, 115, 22, 0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s var(--ease), backdrop-filter .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #FB923C, #F97316);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -6px rgba(249, 115, 22, 0.7);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 840px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 130px 0 60px; }
}
.hero h1 .accent {
  background: linear-gradient(180deg, #FB923C, #F97316);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 22px; font-size: 18px; max-width: 560px; }
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.hero-meta .pill { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--green); }

/* Animated background orbs */
.orbs { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.orb.o1 { width: 520px; height: 520px; background: #F97316; top: -120px; left: -120px; opacity: 0.35; }
.orb.o2 { width: 460px; height: 460px; background: #6366F1; top: 20%; right: -140px; opacity: 0.32; animation-delay: -4s; }
.orb.o3 { width: 380px; height: 380px; background: #1E1B4B; bottom: -160px; left: 30%; opacity: 0.6; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(20px, -30px, 0) scale(1.05); }
}
.grid-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  width: 320px;
  height: 660px;
  margin: 0 auto;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1f33, #0c1124);
  padding: 14px;
  box-shadow:
    0 50px 120px -30px rgba(249, 115, 22, 0.35),
    0 30px 80px -20px rgba(0,0,0,0.7),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
.phone::before {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #05070d; border-radius: 999px;
  z-index: 3;
}
.phone--shot { height: 527px; }
.phone--shot::before { display: none; }
.phone-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 32px; display: block; }
.shot-carousel { position: absolute; inset: 0; border-radius: 32px; overflow: hidden; background: #0a0f1a; }
.shot-carousel .phone-shot { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.shot-carousel .phone-shot.active { opacity: 1; }
.shot-dots { position: absolute; bottom: 12px; left: 0; right: 0; z-index: 5; display: flex; gap: 5px; justify-content: center; }
.shot-dots .sd { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.35); transition: all .3s ease; }
.shot-dots .sd.on { width: 16px; background: #fff; }
.shot-toggle { position: absolute; top: 10px; right: 10px; z-index: 6; width: 28px; height: 28px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(0,0,0,0.45); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0.7; transition: opacity .2s; }
.shot-toggle:hover { opacity: 1; }
.shot-toggle .pause-i { display: none; }
.shot-toggle.playing .pause-i { display: block; }
.shot-toggle.playing .play-i { display: none; }
.os-note { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; max-width: 460px; }
.os-note svg { flex-shrink: 0; color: var(--orange); }
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #0a0f1d 0%, #0F172A 100%);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.phone-statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 44px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  font-size: 12px; font-weight: 600;
  color: var(--text);
  z-index: 4;
}
.phone-statusbar .icons { display: flex; gap: 6px; align-items: center; opacity: 0.85; }

/* Lock-screen phone variant */
.phone-lock { padding-top: 60px; display: flex; flex-direction: column; align-items: center; }
.lock-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(249,115,22,0.08));
  border: 1px solid rgba(249,115,22,0.35);
  display: grid; place-items: center;
  color: var(--orange);
  margin-top: 30px;
  box-shadow: 0 0 40px -6px rgba(249,115,22,0.45);
}
.lock-title { margin-top: 18px; font-weight: 700; font-size: 18px; }
.lock-sub { margin-top: 6px; font-size: 12px; color: var(--muted); }
.pin-dots { margin-top: 30px; display: flex; gap: 14px; }
.pin-dots .d { width: 14px; height: 14px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.pin-dots .d.on { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 12px var(--orange); }
.keypad { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 64px); gap: 14px; padding: 0 14px; }
.key {
  width: 64px; height: 64px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-size: 22px; font-weight: 600; color: var(--text);
}
.key.muted { background: transparent; border: none; color: var(--muted); font-size: 13px; }

/* Blocked-apps phone variant */
.phone-apps { padding-top: 56px; padding-left: 18px; padding-right: 18px; }
.apps-header { padding: 12px 6px 18px; }
.apps-header h4 { font-size: 18px; font-weight: 700; }
.apps-header p { font-size: 12px; margin-top: 4px; }
.app-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 10px;
}
.app-ico {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.app-meta { flex: 1; min-width: 0; }
.app-name { font-size: 13px; font-weight: 600; }
.app-status { font-size: 11px; color: var(--muted); margin-top: 2px; }
.app-status.blocked { color: var(--orange); }
.toggle {
  width: 36px; height: 20px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  position: relative;
  flex-shrink: 0;
  transition: background .25s var(--ease);
}
.toggle::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 999px; background: #fff;
  transition: left .25s var(--ease);
}
.toggle.on { background: var(--orange); }
.toggle.on::after { left: 18px; }

/* ---------- Sections ---------- */
section { position: relative; padding: 100px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 17px; }

/* ---------- Problem cards ---------- */
.problems {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .problems { grid-template-columns: 1fr; } }
.problem-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.problem-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(249,115,22,0.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s var(--ease);
}
.problem-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange);
  margin-bottom: 22px;
}
.problem-card h3 { margin-bottom: 10px; }

/* ---------- Solution ---------- */
.solution-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center;
}
@media (max-width: 980px) { .solution-grid { grid-template-columns: 1fr; gap: 48px; } }
.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 16px; }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 3px;
}

/* ---------- Features grid ---------- */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features { grid-template-columns: 1fr; } }
.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.feature-card:hover { background: var(--card-hover); border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.05));
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange);
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 18px; }
.feature-card p { font-size: 14.5px; line-height: 1.6; }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; gap: 20px; } }
.step {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.4), rgba(15, 23, 42, 0.4));
  border: 1px solid var(--line);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #FB923C, #F97316);
  color: #1a0a02; font-weight: 800; font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -4px rgba(249, 115, 22, 0.5);
}
.step h3 { margin-bottom: 8px; }
.step-connector {
  position: absolute; top: 56px; right: -14px;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, rgba(249,115,22,0.6), transparent);
}
@media (max-width: 880px) { .step-connector { display: none; } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }
.testi {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}
.stars { display: flex; gap: 2px; color: var(--orange); margin-bottom: 16px; }
.testi blockquote { margin: 0; color: var(--text); font-size: 16px; line-height: 1.6; }
.testi-author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--indigo-2), var(--indigo));
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}
.testi-meta .name { font-size: 14px; font-weight: 600; }
.testi-meta .role { font-size: 12px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-wrap { display: grid; place-items: center; }
.pricing-card {
  position: relative;
  width: 100%; max-width: 540px;
  padding: 44px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.55), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.1),
    0 30px 80px -20px rgba(249, 115, 22, 0.35);
  text-align: center;
  overflow: hidden;
}
.pricing-card::before {
  content: ""; position: absolute; inset: -2px; border-radius: 24px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(249,115,22,0.5) 60deg, transparent 120deg, transparent 360deg);
  animation: spin 8s linear infinite;
  z-index: -1;
  opacity: 0.5;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pricing-card .inner { position: relative; z-index: 2; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 18px 0 8px; }
.price { font-size: 64px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-currency { font-size: 32px; font-weight: 700; color: var(--muted); }
.price-note { color: var(--muted); margin-bottom: 28px; font-size: 15px; }
.pricing-bullets { list-style: none; padding: 0; margin: 24px 0 32px; text-align: left; display: grid; gap: 12px; }
.pricing-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 13px; color: var(--green);
  padding: 6px 12px; border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.tiny { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item.open { border-color: rgba(249, 115, 22, 0.3); background: rgba(249, 115, 22, 0.03); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px;
  background: transparent; border: 0; color: var(--text);
  font-size: 16px; font-weight: 600;
  text-align: left;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item.open .plus { transform: rotate(45deg); background: rgba(249,115,22,0.15); color: var(--orange); border-color: rgba(249,115,22,0.3); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- Final CTA ---------- */
.cta-banner {
  position: relative;
  padding: 80px 40px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.7), rgba(15, 23, 42, 0.95));
  border: 1px solid var(--line);
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: -60% -10% auto -10%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.45) 0%, transparent 55%);
  z-index: 0; pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { font-size: 17px; margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .tiny { margin-top: 18px; }

/* ---------- Footer ---------- */
footer { padding: 60px 0 40px; border-top: 1px solid var(--line); margin-top: 60px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
.foot-grid h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin: 0 0 14px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { color: var(--muted); font-size: 14px; transition: color .2s var(--ease); }
.foot-grid a:hover { color: var(--text); }
.foot-tag { color: var(--muted); font-size: 14px; max-width: 320px; margin-top: 14px; line-height: 1.6; }
.foot-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }
.reveal.d5 { transition-delay: .30s; }
.reveal.d6 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .pricing-card::before { animation: none; }
}
