/* ============================================================
   LockNote — landing styles
   Warm cream / ink-black minimal, matching the app.
   ============================================================ */

:root {
  --cream:      #ECEAE3;
  --cream-deep: #E4E1D8;
  --card:       #FBFAF6;
  --card-2:     #F4F2EB;
  --ink:        #121212;
  --ink-2:      #2A2A28;
  --muted:      #6B6A63;
  --muted-2:    #97968D;
  --line:       rgba(18, 18, 18, 0.10);
  --line-soft:  rgba(18, 18, 18, 0.06);
  --lime:       #DDF24A;
  --lime-deep:  #C7E02C;
  --paper:      #FBF6E0;
  --orange:     #F5901E;
  --blue:       #2F7BF6;
  --radius:     24px;
  --radius-lg:  34px;
  --maxw:       1180px;
  --grad: linear-gradient(105deg, #7B3FE4 0%, #E5326B 32%, #FF5A2C 58%, #FF9E1B 80%, #34D6D6 100%);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "JetBrains Mono", "Menlo", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }

p { margin: 0; }

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

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 16px 26px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--ink {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.btn--ink:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.28); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(18,18,18,0.28); }

.btn--sm { padding: 11px 18px; font-size: 14.5px; }

.appstore-badge { display: inline-block; line-height: 0; transition: transform .18s ease; }
.appstore-badge img { height: 54px; width: auto; display: block; }
.appstore-badge:hover { transform: translateY(-2px); }
.nav-actions .appstore-badge img { height: 44px; }
.cta-band .appstore-badge { background: #fff; padding: 8px 11px; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.cta-band .appstore-badge img { height: 52px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line-soft); }
.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.03em; }
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--muted); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding: 70px 0 40px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.98; }
.hero .lede {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 30ch;
  font-weight: 450;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 15px 7px 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.hero-pill .dot { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); }
.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.hero-stage { display: flex; justify-content: center; position: relative; }

.hero-glow {
  position: absolute;
  inset: -10% -20% auto auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 60% 40%, rgba(123,63,228,0.16), transparent 62%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   Phone mockup
   ============================================================ */
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 1178 / 2556;
  background: #0b0b0c;
  border-radius: 52px;
  padding: 11px;
  box-shadow:
    0 2px 1px 1px rgba(255,255,255,0.18) inset,
    0 50px 90px -30px rgba(40,30,70,0.5),
    0 18px 40px -20px rgba(0,0,0,0.4);
  z-index: 1;
}
.phone--sm { width: 230px; border-radius: 40px; padding: 9px; }
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #111;
}
.phone--sm .phone__screen { border-radius: 32px; }
.phone__island {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 6;
}
.phone--sm .phone__island { width: 74px; height: 23px; top: 12px; }

/* wallpapers */
.wp-lavender {
  background:
    radial-gradient(120% 90% at 12% 8%, #f4dcc9 0%, transparent 46%),
    radial-gradient(120% 110% at 90% 22%, #efd6ec 0%, transparent 52%),
    linear-gradient(168deg, #ecd9e6 0%, #ddd0ea 48%, #cfc6e6 100%);
}
.wp-blue {
  background:
    radial-gradient(90% 60% at 60% 92%, #3aa6ef 0%, transparent 55%),
    radial-gradient(120% 80% at 20% 80%, #1e63c9 0%, transparent 60%),
    linear-gradient(178deg, #060c20 0%, #0d214f 42%, #173f8f 72%, #2f74cf 100%);
}
.wp-sunset {
  background: linear-gradient(170deg, #2a1430 0%, #7a2a52 38%, #e0623b 72%, #f4a23a 100%);
}
.wp-dark {
  background: linear-gradient(175deg, #14131a 0%, #241f2e 55%, #3a2f47 100%);
}

/* lock screen clock */
.ls-top { position: absolute; top: 64px; left: 0; right: 0; text-align: center; color: #fff; z-index: 3; }
.phone--sm .ls-top { top: 48px; }
.ls-date { font-size: 15px; font-weight: 600; opacity: 0.92; letter-spacing: 0.2px; }
.ls-time { font-size: 70px; font-weight: 590; line-height: 1; margin-top: 2px; letter-spacing: -2px; }
.phone--sm .ls-date { font-size: 12px; }
.phone--sm .ls-time { font-size: 52px; }
.ls-foot {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 30px; z-index: 3;
}
.ls-foot span {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.9);
}
.ls-foot span svg { width: 20px; height: 20px; }
.phone--sm .ls-foot span { width: 30px; height: 30px; }
.phone--sm .ls-foot span svg { width: 14px; height: 14px; }

/* ---------- note cards (on lock screen) ---------- */
.note {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 41%;
  transform: translateX(-50%);
  width: 78%;
}
.note h4 { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.phone--sm .note h4 { font-size: 13px; }

/* sticky (yellow) */
.note--sticky {
  background: var(--lime);
  padding: 18px 18px 22px;
  border-radius: 6px;
  transform: translateX(-50%) rotate(-3.5deg);
  box-shadow: 0 18px 30px -10px rgba(80,90,10,0.45);
  width: 80%;
}
.note--sticky::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  border-width: 0 0 26px 26px;
  border-style: solid;
  border-color: transparent transparent var(--lime-deep) transparent;
  filter: brightness(0.9);
}
.note--sticky .list { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.note--sticky .list li {
  list-style: none;
  font-size: 14.5px;
  font-weight: 560;
  color: #14140a;
  display: flex; align-items: center; gap: 9px;
}
.note--sticky .list li::before {
  content: "";
  width: 14px; height: 14px; flex: none;
  border: 1.8px solid #1a1a0f; border-radius: 50%;
}
.phone--sm .note--sticky .list li { font-size: 11px; gap: 6px; }
.phone--sm .note--sticky .list li::before { width: 10px; height: 10px; }

/* lined paper */
.note--paper {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 16px 18px 26px;
  box-shadow: 0 20px 34px -14px rgba(0,0,0,0.4);
  background-image:
    repeating-linear-gradient(transparent, transparent 22px, rgba(40,60,120,0.10) 23px);
  overflow: hidden;
  width: 80%;
}
.note--paper::before {
  content: "";
  position: absolute; left: 16px; top: 0; bottom: 0;
  width: 1.5px; background: rgba(220,60,60,0.55);
}
.note--paper h4 { font-family: var(--mono); font-size: 13px; font-weight: 700; }
.note--paper .lines { margin-top: 10px; font-family: var(--mono); font-size: 11.5px; line-height: 1.9; color: #2a2a24; }
.note--paper .lines .b { font-weight: 700; }
.note--paper .lines .accent { color: var(--blue); }
.phone--sm .note--paper h4 { font-size: 10px; }
.phone--sm .note--paper .lines { font-size: 9px; }

/* white card */
.note--white {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 22px 40px -16px rgba(0,0,0,0.45);
  width: 80%;
}
.note--white h4 { font-size: 16px; }
.note--white .list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.35; color: #1c1c1a; }
.note--white .list .b { font-weight: 700; }
.note--white .list .accent { color: var(--blue); }
.phone--sm .note--white .list { font-size: 11px; gap: 5px; }

/* glass */
.note--glass {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 40px -18px rgba(0,0,0,0.5);
  color: #fff;
  width: 80%;
}
.note--glass h4 { color: #fff; }
.note--glass .divider { height: 1px; background: rgba(255,255,255,0.25); margin: 10px 0; }
.note--glass .list { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; color: rgba(255,255,255,0.92); }
.note--glass .list .accent { color: #9ec9ff; }
.phone--sm .note--glass .list { font-size: 10.5px; gap: 5px; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); }
.section-head p { margin-top: 18px; font-size: 18px; line-height: 1.55; color: var(--muted); }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
  position: relative;
}
.step__num {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 17px;
  margin-bottom: 64px;
}
.step__viz {
  position: absolute; top: 26px; right: 26px; left: 80px; height: 78px;
}
.step h3 { font-size: 23px; }
.step p { margin-top: 12px; color: var(--muted); font-size: 16px; line-height: 1.5; }

/* mini visuals for steps */
.mini { position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: flex-end; }
.mini-editor {
  width: 100%; background: #fff; border-radius: 14px; padding: 12px 13px;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.3); border: 1px solid var(--line-soft);
}
.mini-editor .t { font-weight: 800; font-size: 13px; }
.mini-editor .r { height: 6px; border-radius: 4px; background: #e9e8e2; margin-top: 7px; }
.mini-editor .r.w1 { width: 80%; } .mini-editor .r.w2 { width: 62%; } .mini-editor .r.w3 { width: 70%; }
.mini-toolbar { display:flex; gap:8px; margin-top:10px; align-items:center; color: var(--muted); font-weight:800; font-size:12px;}
.mini-toolbar b { font-style: normal; }

.swatches { display: flex; gap: 8px; }
.swatches .sw { width: 34px; height: 60px; border-radius: 9px; box-shadow: 0 6px 14px -6px rgba(0,0,0,0.4); }
.swatches .sw.active { outline: 2.5px solid var(--ink); outline-offset: 2px; }

.lockmini {
  width: 90px; aspect-ratio: 1/2; border-radius: 14px; padding: 6px;
  background: #0b0b0c; box-shadow: 0 12px 24px -10px rgba(0,0,0,0.45); margin-left:auto;
}
.lockmini .scr { height: 100%; border-radius: 9px; overflow: hidden; position: relative; }
.lockmini .nt {
  position: absolute; left: 8%; right: 8%; top: 40%;
  background: var(--lime); border-radius: 3px; padding: 6px;
  transform: rotate(-4deg);
}
.lockmini .nt i { display:block; height:3px; border-radius:2px; background:#1a1a0f; opacity:.75; margin:3px 0; }
.lockmini .nt i:first-child{ width:60%; height:4px; opacity:1; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(0,0,0,0.3); }
.feature .ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--cream-deep);
  display: grid; place-items: center; margin-bottom: 18px;
  color: var(--ink);
}
.feature .ico svg { width: 24px; height: 24px; }
.feature.accent .ico { background: var(--lime); }
.feature.accent-o .ico { background: var(--orange); color: #fff; }
.feature h3 { font-size: 19px; letter-spacing: -0.025em; }
.feature p { margin-top: 9px; font-size: 15px; line-height: 1.5; color: var(--muted); }

.feature--wide { grid-column: span 1; }

/* style gallery */
.gallery-rail {
  display: flex; gap: 30px; overflow-x: auto;
  padding: 8px 24px 30px; margin: 0 -24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-rail::-webkit-scrollbar { height: 8px; }
.gallery-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.gallery-item { scroll-snap-align: center; flex: none; text-align: center; }
.gallery-item .cap { margin-top: 18px; font-weight: 700; font-size: 16px; }
.gallery-item .cap small { display: block; font-weight: 500; color: var(--muted); font-size: 13.5px; margin-top: 3px; letter-spacing: 0; }

/* pricing */
.pricing { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
.plan {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  display: flex; flex-direction: column;
}
.plan--free { justify-content: space-between; }
.plan__name { font-size: 22px; font-weight: 800; }
.plan__price { margin: 18px 0 4px; font-size: 46px; font-weight: 800; letter-spacing: -0.04em; }
.plan__price small { font-size: 17px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); line-height: 1.4; }
.plan li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; color: var(--ink); }
.plan--free li svg { color: var(--muted); }

.plan--pro { background: var(--ink); color: #fff; border: none; position: relative; overflow: hidden; }
.plan--pro::before {
  content: ""; position: absolute; inset: auto -30% -50% auto; width: 360px; height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(245,144,30,0.28), transparent 60%);
}
.pro-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  background: var(--grad); color: #fff; padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px; width: fit-content;
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 26px; position: relative; }
.tier {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 18px 14px; text-align: center;
  position: relative;
}
.tier.best { border-color: transparent; background: rgba(255,255,255,0.1); box-shadow: 0 0 0 2px rgba(255,255,255,0.9) inset; }
.tier .tname { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.82); }
.tier .tprice { font-size: 28px; font-weight: 800; margin-top: 8px; letter-spacing: -0.03em; }
.tier .tper { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.tier .tflag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em;
  background: var(--grad); padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.plan--pro .feat-row { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 4px; position: relative; }
.plan--pro .feat-row span { display: flex; gap: 7px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.86); }
.plan--pro .feat-row svg { width: 16px; height: 16px; color: var(--lime); }
.plan--pro .btn--lime { background: var(--lime); color: #14140a; position: relative; }
.plan--pro .btn--lime:hover { transform: translateY(-2px); }
.plan--pro .fineprint { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,0.5); text-align: center; position: relative; }
.plan--pro .fineprint a { color: rgba(255,255,255,0.82); text-decoration: underline; text-underline-offset: 2px; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; font-size: 19px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em;
}
.faq-q .ic { flex: none; width: 26px; height: 26px; position: relative; transition: transform .25s ease; }
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .ic::before { width: 16px; height: 2.4px; }
.faq-q .ic::after { width: 2.4px; height: 16px; transition: transform .25s ease; }
.faq-item.open .faq-q .ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 26px; font-size: 16.5px; line-height: 1.6; color: var(--muted); max-width: 70ch; }

/* cta band */
.cta-band {
  background: var(--ink); color: #fff;
  border-radius: 40px; padding: 70px 50px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% 30% auto -20%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(123,63,228,0.3), transparent 62%);
}
.cta-band::after {
  content: ""; position: absolute; inset: auto -10% -50% auto; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(245,144,30,0.26), transparent 62%);
}
.cta-band h2 { font-size: clamp(32px, 4.6vw, 54px); position: relative; }
.cta-band p { margin: 18px auto 0; max-width: 46ch; font-size: 18px; color: rgba(255,255,255,0.72); position: relative; line-height: 1.5; }
.cta-band .hero-cta { justify-content: center; position: relative; margin-top: 32px; }


/* footer */
.site-footer { padding: 70px 0 46px; border-top: 1px solid var(--line); margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { font-size: 21px; }
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 30ch; }
.footer-brand .mail {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px;
}
.footer-brand .mail:hover { color: var(--ink); text-decoration: underline; }
.footer-col h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 14px; color: var(--muted-2); flex-wrap: wrap;
}

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

/* legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 60px 24px 100px; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); }
.legal .updated { color: var(--muted-2); margin-top: 14px; font-size: 15px; font-weight: 600; }
.legal h2 { font-size: 24px; margin-top: 44px; }
.legal p, .legal li { color: var(--ink-2); font-size: 16.5px; line-height: 1.65; margin-top: 14px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--ink); font-weight: 600; text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--muted); margin-bottom: 30px; }
.back-link:hover { color: var(--ink); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero .lede { max-width: none; }
  .hero-cta { justify-content: center; }
  .hero-pill { margin-inline: auto; }
  .hero-note { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: grid; place-items: center; width: 42px; height: 42px;
    border-radius: 12px; background: var(--card); border: 1px solid var(--line);
  }
  .nav-actions .appstore-badge { display: none; }
  .section { padding: 70px 0; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 54px 26px; border-radius: 30px; }
  .tiers { grid-template-columns: 1fr; }
  .tier .tflag { position: static; transform: none; display: inline-block; margin-bottom: 8px; }
}
