:root {
  /* Brand */
  --bg: #f6f2ec;
  --surface: rgba(255, 255, 255, 0.75);
  --surface-2: rgba(255, 255, 255, 0.55);
  --text: #101418;
  --muted: rgba(16, 20, 24, 0.7);
  --border: rgba(16, 20, 24, 0.12);

  /* Logo-inspired orange */
  --orange: #ff5a1f;
  --orange-2: #ff3b0a;
  --orange-soft: rgba(255, 90, 31, 0.14);

  /* Dark accent */
  --ink: #0d1117;

  /* Layout */
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 12px 40px rgba(16, 20, 24, 0.12);
  --shadow-soft: 0 10px 30px rgba(16, 20, 24, 0.09);
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.9; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.srOnly {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Background decor */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.grid {
  position: absolute; inset: -40%;
  background-image:
    linear-gradient(to right, rgba(16,20,24,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16,20,24,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: rotate(-8deg);
  opacity: 0.5;
}
.blob {
  position: absolute;
  filter: blur(35px);
  opacity: 0.75;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--orange), transparent 60%),
              radial-gradient(circle at 70% 70%, var(--orange-2), transparent 55%);
}
.blob--1 { width: 520px; height: 520px; left: -140px; top: -180px; }
.blob--2 { width: 620px; height: 620px; right: -220px; bottom: -260px; opacity: 0.55; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(246, 242, 236, 0.65);
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__logo {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(16, 20, 24, 0.12);
}
.brand__name { font-size: 18px; }

.nav {
  display: flex;
  gap: 18px;
  color: rgba(16, 20, 24, 0.8);
  font-weight: 600;
}
.nav a { padding: 8px 10px; border-radius: 12px; }
.nav a:hover { background: rgba(255, 255, 255, 0.55); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menuBtn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(16,20,24,0.12);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}
.menuBtn span {
  display: block;
  width: 18px; height: 2px;
  background: rgba(16,20,24,0.75);
  margin: 4px auto;
  border-radius: 999px;
}

/* Mobile nav */
.mobileNav {
  display: none;
  border-top: 1px solid rgba(16, 20, 24, 0.08);
  background: rgba(246, 242, 236, 0.85);
  backdrop-filter: blur(10px);
}
.mobileNav__inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.mobileNav a {
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16,20,24,0.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, opacity 120ms ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 36px rgba(255, 90, 31, 0.28);
  border-color: rgba(255, 90, 31, 0.25);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(16, 20, 24, 0.12);
  color: rgba(16, 20, 24, 0.9);
}
.btn--lg { padding: 12px 18px; border-radius: 16px; }

/* Hero */
.hero { padding: 56px 0 26px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(16, 20, 24, 0.10);
  border-radius: 999px;
  font-weight: 700;
  color: rgba(16, 20, 24, 0.75);
}
.pill__dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 10px 22px rgba(255, 90, 31, 0.25);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.3vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 54ch;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(16, 20, 24, 0.75);
  font-weight: 700;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(16,20,24,0.10);
  background: rgba(255,255,255,0.45);
}
.trust__icon { font-size: 16px; }

/* Hero card */
.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
}
.cardGlow {
  position: absolute; inset: -20px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 90, 31, 0.35), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255, 59, 10, 0.28), transparent 55%);
  filter: blur(18px);
  z-index: -1;
}
.card {
  background: var(--surface);
  border: 1px solid rgba(16, 20, 24, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}
.card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mark {
  width: 46px; height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(255, 90, 31, 0.25);
}
.card__kicker {
  font-size: 12px;
  font-weight: 900;
  color: rgba(16,20,24,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card__headline {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.badge {
  margin-left: auto;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(16,20,24,0.8);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(16, 20, 24, 0.10);
}

.timeline {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.timeline__row {
  display: grid;
  grid-template-columns: 58px 18px 1fr;
  align-items: start;
  gap: 10px;
}
.time {
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  color: rgba(16, 20, 24, 0.68);
  font-size: 13px;
  padding-top: 2px;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-top: 5px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 10px 20px rgba(255, 90, 31, 0.22);
  position: relative;
}
.dot::after {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px;
  background: rgba(16, 20, 24, 0.12);
  border-radius: 999px;
}
.timeline__row:last-child .dot::after { display: none; }

.item__title { font-weight: 900; letter-spacing: -0.01em; }
.item__meta { color: rgba(16, 20, 24, 0.62); font-weight: 700; font-size: 13px; }

.card__bottom {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(16,20,24,0.10);
  border-radius: 16px;
  padding: 10px 12px;
}
.stat__label { font-size: 12px; color: rgba(16,20,24,0.6); font-weight: 800; }
.stat__value { font-weight: 950; font-size: 16px; letter-spacing: -0.02em; }

.note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(16,20,24,0.10);
  box-shadow: var(--shadow-soft);
  color: rgba(16,20,24,0.78);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.note__icon { font-size: 18px; }

/* Sections */
.section { padding: 56px 0; }
.section--alt { background: rgba(255, 255, 255, 0.35); border-top: 1px solid rgba(16,20,24,0.06); border-bottom: 1px solid rgba(16,20,24,0.06); }

.sectionHead {
  max-width: 72ch;
  margin-bottom: 22px;
}
.sectionHead h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.sectionHead p { margin: 0; color: var(--muted); font-weight: 650; }

.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  background: var(--surface-2);
  border: 1px solid rgba(16,20,24,0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.feature__icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.22);
  margin-bottom: 10px;
  font-size: 18px;
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.feature p { margin: 0; color: var(--muted); font-weight: 650; }

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.lead2 { color: var(--muted); font-weight: 650; margin-top: 8px; }

.steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.steps li {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(16,20,24,0.10);
  border-radius: var(--radius);
  padding: 14px;
}
.steps__num {
  width: 34px; height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 30px rgba(255, 90, 31, 0.22);
}
.steps__title { font-weight: 950; letter-spacing: -0.02em; }
.steps__text { color: var(--muted); font-weight: 650; margin-top: 3px; }

.callout {
  background: rgba(16, 20, 24, 0.86);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}
.callout__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.callout__badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 900;
  font-size: 12px;
}
.callout__title {
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.callout p { color: rgba(255,255,255,0.8); font-weight: 650; }
.callout__hr { height: 1px; background: rgba(255,255,255,0.14); margin: 14px 0; }
.muted { color: rgba(255,255,255,0.66); }

/* Waitlist */
.waitlist {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(16,20,24,0.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}
.waitlist__copy h2 { margin: 0 0 6px; letter-spacing: -0.03em; }
.waitlist__copy p { margin: 0; color: var(--muted); font-weight: 650; }

.waitlist__form {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
input[type="email"] {
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16,20,24,0.14);
  background: rgba(255,255,255,0.8);
  font-weight: 750;
  outline: none;
}
input[type="email"]:focus {
  border-color: rgba(255, 90, 31, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}
.fineprint {
  margin-top: 10px;
  color: rgba(16,20,24,0.6);
  font-weight: 650;
  font-size: 13px;
}

/* FAQ */
.faq { display: grid; gap: 10px; }
details {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(16,20,24,0.10);
  border-radius: var(--radius);
  padding: 12px 14px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}
details p { margin: 10px 0 0; color: var(--muted); font-weight: 650; }

/* Footer */
.footer {
  padding: 26px 0 38px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(16,20,24,0.10);
  padding-top: 18px;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo { border-radius: 10px; }
.footer__brand { font-weight: 950; letter-spacing: -0.02em; }
.footer__meta { color: rgba(16,20,24,0.6); font-weight: 650; font-size: 13px; }
.footer__right {
  display: flex;
  gap: 14px;
  color: rgba(16,20,24,0.75);
  font-weight: 750;
}
.footer__right a { padding: 8px 10px; border-radius: 12px; }
.footer__right a:hover { background: rgba(255,255,255,0.55); }

/* Responsive */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .featureGrid { grid-template-columns: 1fr 1fr; }
  .header__cta { display: none; }
  .nav { display: none; }
  .menuBtn { display: inline-block; }
  .mobileNav[data-open="true"] { display: block; }
}
@media (max-width: 520px) {
  .featureGrid { grid-template-columns: 1fr; }
  .card__bottom { grid-template-columns: 1fr; }
}
