/* ============================================================
   Ponder - pondernote.com
   Dark, calm, serif-accented. Periwinkle primary (#9D9DF7).
   Display headings: Newsreader (bundled). Body: Inter.
   ============================================================ */

/* ---- Newsreader bundled font ---- */
@font-face {
  font-family: 'Newsreader';
  src: url('assets/fonts/Newsreader.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

/* ---- Anti-copy / anti-save guard ---- */
html {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
img, picture {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

:root {
  --accent: #9D9DF7;
  --accent-dim: rgba(157, 157, 247, 0.13);
  --accent-glow: rgba(157, 157, 247, 0.22);
  --bg: #0B0B12;
  --bg-2: #15151F;
  --card: rgba(255, 255, 255, 0.028);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #F4F4FA;
  --text-2: #A8A8BC;
  --text-3: #7C7C90;
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Subtle film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 2; }

::selection { background: rgba(157, 157, 247, 0.28); color: #fff; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.accent { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #14122A;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 24px;
  transition: background .35s var(--ease), backdrop-filter .35s, box-shadow .35s, padding .35s;
}
.nav--scrolled {
  background: rgba(11, 11, 18, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
  padding-top: 10px; padding-bottom: 10px;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em;
}
.nav-logo img { border-radius: 8px; }
.nav-menu {
  display: flex; gap: 30px;
}
.nav-menu a {
  position: relative;
  text-decoration: none; color: var(--text-2);
  font-size: .92rem; font-weight: 500;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; border-radius: 2px; background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: right .3s var(--ease);
}
.nav-menu a.is-active { color: var(--text); }
.nav-menu a.is-active::after { right: 0; }
.nav-cta {
  padding: 9px 20px;
  background: var(--accent);
  color: #14122A;
  text-decoration: none;
  font-weight: 650; font-size: .9rem;
  border-radius: 100px;
  transition: transform .2s var(--ease), box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 28px var(--accent-glow); }

/* --- Buttons --- */
.store-button {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  background: #fff; color: #000;
  text-decoration: none; border-radius: 14px;
  transition: transform .2s var(--ease), box-shadow .25s;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,.12); }
.store-button small { display: block; font-size: .68rem; font-weight: 500; opacity: .65; line-height: 1; }
.store-button strong { display: block; font-size: 1.02rem; font-weight: 700; line-height: 1.25; }
.store-button--large { padding: 17px 34px; }
.store-button--large strong { font-size: 1.12rem; }

.ghost-button {
  display: inline-flex; align-items: center;
  padding: 14px 24px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: .95rem;
  background: var(--card);
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.ghost-button:hover { border-color: rgba(157,157,247,.45); background: var(--accent-dim); transform: translateY(-2px); }

/* --- Hero --- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  gap: 70px;
  padding: 150px 24px 70px;
}
.hero-bg {
  position: absolute; inset: -10% 0 0;
  z-index: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  will-change: transform;
}
.orb--purple {
  width: 560px; height: 560px;
  top: -140px; left: 8%;
  background: radial-gradient(circle, rgba(157,157,247,.20), transparent 65%);
  animation: drift-a 18s ease-in-out infinite;
}
.orb--indigo {
  width: 440px; height: 440px;
  top: 60px; right: 6%;
  background: radial-gradient(circle, rgba(91,95,199,.18), transparent 65%);
  animation: drift-b 22s ease-in-out infinite;
}
@keyframes drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(35px,28px) scale(1.08); }
}
@keyframes drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-45px,36px) scale(1.1); }
}
.hero-ripples {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 96%);
  height: 460px;
  display: block;
  opacity: 0.9;
}
.hero-content { position: relative; z-index: 2; flex: 1; max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px;
  border: 1px solid rgba(157,157,247,.32);
  background: var(--accent-dim);
  border-radius: 100px;
  color: var(--accent);
  font-weight: 600; font-size: .82rem; letter-spacing: .01em;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* Newsreader for hero h1 */
.hero-h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.9rem, 6.2vw, 4.6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.14rem; color: var(--text-2);
  line-height: 1.65; max-width: 440px; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 30px;
}
.hero-trust li {
  position: relative; color: var(--text-3);
  font-size: .9rem; font-weight: 500; padding-left: 20px;
}
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* --- Phone frame and placeholder --- */
.hero-phone { position: relative; z-index: 2; flex-shrink: 0; will-change: transform; transition: transform .25s var(--ease); }

.phone-frame {
  position: relative;
  width: 300px;
  height: 620px;
  border-radius: 42px;
  border: 2px solid rgba(255,255,255,.10);
  background: #0D0D1A;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,.6),
    0 0 50px rgba(157,157,247,.09),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Notch */
.phone-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #0D0D1A;
  border-radius: 0 0 14px 14px;
  z-index: 10;
  border: 1px solid rgba(255,255,255,.06);
  border-top: none;
}

/* Accent glow above frame */
.phone-frame::after {
  content: "";
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 80px;
  background: radial-gradient(ellipse, rgba(157,157,247,.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.phone-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 24px 24px;
  background: linear-gradient(160deg, #14121F 0%, #0B0B12 100%);
}

/* Subtle grid lines on placeholder */
.phone-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157,157,247,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,157,247,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ph-icon {
  position: relative;
  border-radius: 20px;
  opacity: 0.85;
  box-shadow: 0 0 24px rgba(157,157,247,.18);
}

.ph-faux {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-row {
  height: 10px;
  border-radius: 6px;
  background: rgba(157,157,247,.12);
  width: 100%;
  overflow: hidden;
}
.ph-row--label { height: 7px; width: 42%; background: rgba(157,157,247,.22); }
.ph-row--title { height: 14px; background: rgba(244,244,250,.10); }
.ph-row--body { background: rgba(157,157,247,.09); }
.ph-row--short { width: 65%; }
.ph-divider { height: 1px; background: rgba(255,255,255,.06); margin: 6px 0; }

/* Shimmer on placeholder rows */
.ph-row::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(157,157,247,.08), transparent);
  animation: shimmer 2.4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 120%; }
}

/* Float animation for hero phone */
.hero-phone .phone-frame { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Plug-and-play screenshot */
.phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Method and feature phone sizes */
.method-phone .phone-frame,
.feature-phone .phone-frame {
  width: 268px;
  height: 555px;
  border-radius: 38px;
}

/* --- Stat strip --- */
.strip {
  position: relative; z-index: 2;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}
.strip-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 34px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700; letter-spacing: -0.02em;
  font-family: 'Newsreader', Georgia, serif;
}
.stat-label { font-size: .85rem; color: var(--text-3); }

/* --- Section heads --- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.eyebrow {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.12;
}

/* --- Method deep-dive --- */
.method { max-width: var(--maxw); margin: 0 auto; padding: 30px 24px 10px; }
.method-card {
  display: flex; align-items: center; gap: 70px;
  padding: 56px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(91,95,199,.12), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(157,157,247,.09), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
}
.method-text { flex: 1; }
.method-text h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 20px;
}
.method-lead { font-size: 1.08rem; color: var(--text-2); max-width: 560px; margin-bottom: 38px; line-height: 1.65; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; max-width: 600px; }
.spec { position: relative; padding-left: 18px; }
.spec::before {
  content: ""; position: absolute; left: 0; top: 7px; bottom: 7px;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(91,95,199,.6));
}
.spec h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.spec p { font-size: .92rem; color: var(--text-3); line-height: 1.5; }
.method-phone { flex-shrink: 0; }

/* --- Features --- */
.features {
  max-width: var(--maxw); margin: 0 auto;
  padding: 110px 24px 40px;
  display: flex; flex-direction: column; gap: 120px;
}
.feature { display: flex; align-items: center; gap: 80px; }
.feature--reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-tag {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--c, var(--accent));
  margin-bottom: 14px;
}
.feature-text h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.14;
  margin-bottom: 18px;
}
.feature-text p { font-size: 1.05rem; color: var(--text-2); max-width: 400px; }
.feature-phone { flex-shrink: 0; }

/* --- Why --- */
.why { position: relative; padding: 120px 24px; overflow: hidden; }
.why::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 720px; height: 480px;
  background: radial-gradient(ellipse, rgba(157,157,247,.06), transparent 70%);
  pointer-events: none;
}
.why-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.why-inner h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  font-weight: 500; letter-spacing: -0.02em; margin-bottom: 22px; line-height: 1.14;
}
.why-lead { font-size: 1.16rem; color: var(--text-2); max-width: 680px; margin: 0 auto 52px; line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; text-align: left; }
.why-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 30px;
}
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--text-2); font-size: 1rem; line-height: 1.6; }

/* --- Feature grid --- */
.grid-section { max-width: var(--maxw); margin: 0 auto; padding: 110px 24px; }
.grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.grid-card {
  --c: var(--accent);
  position: relative; isolation: isolate; overflow: hidden;
  padding: 30px 26px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background:
    radial-gradient(120% 80% at 50% -20%, color-mix(in srgb, var(--c) 9%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.grid-card::before {
  content: ""; position: absolute; top: 0; left: 20px; right: 100%;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--c), transparent);
  transition: right .45s var(--ease);
}
.grid-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--c) 40%, transparent);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 40px color-mix(in srgb, var(--c) 12%, transparent);
}
.grid-card:hover::before { right: 20px; }
.grid-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--c);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--c) 22%, transparent), color-mix(in srgb, var(--c) 7%, transparent));
  border: 1px solid color-mix(in srgb, var(--c) 28%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.grid-icon svg {
  width: 25px; height: 25px;
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--c) 55%, transparent));
}
.grid-card:hover .grid-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 24px color-mix(in srgb, var(--c) 30%, transparent);
}
.grid-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 9px; letter-spacing: -0.01em; }
.grid-card p { font-size: .92rem; color: var(--text-3); line-height: 1.55; }

/* --- FAQ --- */
.faq { max-width: 800px; margin: 0 auto; padding: 60px 24px 110px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq-item[open] { border-color: rgba(157,157,247,.30); background: rgba(157,157,247,.028); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px;
  font-size: 1.06rem; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { color: var(--text-2); font-size: 1rem; max-width: 640px; }

/* --- CTA --- */
.cta { position: relative; padding: 40px 24px 130px; overflow: hidden; }
.cta-inner {
  position: relative;
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: 70px 40px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top, rgba(157,157,247,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  overflow: hidden;
}
.cta-icon { border-radius: 18px; margin-bottom: 26px; box-shadow: 0 0 50px rgba(157,157,247,.18); }
.cta h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px;
}
.cta p { color: var(--text-2); font-size: 1.1rem; margin-bottom: 34px; }
.cta .store-button { margin: 0 auto; }

/* --- Footer --- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--card-border); padding: 40px 24px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; }
.footer-brand img { border-radius: 6px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--text-3); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-3); font-size: .82rem; width: 100%; }

/* --- Scroll reveal --- */
[data-animate] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-animate].visible { opacity: 1; transform: none; }
.grid.visible .grid-card,
.specs.visible .spec { animation: rise .6s var(--ease) backwards; }
.grid.visible .grid-card:nth-child(1){animation-delay:.04s}
.grid.visible .grid-card:nth-child(2){animation-delay:.09s}
.grid.visible .grid-card:nth-child(3){animation-delay:.14s}
.grid.visible .grid-card:nth-child(4){animation-delay:.19s}
.grid.visible .grid-card:nth-child(5){animation-delay:.24s}
.grid.visible .grid-card:nth-child(6){animation-delay:.29s}
.grid.visible .grid-card:nth-child(7){animation-delay:.34s}
.grid.visible .grid-card:nth-child(8){animation-delay:.39s}
@keyframes rise { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform:none; } }

/* --- Privacy page styles --- */
.content {
  max-width: 720px; margin: 0 auto; padding: 130px 24px 80px;
}
.content h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.updated { color: var(--text-3); font-size: .9rem; margin-bottom: 36px; }
.callout {
  padding: 24px 28px;
  border: 1px solid rgba(157,157,247,.25);
  border-radius: var(--radius);
  background: rgba(157,157,247,.06);
  margin-bottom: 36px;
}
.callout p { color: var(--text-2); line-height: 1.65; }
.callout p + p { margin-top: 10px; }
.content h2 {
  font-size: 1.25rem; font-weight: 700;
  margin-top: 40px; margin-bottom: 14px;
}
.content > p, .content article p { color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.content a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(157,157,247,.35); transition: border-color .2s; }
.content a:hover { border-color: var(--accent); }
.back {
  display: inline-flex; align-items: center;
  margin-top: 48px; color: var(--text-3); text-decoration: none;
  font-size: .92rem; transition: color .2s;
}
.back:hover { color: var(--accent); border-bottom: none; }

/* --- Responsive --- */
@media (max-width: 920px) {
  .nav-menu { display: none; }
  .hero { flex-direction: column; text-align: center; gap: 50px; padding-top: 120px; min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .method-card { flex-direction: column; text-align: center; gap: 44px; padding: 40px 28px; }
  .method-lead { margin-left: auto; margin-right: auto; }
  .specs { grid-template-columns: 1fr; text-align: left; max-width: 420px; margin: 0 auto; }
  .feature, .feature--reverse { flex-direction: column; text-align: center; gap: 44px; }
  .feature-text p { max-width: 100%; margin: 0 auto; }
  .features { gap: 90px; padding-top: 80px; }
  .why-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .phone-frame { width: 260px; height: 538px; }
  .method-phone .phone-frame,
  .feature-phone .phone-frame { width: 244px; height: 505px; }
  .cta-inner { padding: 50px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .store-button, .hero-actions .ghost-button { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .hero-badge .dot { animation: none; }
  .hero-phone .phone-frame { animation: none; }
  .ph-row::after { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ============================================================
   Learn / Article pages (/learn/)
   Periwinkle accent, Newsreader display headings.
   ============================================================ */
.article-main { position: relative; z-index: 2; }
.breadcrumb {
  max-width: 760px; margin: 0 auto; padding: 110px 24px 0;
  font-size: .85rem; color: var(--text-3);
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

.article { max-width: 760px; margin: 0 auto; padding: 28px 24px 40px; }
.article-head { margin-bottom: 40px; }
.article-head .eyebrow { margin-bottom: 16px; }
.article-head h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 18px;
}
.article-head .standfirst { font-size: 1.2rem; color: var(--text-2); line-height: 1.6; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; font-size: .85rem; color: var(--text-3); }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* prose */
.prose { font-size: 1.08rem; line-height: 1.75; color: var(--text-2); }
.prose > * + * { margin-top: 1.25em; }
.prose h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; letter-spacing: -0.02em;
  color: var(--text); margin-top: 2em; line-height: 1.2;
}
.prose h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-top: 1.6em; }
.prose p { color: var(--text-2); }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); transition: border-color .2s; }
.prose a:hover { border-color: var(--accent); }
.prose strong { color: var(--text); font-weight: 650; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: .5em; }
.prose li::marker { color: var(--accent); }
.prose blockquote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 22px;
  color: var(--text); font-size: 1.15rem; font-style: italic;
}
.prose code {
  background: rgba(255,255,255,.06); border: 1px solid var(--card-border);
  padding: 2px 7px; border-radius: 6px; font-size: .9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* key-takeaway callout (article context) */
.prose .callout {
  margin: 1.8em 0; padding: 22px 24px;
  border: 1px solid rgba(157,157,247,.28); border-radius: var(--radius);
  background: radial-gradient(120% 100% at 0% 0%, rgba(157,157,247,.1), transparent 60%), rgba(157,157,247,.04);
}
.callout-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 8px; }
.prose .callout p { margin: 0; color: var(--text); line-height: 1.65; }

/* numbered steps */
.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps > li { position: relative; padding-left: 52px; margin-top: 1.4em; }
.steps > li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
  color: #0B0B12; background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.steps > li strong { display: block; color: var(--text); margin-bottom: 2px; }

/* in-article app CTA card */
.app-cta {
  margin: 2.4em 0; padding: 30px;
  border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top right, rgba(157,157,247,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.app-cta img { width: 60px; height: 60px; border-radius: 14px; flex-shrink: 0; box-shadow: 0 0 30px var(--accent-glow); }
.app-cta-text { flex: 1; min-width: 220px; }
.app-cta-text h3 { font-family: 'Newsreader', Georgia, serif; font-size: 1.35rem; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 4px; color: var(--text); }
.app-cta-text p { margin: 0; font-size: .95rem; color: var(--text-3); line-height: 1.55; }
.app-cta .store-button { flex-shrink: 0; }

/* related articles */
.related { max-width: 760px; margin: 0 auto; padding: 30px 24px 100px; border-top: 1px solid var(--card-border); }
.related h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; color: var(--text); }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.related-card {
  display: block; padding: 20px; border: 1px solid var(--card-border);
  border-radius: var(--radius); text-decoration: none; background: var(--card);
  transition: border-color .25s, transform .25s var(--ease), background .25s;
}
.related-card:hover { border-color: rgba(157,157,247,.4); transform: translateY(-3px); background: rgba(255,255,255,.04); }
.related-card .rc-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.related-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--text); margin: 8px 0 0; line-height: 1.3; }

/* learn hub */
.hub { max-width: var(--maxw); margin: 0 auto; padding: 130px 24px 40px; text-align: center; }
.hub h1 { font-family: 'Newsreader', Georgia, serif; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 16px; }
.hub p.lead { font-size: 1.2rem; color: var(--text-2); max-width: 620px; margin: 0 auto; }
.hub-grid { max-width: var(--maxw); margin: 0 auto; padding: 30px 24px 90px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hub-card {
  display: flex; flex-direction: column; text-align: left;
  padding: 28px; border: 1px solid var(--card-border); border-radius: var(--radius);
  text-decoration: none; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
  transition: border-color .25s, transform .25s var(--ease);
}
.hub-card:hover { border-color: rgba(157,157,247,.4); transform: translateY(-4px); }
.hub-card .rc-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.hub-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 10px 0 8px; letter-spacing: -0.01em; line-height: 1.25; }
.hub-card p { font-size: .92rem; color: var(--text-3); line-height: 1.55; margin: 0; flex: 1; }
.hub-card .rc-go { margin-top: 16px; font-size: .9rem; font-weight: 600; color: var(--accent); }

@media (max-width: 760px) {
  .related-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .app-cta { flex-direction: column; align-items: flex-start; }
}
