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

:root {
  --yellow: #FFE600;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --grey-light: #F5F5F5;
  --grey-mid: #CCCCCC;
  --grey-text: #555555;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  text-decoration: none;
}

.nav-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ─── HERO ─── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 64px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.eyebrow-bar {
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

.eyebrow-text {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.headline {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 36px;
}

.headline em {
  font-style: italic;
  color: var(--yellow);
}

.subline {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--grey-mid);
  max-width: 52ch;
}

.subline strong {
  color: var(--white);
  font-weight: 600;
}

.slogan {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--yellow);
  margin-top: 28px;
}

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 72px 48px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.how-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.step:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}

.step:nth-child(2) {
  padding-left: 40px;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.step-desc {
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grey-text);
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  color: var(--grey-text);
  letter-spacing: 0.02em;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-socials a:hover {
  color: var(--yellow);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav {
    padding: 22px 24px;
  }

  .hero {
    padding: 60px 24px 48px;
  }

  .how {
    padding: 56px 24px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step,
  .step:nth-child(2),
  .step:last-child {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 0 0 0;
  }

  .step:first-child {
    border-top: none;
    padding-top: 0;
  }

  footer {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
