/* =============================================================================
   FOPS Landing Page — styles.css
   Merge: design tokens + layout + components
   Animações controladas por GSAP (scripts.js)
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@600&display=swap');

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --brand-50:  #FFF1EA;
  --brand-100: #FFDDCB;
  --brand-300: #FF9A6C;
  --brand-500: #FF5A1F;
  --brand-700: #C93E0D;

  --ink-900: #0E0E10;
  --ink-800: #1C1C22;
  --ink-700: #2E2E38;
  --ink-600: #4A4A55;
  --ink-500: #6B6B78;
  --ink-400: #9A9AA6;
  --ink-300: #C7C7CF;
  --ink-200: #E5E2DC;
  --ink-100: #F1EEE8;

  --paper:      #FDF9F4;
  --paper-sunk: #F6F1E9;
  --surface:    #FFFFFF;

  --trust-500: #1E3AFF;
  --trust-700: #0E22B8;
  --ok-50:  #E3F5EC;
  --ok-500: #128C5A;
  --ok-700: #0B6A42;
  --warn-50:  #FFF4D9;
  --warn-500: #E8A317;
  --bad-500:  #E23C3C;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-text:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --r-1: 8px;
  --r-2: 12px;
  --r-3: 16px;
  --r-4: 24px;
  --pill: 999px;

  --shadow-1: 0 1px 3px rgba(14,14,16,.08), 0 1px 2px rgba(14,14,16,.04);
  --shadow-2: 0 4px 16px rgba(14,14,16,.10), 0 2px 6px rgba(14,14,16,.06);
  --shadow-3: 0 8px 32px rgba(14,14,16,.14), 0 4px 10px rgba(14,14,16,.08);
  --nudge:         0 3px 0 var(--ink-900);
  --nudge-press:   0 1px 0 var(--ink-900);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --d-micro: 0.12s;
  --d-press: 0.18s;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  font-family: var(--font-text);
  color: var(--ink-700);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
button { font-family: var(--font-text); cursor: pointer; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

section { position: relative; }

/* ── GSAP reveal — sem opacity:0 no CSS.
   GSAP seta o estado inicial via gsap.set() antes de animar.
   Isso garante que o conteúdo seja sempre visível se o JS falhar. ── */

/* ── Audience show/hide ─────────────────────────────────────────────── */
body[data-audience="cliente"]      [data-aud="profissional"] { display: none !important; }
body[data-audience="profissional"] [data-aud="cliente"]      { display: none !important; }

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,249,244,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-press) var(--ease), background var(--d-press) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--ink-200); }
.nav-inner {
  display: flex; align-items: center; gap: 16px; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--ink-900); letter-spacing: -0.03em;
}
.nav-logo img { width: 28px; height: 28px; }
.nav-links { display: none; gap: 28px; margin-left: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink-700);
  transition: color var(--d-micro);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-spacer { flex: 1; }
.nav-cta { display: none; }

/* Toggle — sliding pill */
.nav-toggle {
  display: inline-flex; background: var(--ink-100);
  border-radius: var(--pill); padding: 4px;
  position: relative;
}
.nav-toggle::before {
  content: '';
  position: absolute; top: 4px; bottom: 4px;
  border-radius: var(--pill); background: var(--ink-900);
  box-shadow: var(--shadow-1); pointer-events: none; z-index: 0;
  transition: left .28s cubic-bezier(.34,1.4,.64,1), right .28s cubic-bezier(.34,1.4,.64,1);
}
body[data-audience="cliente"]      .nav-toggle::before { left: 4px; right: 50%; }
body[data-audience="profissional"] .nav-toggle::before { left: 50%; right: 4px; }
.nav-toggle button {
  /* flex:1 garante largura igual entre "Cliente" e "Profissional"
     — necessário para o pill ::before aterrissar exatamente em 50% */
  flex: 1;
  background: transparent; border: 0;
  padding: 8px 16px; border-radius: var(--pill);
  font-weight: 600; font-size: 13px; color: var(--ink-500);
  white-space: nowrap; position: relative; z-index: 1;
  transition: color .22s ease; text-align: center;
}
.nav-toggle button.active { color: white; }

/* Nav CTA button */
.fops-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; border-radius: var(--r-2); font-weight: 700; cursor: pointer;
  transition: transform var(--d-press) var(--ease), box-shadow var(--d-press) var(--ease);
}
.fops-btn--primary {
  background: var(--brand-500); color: white;
  box-shadow: 0 3px 0 var(--brand-700);
}
.fops-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 4px 0 var(--brand-700); }
.fops-btn--primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--brand-700); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { padding: 120px 0 80px; overflow: hidden; }
@media (min-width: 1000px) { .hero { padding: 140px 0 100px; } }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px;
  background: var(--surface); border: 1px solid var(--ink-200);
  border-radius: var(--pill);
  font-size: 12px; font-weight: 600; color: var(--ink-700); margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 18px; height: 18px; border-radius: var(--pill); background: var(--ok-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-eyebrow .dot::before {
  content: '';
  width: 6px; height: 6px; background: white; border-radius: var(--pill);
  box-shadow: 0 0 0 4px rgba(18,140,90,.3);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(18,140,90,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(18,140,90,.0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  line-height: .98; letter-spacing: -.035em; font-weight: 700;
  margin: 0; color: var(--ink-900);
}
.hero h1 .accent { color: var(--brand-500); }
.hero h1 .underline-mark { display: inline-block; position: relative; }
.hero h1 .underline-mark::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 6px; background: var(--brand-500); border-radius: var(--pill);
  transform: scaleX(0); transform-origin: left;
  animation: drawUnderline 1s var(--ease) .8s forwards;
}
@keyframes drawUnderline { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--ink-600);
  margin-top: 20px; max-width: 520px;
}
@media (min-width: 1000px) { .hero-sub { font-size: 20px; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px 12px 18px; background: var(--ink-900); color: white;
  border-radius: var(--r-3); box-shadow: var(--nudge);
  transition: transform var(--d-press) var(--ease), box-shadow var(--d-press) var(--ease);
}
.store-btn:hover  { transform: translateY(-1px); box-shadow: 0 5px 0 var(--ink-900); }
.store-btn:active { transform: translateY(2px);  box-shadow: var(--nudge-press); }
.store-btn .label-small {
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase; opacity: .7; line-height: 1;
}
.store-btn .label-big {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; letter-spacing: -.01em; line-height: 1.1; margin-top: 2px;
}

.hero-meta {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; font-size: 13px; color: var(--ink-500);
}
.hero-meta .stars { display: inline-flex; gap: 2px; color: var(--warn-500); }

.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center; min-height: 540px;
}
.phone {
  width: 320px; height: 640px; background: var(--ink-900);
  border-radius: 48px; padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(14,14,16,.3),
              0 12px 24px -10px rgba(255,90,31,.15);
  position: relative; z-index: 2; transform: rotate(-3deg);
}
.phone-screen {
  background: var(--paper); border-radius: 36px;
  height: 100%; overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px; background: var(--ink-900);
  border-radius: 0 0 18px 18px; z-index: 5;
}
@media (max-width: 999px) {
  .hero-visual { min-height: 520px; }
  .phone { width: 280px; height: 560px; transform: rotate(-2deg); }
}

.float-card {
  position: absolute; background: var(--surface);
  border: 1px solid var(--ink-200); border-radius: var(--r-3);
  padding: 14px 16px; box-shadow: var(--shadow-2); z-index: 3;
}
.float-card-1 {
  top: 6%; right: 0; display: flex; align-items: center; gap: 10px;
  width: 220px; animation: floatA 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 12%; left: -8%;
  width: 200px; animation: floatB 5s ease-in-out infinite;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.spark-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M22 6 L14 22 L20 22 L18 34 L26 18 L20 18 Z' fill='%230E0E10' fill-opacity='0.04'/></svg>");
  background-size: 80px 80px; pointer-events: none;
}

/* ── Stats strip ────────────────────────────────────────────────── */
.stats {
  background: var(--ink-900); color: white; padding: 56px 0; overflow: hidden; position: relative;
}
.stats::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,90,31,.18), transparent 60%);
  top: -50%; right: -10%; pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; position: relative; z-index: 2;
}
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1; color: white;
}
.stat-num .accent { color: var(--brand-500); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 500; }

/* ── How it works ────────────────────────────────────────────────── */
.how { padding: 100px 0; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-700); margin-bottom: 16px; display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1.05;
  letter-spacing: -.03em; font-weight: 700; color: var(--ink-900);
  margin: 0; max-width: 720px;
}
.section-sub {
  font-size: 18px; color: var(--ink-600); margin-top: 16px; max-width: 600px; line-height: 1.6;
}
.steps {
  margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3,1fr); gap: 32px; } }
.step {
  background: var(--surface); border: 1px solid var(--ink-200);
  border-radius: var(--r-4); padding: 32px; position: relative; overflow: hidden;
  transition: transform var(--d-press) var(--ease), box-shadow var(--d-press) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.step-num {
  font-family: var(--font-display); font-size: 80px; font-weight: 700; line-height: 1;
  color: var(--brand-500); letter-spacing: -.05em;
  position: absolute; top: 20px; right: 24px; opacity: .15;
}
.step-icon {
  width: 56px; height: 56px; border-radius: var(--r-2);
  background: var(--brand-50); color: var(--brand-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -.02em; color: var(--ink-900); margin: 0 0 8px;
}
.step p { font-size: 15px; color: var(--ink-600); line-height: 1.6; margin: 0; }

/* ── Mockups ─────────────────────────────────────────────────────── */
.mockups {
  padding: 100px 0; background: var(--ink-900); color: white; overflow: hidden;
}
.mockups .section-eyebrow { color: var(--brand-300); }
.mockups .section-title   { color: white; }
.mockups .section-sub     { color: rgba(255,255,255,.7); }
.mockups-track {
  display: flex; gap: 32px; margin-top: 64px; padding: 20px 0 60px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.mockups-track::-webkit-scrollbar { display: none; }
.mockup-card { flex: 0 0 300px; scroll-snap-align: center; display: flex; flex-direction: column; gap: 16px; }
.mockup-phone {
  width: 300px; height: 600px; background: var(--ink-700);
  border-radius: 44px; padding: 12px;
  box-shadow: 0 20px 50px -20px rgba(255,90,31,.4), 0 10px 30px -10px rgba(0,0,0,.5);
  transition: transform var(--d-press) var(--ease);
}
.mockup-card:hover .mockup-phone { transform: translateY(-8px) rotate(-1deg); }
.mockup-phone-screen {
  background: var(--paper); border-radius: 32px; height: 100%; overflow: hidden; position: relative;
}
.mockup-label { display: flex; align-items: center; gap: 10px; }
.mockup-label .num {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--brand-500); width: 28px; height: 28px; border-radius: var(--pill);
  background: rgba(255,90,31,.15); display: inline-flex; align-items: center; justify-content: center;
}
.mockup-label .name {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: -.02em; color: white;
}
.mockup-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; max-width: 280px; }

/* ── Categories ──────────────────────────────────────────────────── */
.cats { padding: 100px 0; }
.cats-grid {
  margin-top: 64px; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
@media (min-width: 700px) { .cats-grid { grid-template-columns: repeat(4,1fr); } }
.cat-card {
  background: var(--surface); border: 1px solid var(--ink-200);
  border-radius: var(--r-3); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all var(--d-press) var(--ease); cursor: pointer;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: transparent; }
.cat-icon {
  width: 44px; height: 44px; border-radius: var(--r-2);
  display: flex; align-items: center; justify-content: center; color: white;
}
.cat-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink-900); }
.cat-count { font-size: 12px; color: var(--ink-500); }

/* ── Trust ───────────────────────────────────────────────────────── */
.trust { padding: 100px 0; background: var(--paper-sunk); }
.trust-card {
  background: var(--ink-900); color: white; border-radius: var(--r-4);
  padding: 56px 40px; position: relative; overflow: hidden;
}
.trust-card::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,255,.25), transparent 60%);
  right: -10%; top: -30%; pointer-events: none;
}
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 2;
}
@media (min-width: 900px) { .trust-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; } .trust-card { padding: 80px 64px; } }
.trust-card .section-eyebrow { color: var(--trust-500); }
.trust-card h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05; letter-spacing: -.025em; font-weight: 700; color: white; margin: 0;
}
.trust-card > p,
.trust-card .trust-left > p {
  color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.6; margin-top: 16px;
}
.trust-features { display: flex; flex-direction: column; gap: 16px; }
.trust-feat {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-3);
}
.feat-icon {
  width: 44px; height: 44px; border-radius: var(--r-2);
  background: var(--trust-500); color: white;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon.brand { background: var(--brand-500); }
.feat-icon.ok    { background: var(--ok-500); }
.trust-feat h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: -.01em; color: white; margin: 0;
}
.trust-feat p { font-size: 14px; color: rgba(255,255,255,.6); margin: 4px 0 0; line-height: 1.5; }

/* ── Pro section ─────────────────────────────────────────────────── */
.pro {
  padding: 100px 0; background: var(--brand-500); color: white; position: relative; overflow: hidden;
}
.pro::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M22 6 L14 22 L20 22 L18 34 L26 18 L20 18 Z' fill='%23ffffff' fill-opacity='0.05'/></svg>");
  background-size: 80px 80px; pointer-events: none;
}
.pro-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 2;
}
@media (min-width: 900px) { .pro-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.pro .section-eyebrow {
  color: var(--ink-900); background: rgba(255,255,255,.9); padding: 4px 10px; border-radius: var(--pill);
}
.pro h2 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02; letter-spacing: -.03em; font-weight: 700; color: var(--ink-900); margin: 16px 0 0;
}
.pro-sub { color: rgba(14,14,16,.75); font-size: 18px; margin-top: 20px; line-height: 1.55; max-width: 500px; }
.pro-perks { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pro-perks li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--ink-900); }
.pro-perks li .check {
  width: 28px; height: 28px; border-radius: var(--pill); background: var(--ink-900);
  color: var(--brand-500); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pro-cta {
  margin-top: 36px; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; background: var(--ink-900); color: white; border-radius: var(--r-3);
  font-weight: 700; font-size: 15px; border: 0;
  box-shadow: 0 3px 0 rgba(255,255,255,.5);
  transition: transform var(--d-press) var(--ease), box-shadow var(--d-press) var(--ease);
}
.pro-cta:hover  { transform: translateY(-1px); }
.pro-cta:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(255,255,255,.5); }
.pro-card-stack { position: relative; height: 480px; }
.pcs-card {
  position: absolute; background: white; border-radius: var(--r-4);
  padding: 24px; box-shadow: var(--shadow-3);
  font-family: var(--font-text); color: var(--ink-900);
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-grid {
  margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.faq-item {
  background: var(--surface); border: 1px solid var(--ink-200);
  border-radius: var(--r-3); overflow: hidden;
  transition: border-color var(--d-press) var(--ease);
}
.faq-item.open { border-color: var(--ink-900); }
.faq-q {
  width: 100%; background: transparent; border: 0; text-align: left;
  padding: 22px 24px; font-size: 17px; font-weight: 600; color: var(--ink-900);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .icon {
  width: 32px; height: 32px; border-radius: var(--pill); background: var(--ink-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--d-press) var(--ease), background var(--d-press) var(--ease);
}
.faq-item.open .faq-q .icon { background: var(--brand-500); color: white; transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-600); font-size: 15px; line-height: 1.6; }

/* ── Final CTA ───────────────────────────────────────────────────── */
.final-cta {
  padding: 100px 0; background: var(--ink-900); color: white;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,31,.25), transparent 60%);
  bottom: -60%; left: 50%; transform: translateX(-50%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px);
  line-height: 1; letter-spacing: -.035em; font-weight: 700; color: white; margin: 0;
}
.final-cta h2 .accent { color: var(--brand-500); }
.final-cta p { color: rgba(255,255,255,.7); font-size: 18px; margin: 24px auto 0; max-width: 520px; }
.final-cta .hero-ctas { justify-content: center; margin-top: 40px; }
.final-cta .store-btn { background: white; color: var(--ink-900); box-shadow: 0 3px 0 var(--brand-500); }
.final-cta .store-btn:hover { box-shadow: 0 5px 0 var(--brand-500); }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  background: var(--ink-900); color: rgba(255,255,255,.6);
  padding: 64px 0 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; margin-bottom: 48px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: white; letter-spacing: -.03em; display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.footer-brand img { width: 36px; height: 36px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,.6); max-width: 320px; line-height: 1.55; }
.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: white; margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: 14px; transition: color var(--d-micro); }
.footer-col ul a:hover { color: var(--brand-500); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: var(--pill);
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--d-micro);
}
.footer-socials a:hover { background: var(--brand-500); color: white; }

/* ── Phone screen internals (mini app mockup) ───────────────────── */
.ms-wrap { height: 100%; background: var(--paper); position: relative; overflow: hidden; font-family: var(--font-text); }
.ms-status {
  height: 44px; padding: 0 20px; display: flex;
  justify-content: space-between; align-items: flex-end; padding-bottom: 6px;
  color: var(--ink-900); font-size: 13px; font-weight: 700;
}
.ms-status.dark { color: white; }
.ms-status-icons { display: flex; gap: 5px; align-items: center; }
.ms-tabbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--paper); border-top: 1px solid var(--ink-200);
  padding: 8px 18px 18px; display: flex; justify-content: space-around; z-index: 10;
}
.ms-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--ink-400); }
.ms-tab.active { color: var(--ink-900); }
.ms-tab span { font-size: 9.5px; font-weight: 600; }
.ms-tab.active span { font-weight: 700; }
.ms-content { padding: 0 18px 70px; }
.ms-avatar {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: white; letter-spacing: -.02em;
}
.ms-card { background: var(--surface); border-radius: 14px; border: 1px solid var(--ink-200); }
.ms-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: var(--pill);
  font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.ms-verify-banner {
  background: var(--ink-900); color: white; border-radius: 22px;
  padding: 18px; margin-top: 16px; position: relative; overflow: hidden;
}
.ms-verify-banner::before {
  content: ''; position: absolute; right: -30px; top: -30px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,31,.33), transparent 70%);
}
