*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta: #C1693C;
  --terracotta-dark: #a0532c;
  --gold: #DAA520;
  --gold-light: #f0c84a;
  --charcoal: #1A1A1A;
  --green: #2E8B57;
  --green-dark: #106B3E;
  --off-white: #FAFAFA;
  --cream: #F5EFE6;
  --muted: #6B5E52;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--off-white);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

.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;
}

/* ── ADINKRA BACKGROUND PATTERN ── */
.adinkra-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.04;
}
.adinkra-bg svg { width: 100%; height: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26,26,26,0.88);
  -webkit-backdrop-filter: blur(10px);  /* Standard — Firefox 103+, Chrome, Edge */
  backdrop-filter: blur(10px);   /* Safari 9+, Chrome, Edge */
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C1A0E 50%, #1A2B1E 100%);
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(193,105,60,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(218,165,32,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: rgba(250,250,250,0.75);
  max-width: 600px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: var(--gold);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  text-align: center;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(218,165,32,0.45);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(218,165,32,0.7), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── WHO IT'S FOR ── */
#who-for {
  background: var(--cream);
  padding: 4rem 2rem;
  min-height: clamp(32rem, 48vw, 43rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
#who-for::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(245, 239, 230, 0.86), rgba(245, 239, 230, 0.86)),
    url('who-is-this-for.png') center / cover no-repeat;
  opacity: 0.72;
}
.who-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.who-text {
  text-align: left;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--charcoal);
  max-width: 100%;
}
.who-text p { margin-bottom: 0.75rem; }
.who-text p:last-child { margin-bottom: 0; }
.who-text strong { color: var(--terracotta); }
.who-visual {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.who-tag {
  background: var(--off-white);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(193,105,60,0.15);
  white-space: nowrap;
}
.who-tag span { color: var(--terracotta); font-weight: 700; }

/* ── VISION SECTION ── */
#vision {
  background: var(--cream);
  padding: 7rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  text-align: center;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 3.5rem;
  line-height: 1.2;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}
.card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(26,26,26,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
  border-radius: 12px 12px 0 0;
}
.card:nth-child(2)::before { background: var(--gold); }
.card:nth-child(3)::before { background: var(--green); }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,26,26,0.12);
}
.card-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.2rem;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.card-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── QUOTE SECTION ── */
#quote-section {
  background: var(--charcoal);
  padding: 6rem 1.5rem;
  text-align: center;
}
.quote-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 1.8rem;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--off-white);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}
.quote-text strong {
  font-weight: 700;
  color: var(--gold);
}
.quote-rule-bottom {
  margin-top: 1.8rem;
}

/* ── STEPS SECTION ── */
#steps {
  background: var(--off-white);
  padding: 7rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1020px;
  margin: 0 auto;
}
.step {
  background: var(--cream);
  padding: 2rem 1.8rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-4px); }
.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.step:nth-child(2) .step-badge { background: var(--gold); color: var(--charcoal); }
.step:nth-child(3) .step-badge { background: var(--green); color: #fff; }
.step-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}
.step-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

/* ── PROMISE SECTION ── */
#promise {
  background: var(--cream);
  padding: 7rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.promise-inner {
  max-width: 800px;
  margin: 0 auto;
}
#promise .section-heading {
  text-align: left;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 2rem;
}
.promise-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.promise-founder {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--terracotta);
  font-weight: 600;
}

/* ── MARKETPLACE TEASER ── */
#market {
  background: var(--charcoal);
  padding: 4rem 1.5rem;
}
.market-box {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(218,165,32,0.2);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  background: rgba(255,255,255,0.04);
}
.market-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 2px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.2rem;
}
.market-heading {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.8rem;
}
.market-text {
  font-size: 0.97rem;
  color: rgba(250,250,250,0.65);
  line-height: 1.7;
}

/* ── WAITLIST ── */
#waitlist {
  background: linear-gradient(160deg, #2C1A0E 0%, #1A1A1A 100%);
  padding: 7rem 2rem;
  text-align: center;
}
#waitlist .section-heading { color: var(--off-white); }
#waitlist .section-eyebrow { color: var(--gold); }
.waitlist-sub {
  font-size: 1rem;
  color: rgba(250,250,250,0.65);
  max-width: 500px;
  margin: -1.5rem auto 2.5rem;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
  align-items: stretch;
  transition: opacity 0.4s ease;
}
.waitlist-form input[type="email"],
.waitlist-form input[type="tel"],
.waitlist-form select {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;  /* Chrome, Safari, Edge */
  -moz-appearance: none;     /* Firefox */
  appearance: none;          /* Standard */
}
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  width: 100%;
  padding-right: 2.5rem;
}
.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255,255,255,0.4);
  pointer-events: none;
}
.waitlist-form select option { background: #2C1A0E; color: var(--off-white); }
.waitlist-form input[type="email"]:focus,
.waitlist-form input[type="tel"]:focus,
.waitlist-form select:focus { border-color: var(--gold); }
.waitlist-form input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-form .btn-primary {
  width: 100%;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem;
  opacity: 1;
  animation: none;
}
#thank-you {
  display: none;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
}
/* ── RESET LINK ── */
.reset-link {
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.2s;
  display: inline-block;
  margin-top: 0.5rem;
}
.reset-link:hover {
  color: var(--gold-light);
}
.trust-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1.2rem;
}

/* ── CONSENT CHECKBOX ── */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  line-height: 1.55;
  cursor: pointer;
  -webkit-user-select: none;  /* Chrome, Safari, Edge */
  -moz-user-select: none;  /* Firefox */
  -ms-user-select: none;   /* Internet Explorer / Legacy Edge */
  user-select: none;       /* Standard */
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-label:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.16);
}
.consent-label a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.consent-label a:hover {
  color: var(--gold-light);
}

/* ── FORM ERROR ── */
#form-error {
  display: none;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #e07b5a;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.footer-links {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── FADE-IN ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Landscape & Tablets */
@media (max-width: 768px) {
  nav { 
    padding: 0.9rem 1.2rem; 
  }
  .nav-cta { 
    font-size: 0.7rem; 
    padding: 0.4rem 0.8rem; 
  }
  
  #who-for {
    padding: 3rem 1.2rem;
    min-height: 38rem;
    text-align: center;
  }
  #who-for::before {
    background-position: 58% center;
    opacity: 0.58;
  }
  .who-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .who-text { 
    text-align: center; 
  }
  .who-text p { 
    margin-bottom: 0.5rem; 
  }
  .who-visual { 
    gap: 0.75rem; 
  }
  .who-tag { 
    padding: 0.6rem 1.2rem; 
    font-size: 0.85rem; 
    white-space: nowrap;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  #vision, #steps, #promise, #waitlist {
    padding: 4rem 1.2rem;
  }
  
  #promise .section-heading { 
    text-align: center; 
  }
  
  .cards { 
    grid-template-columns: 1fr; 
    max-width: 500px;
  }
  .waitlist-form { 
    max-width: 100%; 
  }
  #quote-section { 
    padding: 4rem 1.2rem; 
  }
  
  #hero { 
    min-height: 80vh; 
    padding: 6rem 1.2rem 4rem; 
  }
}

/* Mobile Phones (Portrait) */
@media (max-width: 600px) {
  .card {
    padding: 1.8rem 1.2rem;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
}

/* Small Phones (iPhone SE, Galaxy Fold) */
@media (max-width: 480px) {
  .nav-logo-img {
    height: 32px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .btn-primary {
    font-size: 0.85rem;
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
  
  .who-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    white-space: nowrap;
    flex: 0 1 auto;
  }
  .who-visual {
    gap: 0.5rem;
    justify-content: center;
  }
  
  .waitlist-form input[type="email"],
  .waitlist-form input[type="tel"],
  .waitlist-form select {
    font-size: 16px;
    padding: 0.85rem 1rem;
  }
  .waitlist-form .btn-primary {
    font-size: 0.9rem;
    padding: 0.85rem;
  }
  
  .consent-label {
    padding: 0.85rem 0.9rem;
    font-size: 0.8rem;
  }
  .consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .footer-links a {
    margin: 0;
    display: inline-block;
  }
  .footer-links .separator {
    display: none;
  }
  
  .trust-note {
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
  
  .quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

/* Tiny Screens (Galaxy Fold, etc.) */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 1.8rem;
  }
  .nav-logo-img {
    height: 28px;
  }
  .nav-cta {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }
  .who-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
}