/* attesta.cc — shared brand styles */
/* Brand palette + voice / behaviour mirrors the app (see Lifelog
   docs/PRODUCT_STRATEGY.md §4). Bump tokens here, the whole site follows. */

:root {
  /* Brand palette — constant across modes (identity, not surface) */
  --brand-blue:   #4F8CFF;
  --brand-purple: #A78BFA;
  --brand-pink:   #F472B6;
  --brand-gradient: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    var(--brand-purple) 50%,
    var(--brand-pink) 100%
  );
}

/* Dark mode — default. Matches the app's dark surface tone. */
:root {
  --bg:             #0A0B14;
  --surface:        #13141F;
  --surface-strong: #1B1C2A;
  --text:           #E8EAED;
  --text-secondary: #9CA0AE;
  --link:           #F8A8D0;
  --border:         rgba(255, 255, 255, 0.08);
}

/* Light mode — override only when the OS asks. */
@media (prefers-color-scheme: light) {
  :root {
    --bg:             #FFFFFF;
    --surface:        #F6F7FB;
    --surface-strong: #ECEEF5;
    --text:           #1A1B26;
    --text-secondary: #5A5C68;
    --link:           #7C3AED;
    --border:         rgba(0, 0, 0, 0.08);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
    system-ui, -webkit-system-font, "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

/* Generic full-bleed → centered content wrapper (landing sections). */
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────────────────────────────────────
   LEGAL / SHARED  (privacy + terms)
   ───────────────────────────────────────────────────────────────────────── */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 96px;
}

/* ── Site header (legal pages) ────────────────────────────────────────── */

.site-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 40px;
  margin-bottom: 24px;
}

.site-header__logo {
  width: 28px;
  height: 28px;
  display: block;
}

.site-header__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  border-bottom: none;
}

/* ── Page header (legal pages) ────────────────────────────────────────── */

.page-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
}

.page-meta {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 48px;
  letter-spacing: 0.01em;
}

/* ── Typography (legal body) ──────────────────────────────────────────── */

h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  line-height: 1.3;
  scroll-margin-top: 24px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 32px 0 10px;
  color: var(--text);
  letter-spacing: -0.005em;
}

p, ul, ol { margin: 0 0 20px; }
ul, ol    { padding-left: 24px; }
li        { margin-bottom: 8px; }
li::marker { color: var(--text-secondary); }

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.15s ease;
}

a:hover { opacity: 0.75; }

strong { color: var(--text); font-weight: 600; }

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ── Tables (sub-processors, retention, pricing) ──────────────────────── */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td { border-bottom: none; }

/* ── Brand-gradient accents ───────────────────────────────────────────── */

.brand-gradient,
.grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.brand-rule {
  border: none;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 2px;
  margin: 56px 0;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────────────────────
   MOTION  (entrance + ambient float; all disabled under reduced-motion)
   ───────────────────────────────────────────────────────────────────────── */

/* Hero copy rises in on load. */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Phone mockups bob gently, forever. */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Scroll-reveal — only hide when JS is present to reveal it again. */
.js .reveal,
.js .reveal-fade {
  opacity: 0;
  will-change: opacity, transform;
}

.js .reveal {
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal-fade {
  transition: opacity 0.85s ease;
}

.js .reveal.in,
.js .reveal-fade.in {
  opacity: 1;
  transform: none;
}

/* Stagger pillars, showcase title/sub, and the phone trio as they enter. */
.section-sub.reveal { transition-delay: 0.08s; }
.pillar-grid .pillar:nth-child(2).reveal { transition-delay: 0.09s; }
.pillar-grid .pillar:nth-child(3).reveal { transition-delay: 0.18s; }
.shots .shot:nth-child(2).reveal-fade { transition-delay: 0.10s; }
.shots .shot:nth-child(3).reveal-fade { transition-delay: 0.20s; }

/* ─────────────────────────────────────────────────────────────────────────
   LANDING  (index.html)
   ───────────────────────────────────────────────────────────────────────── */

/* ── Nav — transparent, floats over the hero ──────────────────────────── */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: none;
}

.nav__logo { width: 28px; height: 28px; display: block; }

/* ── Hero — full viewport, centered ───────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 132px 24px 88px;
}

/* Soft brand glow behind the hero copy. */
.hero__glow {
  position: absolute;
  top: 38%;
  left: 50%;
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 35%, rgba(79, 140, 255, 0.30), transparent 60%),
    radial-gradient(circle at 70% 40%, rgba(167, 139, 250, 0.26), transparent 60%),
    radial-gradient(circle at 50% 70%, rgba(244, 114, 182, 0.22), transparent 62%);
  filter: blur(36px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
}

.hero__title {
  font-size: clamp(40px, 7.5vw, 74px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0 0 22px;
  animation: rise 0.7s 0.05s both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__lede {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  animation: rise 0.7s 0.18s both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__lede strong { color: var(--text); }

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  animation: rise 0.7s 0.30s both cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ── App Store download badge — the primary CTA (app is live) ─────────── */

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 13px 28px;
  text-decoration: none;
  box-shadow: 0 10px 34px -14px rgba(0, 0, 0, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.appstore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.8);
}

.appstore-btn__apple {
  display: block;               /* kill inline-baseline gap → true vertical centering */
  flex: none;
  color: #fff;
  position: relative;
  top: -1px;                    /* optical nudge: apple mark sits high in its box */
}

.appstore-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}

.appstore-btn__text small {
  font-size: 11px;
  letter-spacing: 0.02em;
  opacity: 0.82;
}

.appstore-btn__text strong {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__hint {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 4px 0 0;
  letter-spacing: 0.01em;
}

/* ── Section heads (showcase, etc.) ───────────────────────────────────── */

.section-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── Screenshot showcase — 3-up, centre focal, gently floating ────────── */

.showcase { padding: 88px 0; }

.shots {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(8px, 1.6vw, 22px);
}

.shot {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
}

/* Centre phone — the hero shot: biggest, in front. */
.shot--focal {
  width: 268px;
  max-width: 40%;
  z-index: 2;
}

/* Side phones — smaller and dropped down, tucked behind the focal one. */
.shot--side {
  width: 188px;
  max-width: 27%;
  margin-top: 34px;
  z-index: 1;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.48),
    0 6px 14px rgba(0, 0, 0, 0.32);
  animation: float 6s ease-in-out infinite;
}

/* De-phase the three so they bob independently, not in lockstep. */
.shot--focal img              { animation-duration: 5.4s; }
.shots .shot:nth-child(1) img { animation-delay: -2s; }
.shots .shot:nth-child(3) img { animation-delay: -4s; }

@media (prefers-color-scheme: light) {
  .shot img {
    box-shadow:
      0 22px 48px rgba(20, 22, 40, 0.16),
      0 6px 14px rgba(20, 22, 40, 0.10);
  }
}

@media (max-width: 560px) {
  .shots { gap: 2.5vw; }
  .shot--side { margin-top: 22px; }
}

/* ── Values / pillar cards ────────────────────────────────────────────── */

.values { padding: 0 0 56px; }

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
}

@media (min-width: 760px) {
  .pillar-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  padding: 34px 30px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 42%),
    var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Gradient hairline along the top edge. */
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0.85;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.42);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

@media (prefers-color-scheme: light) {
  .pillar:hover { box-shadow: 0 22px 44px rgba(20, 22, 40, 0.12); }
}

/* Big, typography-led — the headline carries the idea (no icons). */
.pillar__title {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 14px;
}

.pillar__body {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER — legal pages (simple flex row)
   ───────────────────────────────────────────────────────────────────────── */

.site-footer {
  margin-top: 96px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.site-footer a {
  color: var(--text-secondary);
  border-bottom-color: transparent;
}

.site-footer a:hover { color: var(--link); opacity: 1; }

.site-footer__spacer { flex: 1; }

.site-footer__copy { color: var(--text-secondary); font-size: 13px; }

/* ─────────────────────────────────────────────────────────────────────────
   FOOTER — landing (designed band: brand column + link column + bottom bar)
   ───────────────────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(167, 139, 250, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
  padding: 56px 0 30px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 64px;
  padding-bottom: 38px;
}

.footer__brand { max-width: 440px; }

.footer__logo-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: none;
}

.footer__logo { width: 26px; height: 26px; display: block; }

.footer__tagline {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin: 14px 0 18px;
}

.footer__soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.footer__soon:hover { color: var(--text); border-color: var(--text-secondary); }

.footer__apple {
  display: block;
  flex: none;
  color: var(--text);
  position: relative;
  top: -1px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-bottom: 2px;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.15s ease;
  width: fit-content;
}

.footer__links a:hover { color: var(--link); opacity: 1; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}

.footer__made { opacity: 0.8; }

/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE  (small screens)
   ───────────────────────────────────────────────────────────────────────── */

@media (max-width: 540px) {
  .container { padding: 24px 18px 72px; }
  .page-title { font-size: 32px; }
  h2 { font-size: 20px; margin-top: 48px; }
  table { font-size: 14px; }
  th, td { padding: 12px 12px; }
  .showcase { padding: 64px 0; }
  .nav { padding: 16px 18px; }
}

/* ── Reduced motion ───────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ═════════════════════════════════════════════════════════════════════
   LANDING PAGE v2 (index.html) — lp- components
   ═════════════════════════════════════════════════════════════════════ */

/* ── Nav (sticky, solidifies on scroll) ───────────────────────────── */
.lp-nav { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease; }
.lp-nav.is-scrolled { background: rgba(10, 11, 20, .72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--border); }
@media (prefers-color-scheme: light) { .lp-nav.is-scrolled { background: rgba(255, 255, 255, .82); } }
.lp-nav__inner { display: flex; align-items: center; gap: 20px; padding-top: 16px; padding-bottom: 16px; }
.lp-nav__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 18px; font-weight: 600; letter-spacing: -.01em; text-decoration: none; border-bottom: none; }
.lp-nav__logo { width: 28px; height: 28px; display: block; border-radius: 7px; }
.lp-nav__links { display: none; gap: 26px; margin-left: auto; }
.lp-nav__links a { color: var(--text-secondary); font-size: 15px; text-decoration: none; border-bottom: none; transition: color .15s ease; }
.lp-nav__links a:hover { color: var(--text); opacity: 1; }
.lp-nav__cta { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; border: 1px solid var(--border); border-radius: 999px; padding: 9px 18px; white-space: nowrap; transition: border-color .15s ease; }
.lp-nav__cta:hover { border-color: var(--text-secondary); opacity: 1; }
@media (min-width: 860px) { .lp-nav__links { display: flex; } .lp-nav__cta { margin-left: 0; } }

/* ── Section base ─────────────────────────────────────────────────── */
.lp-section { padding: 84px 0; }
.lp-section__title { font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: -.03em; line-height: 1.12; text-align: center; margin: 0 auto 48px; max-width: 760px; }
.lp-center { text-align: center; margin-top: 44px; }
.lp-center .appstore-btn { display: inline-flex; }
.lp-eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 16px; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.lp-hero { position: relative; overflow: hidden; padding: 64px 0 72px; }
.lp-hero__glow { position: absolute; top: -8%; left: 62%; width: min(820px, 110vw); height: min(820px, 110vw); transform: translate(-50%, -8%); background: radial-gradient(circle at 40% 40%, rgba(79, 140, 255, .26), transparent 60%), radial-gradient(circle at 65% 45%, rgba(167, 139, 250, .22), transparent 60%), radial-gradient(circle at 55% 65%, rgba(244, 114, 182, .18), transparent 62%); filter: blur(42px); pointer-events: none; z-index: 0; }
.lp-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.lp-hero__title { font-size: clamp(38px, 6.2vw, 64px); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; margin: 0 0 22px; animation: rise .7s .05s both cubic-bezier(.2, .7, .2, 1); }
.lp-hero__lede { font-size: clamp(16px, 2.2vw, 19px); line-height: 1.6; color: var(--text-secondary); max-width: 560px; margin: 0 0 30px; }
.lp-hero__lede, .lp-hero__copy { text-align: left; }
.lp-hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.lp-hero__micro { font-size: 13px; color: var(--text-secondary); margin: 0; letter-spacing: .01em; max-width: 420px; }
.lp-hero__visual { display: flex; justify-content: center; }
.lp-phone { width: min(280px, 72vw); }
.lp-phone img { display: block; width: 100%; height: auto; border-radius: 30px; border: 1px solid var(--border); box-shadow: 0 30px 70px rgba(0, 0, 0, .5), 0 8px 20px rgba(0, 0, 0, .34); }
@media (min-width: 880px) {
  .lp-hero { padding: 88px 0 96px; }
  .lp-hero__inner { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .lp-phone { width: 300px; }
}

/* ── Cards (shared: trust + why) ──────────────────────────────────── */
.lp-card { position: relative; padding: 28px 26px; border-radius: 20px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0) 44%), var(--surface); }
.lp-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; color: var(--text); letter-spacing: -.01em; }
.lp-card p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
.lp-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 11px; margin-bottom: 14px; font-size: 17px; font-weight: 700; color: #fff; background: var(--brand-gradient); }

/* ── Trust strip ──────────────────────────────────────────────────── */
.lp-trust { padding: 16px 0 8px; }
.lp-trust__title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -.02em; text-align: center; margin: 0 auto 36px; }
.lp-trust__title em { font-style: normal; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-trust__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .lp-trust__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── How it works ─────────────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: 1fr; gap: 22px; }
.lp-step { padding: 26px 24px; border-radius: 18px; border: 1px solid var(--border); background: var(--surface); }
.lp-step__num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; font-weight: 700; font-size: 15px; color: #fff; background: var(--brand-gradient); margin-bottom: 14px; }
.lp-step h3 { font-size: 18px; margin: 0 0 8px; color: var(--text); }
.lp-step p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
@media (min-width: 820px) { .lp-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ── Why grid (5 differentiators) ─────────────────────────────────── */
.lp-why__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) and (max-width: 999px) {
  .lp-why__grid { grid-template-columns: repeat(4, 1fr); }
  .lp-why__grid > .lp-card { grid-column: span 2; }
  .lp-why__grid > .lp-card:nth-child(5) { grid-column: 2 / span 2; }
}
@media (min-width: 1000px) {
  .lp-why__grid { grid-template-columns: repeat(6, 1fr); }
  .lp-why__grid > .lp-card { grid-column: span 2; }
  .lp-why__grid > .lp-card:nth-child(4) { grid-column: 2 / span 2; }
  .lp-why__grid > .lp-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* ── Use cases ────────────────────────────────────────────────────── */
.lp-uses { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .lp-uses { grid-template-columns: repeat(2, 1fr); } }
.lp-use { display: block; padding: 28px 26px; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.lp-use:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, .42); opacity: 1; }
.lp-use h3 { font-size: 19px; margin: 0 0 6px; color: var(--text); }
.lp-use p { margin: 0 0 14px; color: var(--text-secondary); font-size: 15px; }
.lp-use__link { font-size: 14px; font-weight: 600; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Pricing teaser ───────────────────────────────────────────────── */
.lp-price { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 960px; margin: 0 auto; }
@media (min-width: 820px) { .lp-price { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.lp-price__tier { position: relative; padding: 30px 26px; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); text-align: center; }
.lp-price__tier--feature { border: 1px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--brand-gradient) border-box; }
.lp-price__tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--brand-gradient); padding: 4px 12px; border-radius: 999px; }
.lp-price__name { display: block; font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; letter-spacing: .01em; }
.lp-price__amt { display: block; font-size: 34px; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.lp-price__amt small { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.lp-price__tier p { margin: 12px 0 0; color: var(--text-secondary); font-size: 14px; }
.lp-price__note { text-align: center; margin: 28px 0 0; color: var(--text-secondary); font-size: 15px; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.lp-faq__wrap { max-width: 760px; }
.lp-faq__item { border-bottom: 1px solid var(--border); }
.lp-faq__item summary { list-style: none; cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 600; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after { content: "+"; font-weight: 400; font-size: 22px; line-height: 1; color: var(--text-secondary); transition: transform .2s ease; }
.lp-faq__item[open] summary::after { transform: rotate(45deg); }
.lp-faq__item p { margin: 0 0 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* ── Final CTA ────────────────────────────────────────────────────── */
.lp-final { position: relative; overflow: hidden; padding: 96px 0; text-align: center; border-top: 1px solid var(--border); }
.lp-final__glow { position: absolute; inset: 0; background: radial-gradient(120% 130% at 50% 120%, rgba(167, 139, 250, .18), transparent 60%); pointer-events: none; }
.lp-final__inner { position: relative; z-index: 1; }
.lp-final__title { font-size: clamp(28px, 4.5vw, 42px); font-weight: 700; letter-spacing: -.03em; margin: 0 0 14px; }
.lp-final__sub { color: var(--text-secondary); font-size: 17px; max-width: 520px; margin: 0 auto 28px; }
.lp-final .appstore-btn { display: inline-flex; }
.lp-final__micro { font-size: 13px; color: var(--text-secondary); margin: 16px 0 0; }

@media (max-width: 540px) {
  .lp-section { padding: 64px 0; }
  .lp-hero { padding: 40px 0 56px; }
}
