* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f1e7;
  --bg-alt: #efe4d2;
  --surface: #fffaf2;
  --text: #24323a;
  --heading: #16242b;
  --muted: #5c6b72;
  --accent: #d85b19;
  --accent-dark: #b8450a;
  --accent-soft: #f1c16d;
  --border: #ddcfbb;
  --deep: #243d49;
  --shadow: 0 12px 30px rgba(20, 30, 35, 0.08);
  --radius: 20px;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

.narrow {
  width: min(780px, 100%);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 61, 73, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
}

.hero {
  padding: 68px 0 42px;
  background:
    linear-gradient(rgba(247, 241, 231, 0.93), rgba(247, 241, 231, 0.97)),
    radial-gradient(circle at top left, rgba(241, 193, 109, 0.42) 0%, transparent 38%);
}

.page-hero {
  padding-top: 58px;
  padding-bottom: 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 9px 16px;
  background: var(--accent-soft);
  color: var(--heading);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto 18px;
  max-width: 920px;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  line-height: 1.03;
  color: var(--heading);
}

.hero-grid .hero-copy h1 {
  margin-left: 0;
  margin-right: 0;
}

.hero-text {
  margin: 0 auto 0;
  max-width: 760px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-grid .hero-copy .hero-text {
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
}

.page-hero-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 14px;
}

.hero-contact {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-contact a {
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-points {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.hero-points li {
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep);
}

.btn-secondary:hover {
  background: rgba(36, 61, 73, 0.06);
}

.hero-card {
  background: linear-gradient(180deg, #fffaf2 0%, #f1e1c9 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.intro-strip {
  background: var(--deep);
  color: #ffffff;
}

.intro-strip-inner {
  padding: 22px 0;
  text-align: center;
}

.intro-strip p {
  margin: 0;
  font-size: 1.04rem;
  color: #ffffff;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-highlight {
  background: linear-gradient(135deg, #ffe3af 0%, #f3bf74 100%);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.12;
  color: var(--heading);
}

.section p {
  color: var(--muted);
  font-size: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.timeline-card,
.waitlist-box,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 26px;
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 1.2rem;
}

.info-card p {
  margin: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.timeline-card {
  padding: 26px;
}

.timeline-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  color: var(--heading);
}

.waitlist-box {
  padding: 32px;
}

.waitlist-form {
  margin-top: 20px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--heading);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  font-size: 1rem;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(216, 91, 25, 0.18);
  border-color: var(--accent);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.hidden-field {
  display: none;
}

.form-note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq-item {
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
}

.seo-section {
  padding-top: 42px;
}

.site-footer {
  background: var(--deep);
  color: #dfe8eb;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-contact {
  margin-top: 12px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #dfe8eb;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dfe8eb;
}

@media (max-width: 900px) {
  .hero-grid,
  .card-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .site-nav {
    justify-content: center;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .hero-card {
    order: -1;
  }

  .hero-grid .hero-copy,
  .hero-grid .hero-copy h1,
  .hero-grid .hero-copy .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

  .hero-points {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-text,
  .section p,
  .intro-strip p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .waitlist-box {
    padding: 22px;
  }
}