:root {
  --ink: #0e0f1c;
  --card: #1a1c2e;
  --elevated: #242645;
  --ember: #ff6b4a;
  --magenta: #ff3d77;
  --violet: #8b5cf6;
  --amber: #ffb347;
  --teal: #2dd4bf;
  --text: #f5f5fa;
  --muted: #9a9bb5;
  --sunset: linear-gradient(120deg, #ff6b4a, #ff3d77, #8b5cf6);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--text); text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* Glow backdrop */
body::before {
  content: "";
  position: fixed;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255, 61, 119, 0.22), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.brand img { width: 32px; height: 32px; border-radius: 9px; }
nav .links a { color: var(--muted); margin-left: 22px; font-size: 15px; font-weight: 600; }
nav .links a:hover { color: var(--text); }

/* Hero */
header.hero { padding: 70px 0 50px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--amber);
  background: rgba(255, 179, 71, 0.12); border: 1px solid rgba(255, 179, 71, 0.3);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
h1 {
  font-size: clamp(38px, 7vw, 68px); font-weight: 800; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 18px;
}
h1 .grad {
  background: var(--sunset); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub { font-size: clamp(17px, 2.5vw, 21px); color: var(--muted); max-width: 620px; margin: 0 auto 32px; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px; padding: 14px 26px; border-radius: 999px;
  border: none; cursor: pointer; transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--sunset); color: white; box-shadow: 0 10px 30px rgba(255, 61, 119, 0.35); }
.btn-ghost { background: var(--elevated); color: var(--text); border: 1px solid rgba(255,255,255,0.1); }

/* Sections */
section { padding: 56px 0; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.5px; text-align: center; margin-bottom: 12px; }
.section-lead { color: var(--muted); text-align: center; max-width: 600px; margin: 0 auto 40px; font-size: 17px; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.feature .badge {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 14px;
}
.feature h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }
.b-ember { background: rgba(255,107,74,0.16); }
.b-amber { background: rgba(255,179,71,0.16); }
.b-violet { background: rgba(139,92,246,0.16); }
.b-teal { background: rgba(45,212,191,0.16); }

/* Screenshot showcase */
.shots {
  display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: var(--elevated); border-radius: 8px; }
.shot {
  flex: 0 0 auto; width: 240px; scroll-snap-align: center; text-align: center;
}
.shot img {
  width: 240px; aspect-ratio: 9 / 19.5; object-fit: cover;
  border-radius: 28px; border: 1px solid rgba(255,255,255,0.12);
  background: var(--card); box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  display: block;
}
.shot figcaption { margin-top: 12px; color: var(--muted); font-weight: 600; font-size: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step { text-align: center; padding: 20px; }
.step .num {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 20px; margin: 0 auto 14px; background: var(--sunset); color: white;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* Lead capture */
.capture {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 40px; text-align: center;
  position: relative; overflow: hidden;
}
.capture::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,61,119,0.18), transparent 60%);
  pointer-events: none;
}
.capture h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin-bottom: 10px; }
.capture p { color: var(--muted); margin-bottom: 24px; }
.form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.form input {
  flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12); background: var(--ink); color: var(--text); font-size: 15px;
}
.form input::placeholder { color: var(--muted); }
.form .note { font-size: 13px; color: var(--muted); margin-top: 14px; width: 100%; }

/* Giving back */
.giveback {
  text-align: center; max-width: 680px; margin: 0 auto;
  padding: 44px 32px; border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 61, 119, 0.25);
  box-shadow: 0 0 60px rgba(255, 61, 119, 0.12);
}
.giveback .heart { font-size: 40px; display: block; margin-bottom: 12px; }
.giveback h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin-bottom: 14px; }
.giveback p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
.giveback strong { color: var(--text); }
.giveback-link { color: var(--ember); font-weight: 700; font-size: 15px; }
.giveback-link:hover { text-decoration: underline; }

/* FAQ */
details {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 18px 22px; margin-bottom: 12px;
}
details summary { font-weight: 700; cursor: pointer; font-size: 17px; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; float: right; color: var(--ember); font-weight: 800; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin-top: 12px; }

/* Footer */
footer { padding: 50px 0 40px; border-top: 1px solid rgba(255,255,255,0.07); color: var(--muted); }
footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer a { color: var(--muted); font-size: 15px; }
footer a:hover { color: var(--text); }
footer .legal { margin-top: 30px; font-size: 13px; }

/* Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 50px 22px; }
.legal-page h1 { font-size: 36px; text-align: left; margin-bottom: 8px; }
.legal-page h2 { font-size: 22px; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: var(--muted); margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--ember); }

/* Founder note */
.founder {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 36px 32px;
}
.founder p { color: var(--muted); font-size: 17px; margin-bottom: 14px; }
.founder .signoff { color: var(--text); font-weight: 700; margin-bottom: 0; }
