/* =========================
   Design tokens / global
   ========================= */
:root {
  --bg: #fdf8f2; /* warm cream */
  --bg-warm: #f5ede0;
  --ink: #181422;
  --ink-2: rgba(24, 20, 34, 0.72);
  --muted: rgba(24, 20, 34, 0.58);
  --card: rgba(255, 255, 255, 0.72);
  --stroke: rgba(26, 26, 46, 0.14);

  --dark: #1a1a2e; /* deep navy-black */
  --dark-2: #120a18; /* deep purple-black (very dark) */
  --dark-ink: rgba(253, 248, 242, 0.92);
  --dark-muted: rgba(253, 248, 242, 0.72);

  --primary: #e84855; /* crimson red */
  --secondary: #ff6b35; /* warm orange */
  --gold: #f4a261; /* gold highlight */

  --shadow-sm: 0 10px 26px rgba(26, 26, 46, 0.12);
  --shadow-md: 0 18px 50px rgba(26, 26, 46, 0.18);
  --shadow-lg: 0 26px 75px rgba(26, 26, 46, 0.25);

  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1120px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.7;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(232, 72, 85, 0.14), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(255, 107, 53, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg));
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Headings typography */
h1,
h2,
h3,
.logo {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 14px 0 12px;
}

h2 {
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  margin: 10px 0 18px;
}

p {
  margin: 0 0 14px;
  color: var(--ink-2);
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 72, 85, 0.25);
  background: rgba(253, 248, 242, 0.7);
  box-shadow: 0 10px 26px rgba(26, 26, 46, 0.06);
  color: rgba(26, 26, 46, 0.8);
  font-weight: 500;
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease),
    border-color 0.22s var(--ease), color 0.22s var(--ease);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(244, 162, 97, 0.26), 0 0 0 2px rgba(232, 72, 85, 0.35) inset;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(232, 72, 85, 1), rgba(255, 107, 53, 0.95));
  color: rgba(253, 248, 242, 0.98);
  box-shadow: 0 18px 44px rgba(232, 72, 85, 0.26);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(232, 72, 85, 0.32);
}

.btn-ghost {
  background: rgba(253, 248, 242, 0.38);
  color: rgba(26, 26, 46, 0.88);
  border-color: rgba(26, 26, 46, 0.18);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(232, 72, 85, 0.28);
}

/* =========================
   Navbar
   ========================= */
header {
  position: relative;
  z-index: 50;
}

.nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 60;
}

.nav-inner {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  background: rgba(253, 248, 242, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(26, 26, 46, 0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(26, 26, 46, 0.12);
  flex: 0 0 auto;
  transform: translateY(1px);
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.logo-dot {
  color: var(--primary);
  font-size: 1.25em;
  line-height: 1;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 10px;
}

.nav-links a {
  font-size: 0.95rem;
  color: rgba(26, 26, 46, 0.78);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-links a:hover {
  background: rgba(232, 72, 85, 0.08);
  color: rgba(26, 26, 46, 0.92);
  transform: translateY(-1px);
}

.nav-cta {
  justify-self: end;
  padding: 12px 16px;
  background: rgba(232, 72, 85, 0.95);
  color: rgba(253, 248, 242, 0.98);
  box-shadow: 0 16px 42px rgba(232, 72, 85, 0.26);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(232, 72, 85, 0.32);
}

/* Spacer so hero isn't hidden behind fixed nav */
.nav-spacer {
  height: 92px;
}

/* =========================
   Hero
   ========================= */
#hero {
  padding: 36px 0 34px;
  position: relative;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-subtitle {
  max-width: 54ch;
  color: rgba(26, 26, 46, 0.72);
  font-size: 1.08rem;
}

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

.hero-micro {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(26, 26, 46, 0.6);
  font-size: 0.92rem;
}

.micro-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.micro-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(244, 162, 97, 0.9);
  box-shadow: 0 10px 22px rgba(244, 162, 97, 0.18);
}

/* Hero load animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards;
}

.d0 {
  animation-delay: 0s;
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.2s;
}
.d3 {
  animation-delay: 0.3s;
}

/* Phone mock */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.phone {
  width: min(360px, 100%);
  aspect-ratio: 9/18.5;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(26, 26, 46, 1), rgba(18, 10, 24, 1));
  box-shadow: 0 30px 90px rgba(26, 26, 46, 0.35);
  padding: 14px;
  position: relative;
  animation: floaty 5s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 38px;
  background: radial-gradient(900px 420px at 20% 10%, rgba(232, 72, 85, 0.16), transparent 50%),
    radial-gradient(700px 420px at 90% 20%, rgba(255, 107, 53, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(253, 248, 242, 0.06), rgba(253, 248, 242, 0.02));
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(0.2px);
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(253, 248, 242, 0.92), rgba(245, 237, 224, 0.9));
  overflow: hidden;
  border: 1px solid rgba(253, 248, 242, 0.12);
}

.screen-top {
  padding: 22px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.screen-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.screen-brand .dot {
  color: var(--primary);
}

.screen-pill {
  font-size: 0.8rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 46, 0.14);
  background: rgba(253, 248, 242, 0.7);
  color: rgba(26, 26, 46, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-card {
  margin: 6px 14px 12px;
  border-radius: 18px;
  padding: 14px 14px 12px;
  color: rgba(253, 248, 242, 0.98);
  background: linear-gradient(
    135deg,
    rgba(232, 72, 85, 0.98),
    rgba(255, 107, 53, 0.92),
    rgba(244, 162, 97, 0.88)
  );
  box-shadow: 0 18px 50px rgba(232, 72, 85, 0.22);
  position: relative;
  overflow: hidden;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(260px 120px at 20% 20%, rgba(253, 248, 242, 0.26), transparent 55%),
    radial-gradient(240px 140px at 80% 20%, rgba(253, 248, 242, 0.18), transparent 60%);
  pointer-events: none;
}

.event-title {
  position: relative;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.event-sub {
  position: relative;
  margin: 0;
  color: rgba(253, 248, 242, 0.9);
  font-size: 0.88rem;
}

.stats-grid {
  margin: 12px 14px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-tile {
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(253, 248, 242, 0.75);
  border: 1px solid rgba(26, 26, 46, 0.12);
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.09);
}

.stat-num {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
  margin: 0;
  color: rgba(26, 26, 46, 0.92);
}

.stat-lbl {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: rgba(26, 26, 46, 0.62);
}

.avatar-row {
  margin: 12px 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(253, 248, 242, 0.9);
  margin-left: -8px;
  box-shadow: 0 10px 22px rgba(26, 26, 46, 0.14);
}

.avatar:first-child {
  margin-left: 0;
}

.a1 {
  background: rgba(232, 72, 85, 0.88);
}
.a2 {
  background: rgba(255, 107, 53, 0.9);
}
.a3 {
  background: rgba(244, 162, 97, 0.92);
}
.a4 {
  background: rgba(26, 26, 46, 0.92);
}
.a5 {
  background: rgba(232, 72, 85, 0.62);
}

.chip {
  font-size: 0.78rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.92);
  color: rgba(253, 248, 242, 0.92);
  box-shadow: 0 16px 44px rgba(26, 26, 46, 0.22);
  border: 1px solid rgba(253, 248, 242, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.screen-bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 18px;
  padding: 12px;
  background: rgba(253, 248, 242, 0.7);
  border: 1px solid rgba(26, 26, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini {
  font-size: 0.82rem;
  color: rgba(26, 26, 46, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mini i {
  color: rgba(232, 72, 85, 0.95);
}

/* =========================
   Stats strip
   ========================= */
#stats {
  padding: 26px 0;
  background: var(--dark);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-pill {
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px solid rgba(253, 248, 242, 0.14);
  background: linear-gradient(180deg, rgba(253, 248, 242, 0.06), rgba(253, 248, 242, 0.03));
}

.stat-pill strong {
  display: block;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.06rem;
  color: var(--gold);
}

.stat-pill span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  color: rgba(253, 248, 242, 0.78);
}

/* =========================
   Section base + reveal
   ========================= */
section {
  padding: 74px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Features
   ========================= */
#features {
  padding-top: 86px;
}

.features-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 26, 46, 0.12);
  background: rgba(253, 248, 242, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 18px 16px;
  box-shadow: 0 20px 55px rgba(26, 26, 46, 0.08);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, rgba(232, 72, 85, 1), rgba(255, 107, 53, 1), rgba(244, 162, 97, 1));
  transition: width 0.45s var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 72, 85, 0.2);
}

.feature:hover::before {
  width: 100%;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  border: 1px solid rgba(26, 26, 46, 0.1);
  box-shadow: 0 16px 38px rgba(26, 26, 46, 0.1);
  margin-bottom: 12px;
}

.f-title {
  margin: 0 0 6px;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
}

.feature p {
  margin: 0;
  color: rgba(26, 26, 46, 0.7);
}

/* =========================
   How it works
   ========================= */
#how {
  background: var(--bg-warm);
}

.steps {
  margin-top: 22px;
  max-width: 680px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(232, 72, 85, 0.9), rgba(232, 72, 85, 0));
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.step-badge {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(253, 248, 242, 0.98);
  background: linear-gradient(135deg, rgba(232, 72, 85, 1), rgba(255, 107, 53, 0.95));
  box-shadow: 0 18px 40px rgba(232, 72, 85, 0.2);
  border: 1px solid rgba(253, 248, 242, 0.22);
  position: relative;
  z-index: 2;
}

.step-title {
  margin: 0 0 6px;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
  color: rgba(26, 26, 46, 0.9);
}

.step p {
  margin: 0;
  color: rgba(26, 26, 46, 0.7);
}

/* =========================
   Testimonials
   ========================= */
#testimonials {
  padding-top: 86px;
}

.t-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 26, 46, 0.12);
  background: rgba(253, 248, 242, 0.72);
  box-shadow: 0 22px 60px rgba(26, 26, 46, 0.09);
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.t-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  display: inline-flex;
  gap: 4px;
  color: var(--gold);
}

.quote {
  margin: 0;
  font-style: italic;
  color: rgba(26, 26, 46, 0.74);
}

.t-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.avatar-lg {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(253, 248, 242, 0.92);
  box-shadow: 0 16px 40px rgba(26, 26, 46, 0.14);
  flex: 0 0 auto;
}

.av1 {
  background: linear-gradient(135deg, rgba(232, 72, 85, 0.95), rgba(244, 162, 97, 0.85));
}
.av2 {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(232, 72, 85, 0.75));
}
.av3 {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(232, 72, 85, 0.75));
}

.t-name {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
  color: rgba(26, 26, 46, 0.92);
}

/* =========================
   Mono accents (chips/labels)
   ========================= */
.label,
.screen-pill,
.chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.08em;
}

.t-role {
  margin: 0;
  color: rgba(26, 26, 46, 0.64);
  font-size: 0.92rem;
}

/* =========================
   CTA / Waitlist
   ========================= */
#notify {
  background: linear-gradient(135deg, rgba(26, 26, 46, 1), rgba(18, 10, 24, 1));
  position: relative;
  overflow: hidden;
}

#notify::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(900px 460px at 15% 10%, rgba(232, 72, 85, 0.22), transparent 55%),
    radial-gradient(900px 460px at 85% 30%, rgba(255, 107, 53, 0.18), transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 162, 97, 0.32);
  background: rgba(244, 162, 97, 0.1);
  color: rgba(244, 162, 97, 0.95);
  font-weight: 500;
}

.cta-inner h2 {
  color: rgba(253, 248, 242, 0.98);
  margin-top: 14px;
}

.cta-inner p {
  color: rgba(253, 248, 242, 0.75);
  max-width: 62ch;
  margin: 0 auto 18px;
}

.waitlist {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.input {
  width: min(440px, 100%);
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(253, 248, 242, 0.18);
  background: rgba(253, 248, 242, 0.08);
  color: rgba(253, 248, 242, 0.92);
  font: inherit;
  transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease);
}

.input::placeholder {
  color: rgba(253, 248, 242, 0.6);
}

.input:focus {
  outline: none;
  border-color: rgba(244, 162, 97, 0.42);
  box-shadow: 0 0 0 5px rgba(244, 162, 97, 0.18);
  background: rgba(253, 248, 242, 0.1);
}

.btn-notify {
  padding: 14px 18px;
  border: 1px solid rgba(232, 72, 85, 0.2);
}

.fineprint {
  margin-top: 10px;
  font-size: 0.92rem;
  color: rgba(253, 248, 242, 0.65);
}

.success {
  margin-top: 12px;
  color: rgba(244, 162, 97, 0.98);
  font-weight: 500;
  min-height: 1.4em;
}

/* =========================
   Footer
   ========================= */
footer {
  background: var(--dark);
  padding: 34px 0;
  color: rgba(253, 248, 242, 0.76);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background: url("assets/gathe_watermark_icon.png") center / contain no-repeat;
  opacity: 0.08;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
}

.footer-line,
.footer-sub {
  position: relative;
  z-index: 1;
}

.footer-line {
  text-align: center;
  margin: 0;
}

.footer-sub {
  text-align: center;
  margin: 10px 0 0;
  color: rgba(253, 248, 242, 0.6);
  font-size: 0.92rem;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
  }

  .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding-top: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-micro {
    justify-content: center;
  }

  .phone-wrap {
    display: none;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .t-grid {
    grid-template-columns: 1fr;
  }

  .waitlist {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-notify {
    width: 100%;
  }
}

/* =========================
   Motion preferences
   ========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-animate {
    animation: none;
    opacity: 1;
  }
  .phone {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .feature,
  .t-card {
    transition: none;
  }
}

