:root {
  --red: #e0322c;
  --red-dark: #b3122c;
  --ink: #14151a;
  --muted: #5b6270;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --card: #ffffff;
  --border: #e6e8ec;
  --radius: 20px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--red-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700;
  color: var(--red); margin: 0 0 10px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 70% at 78% 8%, rgba(224,50,44,.55) 0%, rgba(224,50,44,0) 60%),
    linear-gradient(155deg, #2a0d12 0%, #17070b 45%, #100a12 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 20% 100%, rgba(255,140,60,.10) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 40px 22px 64px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 30px; }
.brand img { width: 40px; height: 40px; border-radius: 11px; box-shadow: 0 4px 14px rgba(224,50,44,.4); }
.brand span { font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem); line-height: 1.08; margin: 0 0 20px;
  letter-spacing: -0.03em; font-weight: 800;
}
.hero .lede {
  font-size: clamp(1.02rem, 2.3vw, 1.22rem); color: #d7cfd0; max-width: 46ch; margin: 0 0 24px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.chip {
  font-size: .82rem; font-weight: 600; color: #ffd9d5;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 6px 13px; border-radius: 999px;
}
.cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn.primary {
  background: var(--red); color: #fff;
  box-shadow: 0 10px 30px rgba(224,50,44,.45);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(224,50,44,.55); }
.btn.ghost {
  background: transparent; color: #efe6e6; border: 1px solid rgba(255,255,255,.24); cursor: default;
}

/* Phone mockup */
.hero-art { display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; max-width: 74vw;
  background: #0c0d11; padding: 10px; border-radius: 42px;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.07) inset,
    0 0 60px rgba(224,50,44,.22);
  transform: rotate(2.5deg);
}
.phone img { display: block; width: 100%; border-radius: 32px; }
.phone-island {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #0c0d11; border-radius: 999px; z-index: 2;
}
.phone.small { width: 250px; transform: rotate(-2.5deg); box-shadow: 0 34px 70px rgba(20,22,30,.28), 0 0 0 1px rgba(0,0,0,.05) inset; }

/* ---------- Features ---------- */
.features { padding: 84px 0; }
.features h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); margin: 0 0 42px; letter-spacing: -.02em; max-width: 22ch; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,22,30,.10); border-color: transparent; }
.tile {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.t-red    { background: rgba(224,50,44,.12); }
.t-blue   { background: rgba(30,136,229,.12); }
.t-teal   { background: rgba(0,172,193,.14); }
.t-orange { background: rgba(251,140,0,.14); }
.t-indigo { background: rgba(92,107,192,.14); }
.t-pink   { background: rgba(216,27,96,.12); }
.card h3 { margin: 0 0 7px; font-size: 1.14rem; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Showcase ---------- */
.showcase { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 84px 0; }
.showcase-inner { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.showcase .phone.small { justify-self: center; }
.showcase h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); margin: 0 0 22px; letter-spacing: -.02em; max-width: 18ch; }
.ticks { list-style: none; padding: 0; margin: 0 0 28px; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--muted); font-size: 1.02rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: #fff6ec; border: 1px solid #f4d9b4; color: #7a4b12;
  border-radius: var(--radius); padding: 20px 24px; font-size: .95rem;
  margin: 64px auto; max-width: 820px;
}
.disclaimer strong { color: #663c0c; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 44px 22px 52px; text-align: center; color: var(--muted); font-size: .9rem; }
.foot-brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.foot-brand img { width: 26px; height: 26px; border-radius: 7px; }
.foot-brand span { font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.foot-links { margin-bottom: 14px; }
.foot-links a { color: var(--muted); text-decoration: none; margin: 0 12px; font-weight: 600; }
.foot-links a:hover { color: var(--ink); }
.fnote { font-size: .82rem; max-width: 640px; margin: 0 auto; line-height: 1.5; }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 22px; }
.legal .back { display: inline-block; margin-bottom: 28px; text-decoration: none; font-weight: 600; }
.legal h1 { font-size: 2rem; margin: 0 0 4px; letter-spacing: -.02em; }
.legal .eff { color: var(--muted); margin: 0 0 32px; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 6px; }
.legal p, .legal li { color: #33373f; }
.legal ul { padding-left: 20px; }
.legal .note {
  background: #fff6ec; border: 1px solid #f4d9b4; color: #7a4b12;
  border-radius: 14px; padding: 16px 18px; margin-top: 28px; font-size: .95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; padding-top: 30px; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .brand, .chips, .cta { justify-content: center; }
  .hero-art { order: 2; }
  .phone { transform: none; }
  .phone.small { transform: none; }
  .showcase-inner { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .ticks { display: inline-block; text-align: left; }
  .ticks li { font-size: .98rem; }
  .features, .showcase { padding: 60px 0; }
}

/* ---------- Dark mode (content sections; hero is always dark) ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f1f2f5; --muted: #a2a9b6; --bg: #101116; --bg-alt: #16171d;
    --card: #1a1c22; --border: #282b34;
  }
  .card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.4); border-color: #3a3e49; }
  .disclaimer, .legal .note { background: #2a2013; border-color: #4a381c; color: #f0cfa0; }
  .disclaimer strong { color: #ffe4bd; }
  .legal p, .legal li { color: #cdd2db; }
}
