/* ── Brand Palette + Spacing Tokens ── */
:root {
  --primary:   #01739b;
  --primary-dark: #015a7a;
  --accent:    #f6a3b1;
  --bold:      #cd2036;
  --fiery:     #f0492c;
  --text:      #2d2d2d;
  --text-muted:#6b6b6b;
  --bg:        #faf9f7;
  --bg-alt:    #f0ede8;
  --white:     #ffffff;
  --container: 1140px;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(1,115,155,.06), 0 2px 8px rgba(1,115,155,.04);
  --shadow-md: 0 4px 16px rgba(1,115,155,.10), 0 1px 3px rgba(1,115,155,.06);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10;
  font-family: inherit;
}
.skip-link:focus {
  top: 0;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Hero ── */
.hero {
  min-height: min(60vh, 480px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 10vw, 6rem) 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,255,255,.08) 0%, transparent 70%),
    linear-gradient(135deg, var(--primary) 0%, #0a4d6b 55%, var(--bold) 100%);
  color: var(--white);
}

.hero-logo {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: .75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  opacity: .95;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-subtext {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  opacity: .85;
  max-width: 480px;
  margin-top: .6rem;
  line-height: 1.7;
}

.cta-underline {
  display: inline-block;
  height: 4px;
  width: 60px;
  background: var(--fiery);
  border-radius: 2px;
  margin-top: .75rem;
}

/* ── Section spacing ── */
.section {
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.section-waitlist {
  background: var(--white);
}
.section-features {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: .5rem;
}

.section-waitlist .section-sub {
  max-width: 640px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ── Sign-up Form ── */
.signup-form {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1 1 240px;
  padding: .75rem 1.25rem;
  border: 1.5px solid #e5e2dd;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,115,155,.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2.25rem;
  background: var(--bold);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.btn:hover {
  background: var(--fiery);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205,32,54,.25);
}

.btn:active {
  transform: scale(.97) translateY(0);
  box-shadow: none;
}

.form-msg {
  margin-top: .75rem;
  font-size: .95rem;
  text-align: center;
  min-height: 1.2em;
}

.btn:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}


/* ── Teaser Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--container);
  margin: 2rem auto 0;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card:first-of-type  { border-top: 3px solid var(--accent); }
.card:last-of-type   { border-top: 3px solid var(--fiery); }

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--primary);
  line-height: 1.3;
}

.card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Social Bar ── */
.social-bar {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border, #eee);
}

.social-bar a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 .75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
}

.social-bar a:hover { color: var(--bold); }

.tagline {
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: .85rem;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: .75rem;
  color: var(--text-muted);
}