:root {
  --bg: #0e0e10;
  --bg-2: #141416;
  --card: #17181b;
  --border: #2a2b30;
  --text: #ede9e2;
  --muted: #9a978f;
  --accent: #c0272d;
  --accent-2: #e04b4b;
  --bone: #d8d2c6;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text);
}
.brand .wordmark { color: var(--text); }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 720px) { .nav-links { display: none; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fdf6f2;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 15px;
}
.btn:hover { text-decoration: none; opacity: 0.92; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 72px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(192, 39, 45, 0.20), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p.lead {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section.block { padding: 72px 0; border-top: 1px solid var(--border); }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 17px;
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.card .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(192, 39, 45, 0.14);
  font-size: 22px;
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Screenshot showcase */
.shots {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.phone {
  width: 240px;
  max-width: 72vw;
  border-radius: 30px;
  padding: 8px;
  background: #060607;
  border: 1px solid #33343a;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.phone img {
  display: block;
  width: 100%;
  border-radius: 22px;
}
.phone figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 14px 6px 4px;
}

/* CTA band */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(192,39,45,0.14), rgba(224,75,75,0.07));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 32px;
  margin: 24px 0;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 12px; }
.cta-band p { color: var(--muted); margin: 0 0 28px; font-size: 17px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  background: var(--bg-2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-note { color: #61697a; font-size: 13px; margin-top: 24px; }

/* Legal / content pages */
.doc { padding: 56px 0 80px; }
.doc-header { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 32px; }
.doc-header h1 { font-size: clamp(30px, 5vw, 44px); margin: 0 0 8px; }
.doc-header .updated { color: var(--muted); font-size: 14px; }
.doc-body { max-width: 760px; }
.doc-body h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  padding-top: 8px;
}
.doc-body h3 { font-size: 18px; margin: 28px 0 8px; }
.doc-body p, .doc-body li { color: #c4cbd6; font-size: 16px; }
.doc-body ul { padding-left: 22px; }
.doc-body li { margin-bottom: 8px; }
.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--muted);
}

/* FAQ */
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 20px;
  margin-bottom: 12px;
  background: var(--card);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  padding: 16px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); margin: 0 0 16px; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 20px 52px;
  color: #c4cbd6;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: -2px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(192, 39, 45, 0.16);
  color: var(--accent-2);
  font-weight: 700;
}
