/* Slap Card — marketing site. Brand tokens mirror design/design-tokens.json. */
:root {
  --teal: #0FB5AA; --teal-deep: #0D9488; --blue: #1E8FB0; --indigo: #4F46E5; --indigo-light: #6366F1;
  --green: #2F8F5B;
  --bg: #FBF7EF; --sand: #F3ECE0; --board: #ECE4D6;
  --surface: #FFFFFF; --border: #EEE5D7; --border-strong: #E2D8C8;
  --ink: #221820; --muted: #6B5E66; --faint: #9A8C94;
  --grad: linear-gradient(135deg, #0FB5AA 0%, #1E8FB0 50%, #4F46E5 100%);
  --radius: 16px; --shadow: 0 14px 36px rgba(34,24,32,0.14);
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,247,239,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand .card-word { color: var(--teal); }
.nav-links { display: flex; gap: 26px; align-items: center; font-weight: 600; font-size: 15px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 16px; padding: 14px 24px; border-radius: var(--radius); border: none; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(79,70,229,0.3); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(79,70,229,0.4); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-sm { padding: 10px 18px; font-size: 15px; }

/* Hero */
.hero { padding: 72px 0 48px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 56px; line-height: 1.02; font-weight: 700; margin: 18px 0 0; }
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-size: 20px; color: var(--muted); margin: 20px 0 0; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.badges { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.badge { font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.badge--free { background: rgba(47,143,91,0.12); color: var(--green); border-color: rgba(47,143,91,0.3); }
.hero-phone { display: flex; justify-content: center; }
.phone { width: 280px; border-radius: 42px; background: #221820; padding: 10px; box-shadow: 0 30px 70px rgba(34,24,32,0.3); }
.phone img { width: 100%; border-radius: 33px; display: block; }

/* Sections */
.section { padding: 64px 0; }
.section--sand { background: var(--board); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head h2 { font-size: 38px; font-weight: 700; margin: 12px 0 0; }
.section-head p { font-size: 18px; color: var(--muted); margin: 14px 0 0; }

/* Refugee cards */
.refugees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.refugee { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.refugee .neg { font-family: 'Space Grotesk'; font-size: 30px; font-weight: 700; color: #F43F5E; }
.refugee h3 { font-size: 19px; margin: 6px 0 8px; }
.refugee p { font-size: 15px; color: var(--muted); margin: 0; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.feature .ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.feature h3 { font-size: 18px; margin: 0 0 6px; }
.feature p { font-size: 15px; color: var(--muted); margin: 0; }

/* Split showcase */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse > .split-media { order: -1; }
.split-media { display: flex; justify-content: center; }
.split-media .phone { width: 250px; }
.split-copy h2 { font-size: 32px; font-weight: 700; margin: 12px 0 14px; }
.split-copy p { font-size: 17px; color: var(--muted); }
.split-copy ul { padding: 0; list-style: none; margin: 18px 0 0; }
.split-copy li { padding: 8px 0 8px 30px; position: relative; font-weight: 500; }
.split-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* Pricing */
.price-card { max-width: 460px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: 24px; padding: 40px; text-align: center; position: relative; overflow: hidden; }
.price-card .glow { position: absolute; inset: 0; background: var(--grad); opacity: 0.16; }
.price-card > * { position: relative; }
.price-card .price { font-family: 'Space Grotesk'; font-size: 62px; font-weight: 700; margin: 8px 0 2px; }
.price-card .once { color: #B6A8BE; font-weight: 600; }
.price-feats { text-align: left; margin: 26px 0; padding: 0; list-style: none; }
.price-feats li { padding: 9px 0 9px 28px; position: relative; color: #F4ECF5; font-weight: 500; }
.price-feats li::before { content: "✓"; position: absolute; left: 0; color: #2EE6A0; font-weight: 800; }
.price-free-note { background: rgba(47,143,91,0.18); border: 1px solid rgba(47,143,91,0.4); border-radius: 12px; padding: 12px 16px; color: #6FE0A6; font-weight: 700; font-size: 14px; margin-bottom: 24px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; margin-bottom: 12px; }
.faq summary { font-weight: 700; font-size: 17px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--teal); }
.faq p { color: var(--muted); margin: 12px 0 0; font-size: 16px; }

/* CTA band */
.cta-band { background: var(--grad); color: #fff; border-radius: 28px; padding: 56px; text-align: center; }
.cta-band h2 { font-size: 38px; margin: 0 0 14px; }
.cta-band p { font-size: 19px; opacity: 0.92; margin: 0 0 28px; }
.cta-band .btn-ghost { background: #fff; color: var(--blue); border: none; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--muted); font-size: 15px; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }
.foot-links { display: flex; gap: 20px; }

@media (max-width: 880px) {
  .hero .wrap, .split, .refugees, .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .split.reverse > .split-media { order: 0; }
  .nav-links { display: none; }
  .cta-band { padding: 40px 24px; }
  .section-head h2 { font-size: 30px; }
}
