/* ==========================================================================
   FACE IT — Landing Page Styles
   Brand: warm cream + bold black, tough-love minimalism
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  /* Surfaces */
  --bg:           #F2EEE5;   /* warm cream */
  --bg-soft:      #EDE8DC;   /* slightly deeper cream */
  --bg-card:      #FAF7F0;   /* lifted card */
  --bg-dark:      #0D0C0B;   /* near-black */
  --bg-dark-2:    #1A1817;

  /* Ink */
  --ink:          #0A0A0A;
  --ink-2:        #2A2826;
  --ink-muted:    #5A5754;
  --ink-faint:    #8A857F;
  --line:         #D9D2C2;
  --line-soft:    #E5DFD0;

  /* On dark */
  --light:        #FAF7F0;
  --light-muted:  #B5AFA4;
  --line-dark:    #2C2A28;

  /* Accents */
  --gold:         #C9A961;
  --warn:         #D45A2A;

  /* Type scale (mobile-first) */
  --fs-display-1: clamp(2.5rem, 9vw, 5.25rem);
  --fs-display-2: clamp(2rem, 6.5vw, 3.75rem);
  --fs-display-3: clamp(1.5rem, 4.5vw, 2.5rem);
  --fs-h3:        clamp(1.35rem, 3vw, 1.75rem);
  --fs-lead:      clamp(1.1rem, 2.2vw, 1.375rem);
  --fs-body:      1.0625rem;
  --fs-small:     0.9375rem;
  --fs-micro:     0.8125rem;

  /* Layout */
  --container:    1200px;
  --container-narrow: 760px;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;

  /* Motion */
  --ease:         cubic-bezier(.2,.8,.2,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* ----- Layout primitives ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container.narrow { max-width: var(--container-narrow); }
.center { text-align: center; }

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative;
}
.section-soft   { background: var(--bg-soft); }
.section-dark   { background: var(--bg-dark); color: var(--light); }
.section-dark a { color: var(--light); }
.section-transition {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  text-align: center;
}

/* ----- Typography ----- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.eyebrow-light { color: var(--light-muted); border-color: var(--line-dark); }

.display-1 {
  font-size: var(--fs-display-1);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem;
}
.display-2 {
  font-size: var(--fs-display-2);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}
.display-3 {
  font-size: var(--fs-display-3);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--ink-2);
}
.section-dark .lead { color: var(--light); }
.lead-strong { font-weight: 700; color: var(--ink); }
.section-dark .lead-strong { color: var(--light); }

.kicker {
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.75rem;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 1.25rem; }

.section-outro {
  margin-top: 3rem;
  text-align: center;
  font-size: var(--fs-lead);
  color: var(--ink-2);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--light);
  border-color: var(--ink);
}
.btn-primary:hover { background: #1a1816; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.section-dark .btn-primary {
  background: var(--light);
  color: var(--ink);
  border-color: var(--light);
}
.section-dark .btn-primary:hover { background: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--light); }

.btn-sm  { padding: 0.625rem 1.1rem; font-size: 0.875rem; }
.btn-lg  { padding: 1.15rem 2rem; font-size: 1.0625rem; }
.btn-xl  { padding: 1.35rem 2.5rem; font-size: 1.125rem; }
.btn-block { width: 100%; }

/* Apple icon inside buttons */
.btn-apple {
  width: 13px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 0.05rem;
}
.btn-sm .btn-apple { width: 12px; height: 14px; }
.btn-lg .btn-apple { width: 15px; height: 18px; }
.btn-xl .btn-apple { width: 17px; height: 21px; }

.cta-block {
  margin: 2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.cta-block .micro { margin: 0; }
.center .cta-block { align-items: center; }

.micro {
  font-size: var(--fs-micro);
  color: var(--ink-muted);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}
.micro-light { color: var(--light-muted); }

.trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
}
.trust-center { display: flex; justify-content: center; }
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1rem; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 238, 229, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  transform: translateZ(0);
}
.site-header.is-scrolled {
  background: rgba(242, 238, 229, 0.97);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 20px -12px rgba(10, 8, 5, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}
.logo img {
  height: 22px;
  width: auto;
}
@media (min-width: 768px) { .logo img { height: 26px; } }

/* Hide header CTA on very small screens — sticky bottom CTA covers it */
.header-cta { display: none; }
@media (min-width: 480px) { .header-cta { display: inline-flex; } }

/* ============ HERO ============ */
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 7vw, 5.5rem);
}
.hero-inner {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hero-copy { max-width: 640px; }
.hero-sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 0;
  max-width: 36ch;
}
.hero-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.25);
}
@media (min-width: 960px) {
  .hero-image { aspect-ratio: 4/5; max-height: 720px; }
}

/* ============ iPHONE MOCKUP ============ */
.phone-mock {
  --py: 0px;
  --pr: -8deg;
  width: 100%;
  max-width: 290px;
  margin-inline: auto;
  perspective: 1400px;
  transform: translate3d(0, var(--py), 0);
  will-change: transform;
}
@media (min-width: 960px) {
  .phone-mock { max-width: 330px; margin-left: auto; margin-right: 0; }
}

.phone-tilt {
  transform-style: preserve-3d;
  transform: rotateY(var(--pr)) rotateX(2deg);
  transition: transform 0.5s var(--ease);
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 17.5;
  background: #0A0A0A;
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 40px 90px -30px rgba(10, 8, 5, 0.55),
    0 12px 36px -12px rgba(10, 8, 5, 0.25),
    inset 0 0 0 1.5px #1f1c19,
    inset 0 0 0 3px #0a0a0a;
  animation: phone-float 7s ease-in-out infinite;
}

/* Video variant — matches native iPhone screen ratio so nothing is cropped */
.phone-frame-video {
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
}
.phone-video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
  background: #F2EEE5;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #F2EEE5;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

/* Status bar */
.phone-statusbar {
  height: 44px;
  padding: 0 22px 0 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.sb-time { font-variant-numeric: tabular-nums; }
.sb-icons { display: inline-flex; gap: 5px; align-items: center; }
.sb-icons svg { display: block; }

/* App bar */
.phone-appbar {
  height: 44px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  padding: 0 14px;
  flex-shrink: 0;
}
.appbar-back, .appbar-warn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.appbar-warn {
  background: #E89B3A;
  color: #fff;
  font-weight: 800;
}
.appbar-title {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* Chat */
.phone-chat {
  flex: 1;
  padding: 10px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.chat-bubble {
  max-width: 86%;
  padding: 9px 12px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.chat-user {
  align-self: flex-end;
  background: #0A0A0A;
  color: #FAF7F0;
  border-bottom-right-radius: 5px;
}
.chat-ai {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 5px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.chat-typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 16px 16px 16px 5px;
  padding: 10px 12px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.chat-typing span {
  width: 5px;
  height: 5px;
  background: #8A857F;
  border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* Input bar */
.phone-input {
  margin: 0 12px 14px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-faint);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.input-send {
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

/* Reduced-motion users get a static, untilted phone */
@media (prefers-reduced-motion: reduce) {
  .phone-tilt { transform: none !important; }
  .phone-frame { animation: none; }
  .chat-typing span { animation: none; }
}

/* ============ PAIN AGITATION ============ */
.pain-stack {
  display: grid;
  gap: 1.25rem;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.card-num {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}
.card-title {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.pain-card p { margin: 0 0 1rem; color: var(--ink-2); }
.pain-card p:last-child { margin-bottom: 0; }
.pull {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--ink);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink);
  background: rgba(0,0,0,0.025);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============ COST OF AVOIDANCE ============ */
.cost-intro {
  text-align: left;
  max-width: 60ch;
  margin: 0 auto;
}
.cost-intro .lead { margin-bottom: 1.1rem; }
.cost-intro .lead:last-child { margin-bottom: 0; }
.cost-intro em {
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
}

.cost-stack {
  display: grid;
  gap: 1rem;
  margin: 3rem 0 0;
}
@media (min-width: 720px) {
  .cost-stack { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
.cost-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2rem);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cost-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.cost-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin: 0 0 0.85rem;
  display: inline-block;
  padding: 0.3rem 0.55rem;
  background: var(--bg-soft);
  border-radius: 999px;
}
.cost-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.cost-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 1rem;
}

.cost-punch {
  margin: 3.5rem auto 0;
  text-align: center;
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink-2);
  max-width: 38ch;
}
.cost-punch strong { color: var(--ink); font-weight: 800; }

/* ============ BIG IDEA (DARK) ============ */
.big-idea {
  margin-top: 2.5rem;
}
.big-idea p { font-size: var(--fs-lead); margin: 0 0 1.25rem; line-height: 1.5; color: var(--light-muted); }
.big-idea p strong { color: var(--light); }
.rule-light {
  border: 0;
  height: 1px;
  background: var(--line-dark);
  margin: 2rem 0;
}

/* ============ FAIL CARDS ============ */
.fail-stack {
  display: grid;
  gap: 1.25rem;
}
.fail-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
}
.fail-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--light);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.fail-card p { margin: 0 0 1rem; color: var(--ink-2); }
.fail-card p:last-child { margin-bottom: 0; }

/* ============ SECTION 5 — TRANSITION ============ */
.section-transition .display-3 { max-width: 22ch; margin-inline: auto; }
.hero-quote {
  font-size: clamp(1.5rem, 4.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-style: normal;
  quotes: none;
}

/* ============ COMPARE — SOFT vs HARD ============ */
.user-prompt {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem 0 0;
  font-size: var(--fs-lead);
  color: var(--ink-2);
  font-style: italic;
  max-width: 560px;
}
.compare-grid {
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0 2rem;
}
@media (min-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compare-card.compare-hard {
  background: var(--ink);
  color: var(--light);
  border-color: var(--ink);
}
.compare-label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.compare-hard .compare-label { color: var(--light-muted); }
.bubble {
  font-size: 1.0625rem;
  line-height: 1.5;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
}
.bubble-soft { background: var(--bg-soft); color: var(--ink-2); }
.bubble-hard { background: rgba(255,255,255,0.06); color: var(--light); border: 1px solid rgba(255,255,255,0.12); }
.card-meta {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin: 0;
}
.compare-hard .card-meta { color: var(--light-muted); }

/* ============ THREE COL FEATURES ============ */
.three-col {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .three-col { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
}
.feature-num {
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0.15;
}
.feature-card p { color: var(--ink-2); margin: 0 0 1rem; }
.feature-card p:last-child { margin-bottom: 0; }

/* ============ TOOLS / VIDEO / GALLERY ============ */
.video-frame {
  margin: 0 auto 3rem;
  max-width: 880px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.35);
}
.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.tools-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tools-grid { grid-template-columns: repeat(4, 1fr); } }
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.tool-icon { font-size: 2rem; line-height: 1; margin-bottom: 1rem; }
.tool-card .card-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.tool-card p { font-size: var(--fs-small); color: var(--ink-2); margin: 0 0 0.75rem; }
.tool-card p:last-child { margin-bottom: 0; }
.pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: var(--ink);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: 2px;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 9/19.5;
  box-shadow: 0 20px 50px -30px rgba(0,0,0,0.25);
}

/* Real app screenshot showcase */
.screen-showcase {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media (min-width: 768px) {
  .screen-showcase { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
}
.screen-card {
  margin: 0;
  text-align: center;
  max-width: 280px;
  width: 100%;
}
.screen-card img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.35),
    0 8px 20px -8px rgba(0,0,0,0.15);
  margin: 0 auto 1.25rem;
  display: block;
  background: var(--bg-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.screen-card:hover img {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.4),
    0 10px 24px -8px rgba(0,0,0,0.2);
}
.screen-card figcaption {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  line-height: 1.5;
}
.screen-card figcaption strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

/* ============ FOUNDER ============ */
.founder-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .founder-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
}
.founder-photo {
  margin: 0;
  position: sticky;
  top: 6rem;
}
@media (max-width: 959px) { .founder-photo { position: static; } }
.founder-photo img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.founder-photo figcaption {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-muted);
  text-align: center;
}
.founder-letter p { margin: 0 0 1.15rem; color: var(--ink-2); font-size: 1.0625rem; line-height: 1.7; }
.founder-letter .lead-strong { color: var(--ink); margin-top: 1.5rem; }
.founder-letter .lead-strong:first-child { margin-top: 0; }
.founder-letter .pull { font-size: 1.0625rem; }
.signature {
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 2rem !important;
}
.founder-letter .btn { margin-top: 1rem; }

/* ============ REVIEWS ============ */
.reviews {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card p {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.review-card footer {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  font-weight: 600;
}
.appstore-badge {
  display: inline-block;
  margin: 3rem auto 0;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  border-radius: 10px;
  transition: transform 0.2s var(--ease);
}
.container.narrow .appstore-badge { display: block; }
.appstore-badge:hover { transform: translateY(-2px); }

/* ============ COMPARE TABLE ============ */
.compare-table-wrap {
  display: none;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
}
@media (min-width: 768px) { .compare-table-wrap { display: block; } }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.compare-table th, .compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.compare-table thead th {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg-soft);
  border-bottom: 1.5px solid var(--ink);
}
.compare-table th[scope="row"] {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-soft);
  border-right: 1px solid var(--line-soft);
  width: 22%;
}
.compare-table .th-highlight,
.compare-table .td-highlight {
  background: var(--ink);
  color: var(--light);
  border-color: var(--ink);
}
.compare-table .td-highlight strong { color: var(--light); }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }

/* Mobile compare cards */
.compare-mobile { display: grid; gap: 1rem; margin: 2rem 0; }
@media (min-width: 768px) { .compare-mobile { display: none; } }
.compare-row {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 0.4rem;
}
.compare-key {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}
.compare-faceit {
  font-size: 1rem;
  color: var(--ink);
  background: var(--ink);
  color: var(--light);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
}
.compare-faceit strong { color: var(--light); }
.compare-rest {
  font-size: var(--fs-small);
  color: var(--ink-muted);
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  margin: 3rem 0;
}
@media (min-width: 880px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.price-card-featured {
  background: var(--ink);
  color: var(--light);
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.3);
}
@media (max-width: 879px) { .price-card-featured { transform: none; } }

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.5rem;
}
.price-card-featured .plan-name { color: var(--light-muted); }

.plan-price { margin: 0; line-height: 1; }
.plan-price .amount {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price-card-featured .plan-price .amount { color: var(--light); }
.plan-price .period {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  font-weight: 500;
  margin-left: 0.4rem;
}
.price-card-featured .plan-price .period { color: var(--light-muted); }

.plan-equiv {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin: 0.5rem 0 0;
}
.price-card-featured .plan-equiv { color: var(--gold); font-weight: 600; }

.plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: var(--fs-small);
}
.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-2);
}
.price-card-featured .plan-features li { color: var(--light); }
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 800;
}
.price-card-featured .plan-features li::before { color: var(--gold); }

.plan-pitch {
  font-size: var(--fs-small);
  color: var(--light-muted);
  margin: 0;
  font-style: italic;
}
.price-card-featured .btn {
  background: var(--light);
  color: var(--ink);
  border-color: var(--light);
}

.risk-block {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-align: center;
}
.risk-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  text-align: left;
  max-width: 540px;
  margin-inline: auto;
}
.risk-list li {
  font-size: var(--fs-small);
  color: var(--ink-2);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.check {
  color: #2a8a4a;
  font-weight: 800;
  flex-shrink: 0;
}
.risk-line {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after  { width: 2px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-body p { margin: 0; }

/* ============ FINAL CTA ============ */
.section-final {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.final-options {
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0;
  text-align: left;
}
@media (min-width: 768px) { .final-options { grid-template-columns: 1fr 1fr; } }
.final-option {
  padding: 1.75rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}
.final-option p:last-child { margin-bottom: 0; }
.final-option p { color: var(--light-muted); margin: 0; line-height: 1.6; }
.option-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin: 0 0 1rem !important;
}
.final-option-highlight {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--gold);
}
.final-option-highlight .option-num { color: var(--gold); }
.final-option-highlight p { color: var(--light); }

.final-line {
  font-size: var(--fs-lead);
  font-weight: 600;
  color: var(--light);
  margin: 0 0 2.5rem;
}

/* ============ LEGAL PAGES (Impressum etc.) ============ */
.legal-page {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
}
.legal-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.legal-header .eyebrow { margin-bottom: 1rem; }
.legal-page h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
}
.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 2.5rem 0 0.9rem;
  color: var(--ink);
}
.legal-page section + section h2 { margin-top: 2.5rem; }
.legal-page p {
  margin: 0 0 0.95rem;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 1rem;
}
.legal-page p.muted {
  color: var(--ink-muted);
  font-size: var(--fs-small);
}
.legal-page a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.legal-page a:hover { text-decoration-thickness: 2px; }
.legal-back {
  margin-top: 3rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-weight: 600;
}
.legal-back a { text-decoration: none; }
.legal-back a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding-block: 3rem 2.5rem;
  font-size: var(--fs-small);
}
.footer-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}
.footer-logo { height: 18px; width: auto; margin-bottom: 0.6rem; }
.footer-brand p { margin: 0; color: var(--ink-muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-weight: 600;
}
.footer-links a { color: var(--ink); }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-meta {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.5rem;
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--fs-micro);
  line-height: 1.6;
}
.footer-meta a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(242, 238, 229, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}
.sticky-cta .btn { padding: 0.95rem 1.5rem; }

/* Add bottom padding on mobile so sticky CTA doesn't cover footer */
@media (max-width: 767px) {
  .site-footer { padding-bottom: 6.5rem; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ UTILITIES ============ */
@media (max-width: 480px) {
  .btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }
  .btn-xl { padding: 1.15rem 1.75rem; font-size: 1.0625rem; }
}
