/* Telovo — marketing site styles. Self-contained (no external deps).
   To rebrand, change --brand-* tokens here and the name text in the HTML. */
:root {
  --sunset-1: #FF8A3D;
  --sunset-2: #FF5C72;
  --sunset-3: #A638C8;
  --grad: linear-gradient(120deg, var(--sunset-1), var(--sunset-2) 52%, var(--sunset-3));
  --ink: #1c1530;
  --muted: #6b6380;
  --bg: #ffffff;
  --bg-soft: #faf7fb;
  --card: #ffffff;
  --border: #ece6f1;
  --shadow: 0 18px 50px -20px rgba(60, 20, 80, .28);
  --radius: 20px;
  --maxw: 1120px;
  font-synthesis: none;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f0fa; --muted: #b7afc9; --bg: #140f1e; --bg-soft: #1b1430;
    --card: #1d1731; --border: #2c2442; --shadow: 0 18px 50px -20px rgba(0,0,0,.6);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.nav .links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav .links a { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav .links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 10px 24px -10px var(--sunset-2); transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -12px var(--sunset-2); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); box-shadow: none; }
@media (max-width: 720px){ .nav .links a:not(.btn){ display:none; } }

/* Hero */
.hero { padding: 84px 0 56px; position: relative; overflow: hidden; }
.hero .glow { position:absolute; inset:-40% 30% auto -10%; height:520px; background:var(--grad);
  filter: blur(120px); opacity:.22; border-radius:50%; z-index:0; }
.hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.pill { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--sunset-3);
  background: color-mix(in srgb, var(--sunset-3) 12%, transparent); padding:6px 13px; border-radius:999px; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.03em; margin: 18px 0 14px; font-weight: 850; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 30em; margin: 0 0 26px; }
.cta-row { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.store-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
@media (max-width: 880px){ .hero .grid{ grid-template-columns:1fr; } .hero{ padding-top:54px; } }

/* Phone mockup */
.phone { justify-self: center; width: 300px; max-width: 80vw; aspect-ratio: 300/610;
  background: var(--card); border: 1px solid var(--border); border-radius: 42px;
  box-shadow: var(--shadow); padding: 14px; position: relative; }
.phone .screen { height: 100%; border-radius: 30px; overflow: hidden; background: var(--bg-soft);
  display: flex; flex-direction: column; }
.phone .map { flex: 1; background:
    radial-gradient(circle at 30% 35%, color-mix(in srgb, var(--sunset-1) 30%, transparent), transparent 40%),
    radial-gradient(circle at 72% 60%, color-mix(in srgb, var(--sunset-3) 30%, transparent), transparent 42%),
    repeating-linear-gradient(0deg, var(--border) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, var(--border) 0 1px, transparent 1px 38px), var(--bg-soft);
  position: relative; }
.dot { position:absolute; width:18px; height:18px; border-radius:50%; background:var(--grad);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--sunset-2) 22%, transparent); }
.phone .chat { background: var(--card); border-top: 1px solid var(--border); padding: 12px; }
.bubble { font-size: 12.5px; padding: 8px 11px; border-radius: 13px; margin: 5px 0; max-width: 82%; }
.bubble.them { background: var(--bg-soft); color: var(--ink); border-bottom-left-radius: 4px; }
.bubble.me { background: var(--grad); color:#fff; margin-left:auto; border-bottom-right-radius: 4px; }
.bubble small { display:block; opacity:.7; font-size:10.5px; margin-top:2px; }

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 38em; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); letter-spacing: -.025em; margin: 0 0 12px; font-weight: 820; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.bg-soft { background: var(--bg-soft); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px){ .cards{ grid-template-columns:1fr; } }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); }
.card .ic { width: 48px; height: 48px; border-radius: 13px; display:grid; place-items:center;
  background: color-mix(in srgb, var(--sunset-2) 13%, transparent); margin-bottom: 16px; }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
@media (max-width: 880px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width: 520px){ .steps{ grid-template-columns:1fr; } }
.step { position: relative; padding: 22px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); }
.step .n { width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #fff;
  font-weight: 800; display: grid; place-items: center; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* Privacy banner */
.privacy { background: var(--grad); color: #fff; border-radius: 26px; padding: 46px; text-align: center;
  box-shadow: var(--shadow); }
.privacy h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 12px; letter-spacing: -.02em; }
.privacy p { margin: 0 auto; max-width: 40em; opacity: .94; font-size: 17px; }
.privacy .chips { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:22px; }
.privacy .chips span { background: rgba(255,255,255,.16); padding:8px 14px; border-radius:999px; font-size:14px; font-weight:600; }

/* CTA */
.final { text-align:center; }
.final h2 { font-size: clamp(26px,4vw,42px); letter-spacing:-.03em; margin:0 0 14px; }
.final p { color: var(--muted); font-size:18px; margin:0 0 26px; }

/* Footer */
footer.site { border-top: 1px solid var(--border); padding: 40px 0; background: var(--bg-soft); }
.foot { display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.foot .brand { font-size: 18px; }
.foot .legal { margin-left:auto; display:flex; gap:22px; flex-wrap:wrap; }
.foot .legal a { color: var(--muted); font-weight:600; font-size:14.5px; }
.foot .legal a:hover { color: var(--ink); }
.copy { color: var(--muted); font-size: 13.5px; margin-top: 18px; }

/* Legal / prose pages */
.legal-page { padding: 56px 0 80px; }
.legal-page .back { color: var(--muted); font-weight:600; font-size:14px; }
.prose { max-width: 760px; margin: 22px auto 0; }
.prose h1 { font-size: clamp(28px,4vw,40px); letter-spacing:-.02em; margin: 6px 0 6px; }
.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.prose h2 { font-size: 21px; margin: 34px 0 10px; letter-spacing:-.01em; }
.prose h3 { font-size: 17px; margin: 22px 0 6px; }
.prose p, .prose li { color: var(--ink); font-size: 16px; }
.prose p { margin: 10px 0; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--sunset-3); font-weight: 600; }
.prose .todo { background: color-mix(in srgb, var(--sunset-1) 14%, transparent);
  border: 1px dashed var(--sunset-2); border-radius: 12px; padding: 12px 16px; color: var(--ink); font-size: 14.5px; }
.prose .box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; }
