/* ============================================================
   LedgerSnap Marketing Site — style.css
   Brand: mint #36B37E · spark gold #F5B800 · dark #0C1714
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --mint:        #36B37E;
  --mint-dark:   #1D7A58;
  --mint-light:  #E8FAF3;
  --mint-mid:    #2D9668;
  --spark:       #F5B800;
  --spark-dark:  #C49300;
  --spark-light: #FFF8E0;
  --dark:        #0C1714;
  --dark-2:      #18221E;
  --dark-3:      #233029;
  --text:        #1A2520;
  --text-muted:  #677570;
  --text-soft:   #98A39E;
  --surface:     #FFFFFF;
  --surface-2:   #F5FAF7;
  --border:      rgba(54, 179, 126, 0.18);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.08);

  --nav-h: 68px;
  --max-w: 1140px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Language Visibility ---- */
.lang-en, .lang-ja, .lang-zh { display: none; }
[data-lang="en"] .lang-en { display: inline; }
[data-lang="ja"] .lang-ja { display: inline; }
[data-lang="zh"] .lang-zh { display: inline; }

.lang-en-b, .lang-ja-b, .lang-zh-b { display: none; }
[data-lang="en"] .lang-en-b { display: block; }
[data-lang="ja"] .lang-ja-b { display: block; }
[data-lang="zh"] .lang-zh-b { display: block; }

/* ---- Layout Utilities ---- */
.container { width: min(var(--max-w), 100% - 48px); margin-inline: auto; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--mint);
  color: #fff;
  box-shadow: 0 4px 20px rgba(54,179,126,.35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--mint-mid);
  box-shadow: 0 8px 32px rgba(54,179,126,.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-large { padding: 16px 34px; font-size: 1.05rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.2);
  transition: color .15s, border-color .15s, transform .18s;
}
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .25s, box-shadow .25s;
}
#nav.scrolled {
  background: rgba(12, 23, 20, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.nav-inner {
  height: 100%;
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: all .15s;
}
.lang-btn.active {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.lang-btn:hover:not(.active) { color: rgba(255,255,255,.8); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--mint);
  color: #fff;
  transition: background .15s, transform .15s;
}
.btn-nav-cta:hover { background: var(--mint-mid); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .25s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100dvh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(54,179,126,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 82% 60%, rgba(245,184,0,.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Sparkles */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sp {
  position: absolute;
  color: var(--spark);
  opacity: 0;
  animation: sp-float 7s ease-in-out infinite;
  font-style: normal;
}
.sp1  { top: 14%; left: 10%;  font-size: 13px; animation-delay: 0s; }
.sp2  { top: 24%; right: 9%;  font-size: 20px; animation-delay: 1.8s; }
.sp3  { top: 60%; left: 7%;   font-size: 9px;  animation-delay: 3.2s; }
.sp4  { top: 50%; right: 14%; font-size: 15px; animation-delay: 0.9s; }
.sp5  { top: 78%; left: 22%;  font-size: 11px; animation-delay: 2.5s; }
.sp6  { top: 35%; left: 45%;  font-size: 8px;  animation-delay: 4.1s; }

@keyframes sp-float {
  0%   { opacity: 0;    transform: translateY(12px) scale(0.7); }
  30%  { opacity: 0.65; }
  70%  { opacity: 0.4; }
  100% { opacity: 0;    transform: translateY(-18px) scale(1.15); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-block: 80px;
}

.hero-text { color: #fff; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,184,0,.1);
  border: 1px solid rgba(245,184,0,.22);
  color: var(--spark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spark);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.09;
  margin-bottom: 22px;
  color: #fff;
}
.gradient-text {
  background: linear-gradient(135deg, var(--mint) 0%, #5DFCA8 50%, var(--spark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.97rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

/* Phone in hero */
.hero-phone {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.hero-phone .hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 70% at 50% 70%, rgba(54,179,126,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-phone .phone-mockup {
  position: relative;
  z-index: 1;
}

/* ---- Phone Mockup ---- */
/*
 * Screenshots are 1320 × 2868 px (ratio 110:239).
 * aspect-ratio lives on .phone-screen (inner area) so the border doesn't
 * distort it. The outer .phone-mockup height auto-expands to fit.
 */
.phone-mockup {
  width: 220px;
  border-radius: 44px;
  border: 9px solid #1A1A1A;
  background: #000;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 40px 100px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
}
.phone-mockup.phone-sm {
  width: 160px;
  border-radius: 34px;
  border-width: 7px;
}

.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 17px;
  border-radius: 9px;
  background: #000;
  z-index: 10;
}
.phone-mockup.phone-sm .phone-island {
  top: 8px;
  width: 43px;
  height: 12px;
  border-radius: 6px;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 1320/2868; /* exact screenshot ratio */
  overflow: hidden;
  border-radius: 36px;
  background: #0C1714;
  position: relative;
}
.phone-mockup.phone-sm .phone-screen {
  border-radius: 28px;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ratios now match — no cropping, no bars */
  display: block;
}
.phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.15);
  background: linear-gradient(160deg, #233029 0%, #0C1714 100%);
  font-size: 0.75rem;
}
.phone-placeholder span:first-child { font-size: 36px; }

/* ---- SECTION COMMON ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

/* ---- FEATURES ---- */
.features {
  background: var(--surface);
  padding-block: 96px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--mint-light), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(54,179,126,.32);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--surface-2);
  padding-block: 96px;
}
.how-it-works .section-header h2 { color: var(--text); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.step-reverse {
  grid-template-columns: auto auto 1fr;
}
.step-reverse .step-num { order: 0; }
.step-reverse .step-screen { order: 1; }
.step-reverse .step-content { order: 2; }

.step-num {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--mint-light);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}

.step-screen { flex-shrink: 0; }
.step-reverse .step-screen { flex-shrink: 0; }

/* ---- SCREENSHOTS ---- */
.screenshots {
  background: var(--dark);
  padding-block: 96px 0;
  overflow: hidden;
}
.screenshots .section-header h2 { color: #fff; }
.screenshots .section-eyebrow { color: var(--mint); }

.screenshots-scroll {
  overflow: hidden;
  padding-block: 24px 56px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.screenshots-scroll:active { cursor: grabbing; }

.screenshots-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.screenshot-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.screenshot-phone-wrap {
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.screenshot-item:hover .screenshot-phone-wrap {
  transform: translateY(-10px) scale(1.05);
}
.screenshot-item:hover .phone-mockup {
  box-shadow:
    0 0 0 1px rgba(54,179,126,.35),
    0 30px 80px rgba(0,0,0,.65),
    0 0 48px rgba(54,179,126,.14);
}

.screenshot-caption {
  text-align: center;
  margin-top: 18px;
  width: 220px;
}

.screenshot-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  transition: color .25s ease;
  margin-bottom: 0;
}
.screenshot-item:hover .screenshot-label {
  color: var(--mint);
}

.screenshot-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .28s ease, margin-top .3s ease;
  margin-top: 0;
}
.screenshot-item:hover .screenshot-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}

/* ---- PRICING ---- */
.pricing {
  background: var(--surface);
  padding-block: 96px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin-inline: auto;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  background: var(--surface);
  position: relative;
}
.pricing-card-pro {
  background: var(--dark);
  border-color: var(--mint-dark);
  box-shadow: 0 16px 60px rgba(54,179,126,.14), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--spark);
  color: #3A2800;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-card-pro .pricing-header h3 { color: #fff; }

.pricing-price {
  font-size: 1.05rem;
  color: var(--text-muted);
}
.pricing-card-pro .pricing-price { color: rgba(255,255,255,.55); }
.pricing-price strong {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-right: 2px;
}
.pricing-card-pro .pricing-price strong { color: #fff; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-card-pro .pricing-features li { color: rgba(255,255,255,.65); }
.pricing-features li.dimmed { opacity: .4; }

.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}
li.dimmed .check {
  background: rgba(0,0,0,.06);
  color: var(--text-soft);
}
.check-pro {
  background: rgba(54,179,126,.18);
  color: var(--mint);
}

.btn-pricing-free {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: border-color .15s, color .15s, transform .15s;
}
.btn-pricing-free:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.btn-pricing-pro {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--mint);
  color: #fff;
  box-shadow: 0 4px 20px rgba(54,179,126,.35);
  transition: background .15s, box-shadow .15s, transform .15s;
}
.btn-pricing-pro:hover {
  background: var(--mint-mid);
  box-shadow: 0 8px 32px rgba(54,179,126,.45);
  transform: translateY(-2px);
}

/* ---- DOWNLOAD CTA ---- */
.download-cta {
  background: var(--dark);
  padding-block: 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(54,179,126,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
}
.cta-note {
  margin-top: 18px !important;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,.3) !important;
  margin-bottom: 0 !important;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 48px 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.footer-brand img { border-radius: 7px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-size: 0.85rem;
}
.footer-links a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.22); }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ---- Legal pages (privacy/terms) ---- */
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 36px;
  transition: opacity .15s, transform .15s;
}
.legal-back:hover { opacity: 0.75; transform: translateX(-3px); }
.legal-nav {
  background: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.legal-nav .nav-inner {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}
.legal-wrap {
  max-width: 760px;
  margin-inline: auto;
  padding: 64px 24px 96px;
}
.legal-wrap h1 { font-size: 2rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.legal-wrap .updated { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 48px; }
.legal-wrap h2 { font-size: 1.1rem; font-weight: 700; margin: 36px 0 10px; color: var(--mint-dark); }
.legal-wrap p, .legal-wrap li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }
.legal-wrap ul { padding-left: 20px; list-style: disc; }
.legal-wrap a { color: var(--mint); text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-block: 60px;
  }
  .hero-sub { max-width: 100%; margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { text-align: center; }
  .hero-phone { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .step-reverse {
    grid-template-columns: 1fr;
  }
  .step-reverse .step-num  { order: 0; }
  .step-reverse .step-content { order: 1; }
  .step-reverse .step-screen { order: 2; }
  .step-num { width: auto; }
  .step-content p { max-width: 100%; margin-inline: auto; }
  .step-screen { display: flex; justify-content: center; }
}

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .phone-mockup { width: 180px; }
  .screenshots-scroll { padding-inline: 24px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    inset-inline: 0;
    background: rgba(12,23,20,.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
}
