:root {
  --cream: #f7f0d8;
  --cream-soft: #fff7df;
  --parchment: #f2e7c8;
  --forest-deep: #07100b;
  --forest: #17210f;
  --olive: #48563a;
  --olive-soft: #63704d;
  --leaf: #6f8b2a;
  --leaf-bright: #a4bd43;
  --apple: #d84a24;
  --gold: #e3a12b;
  --gold-soft: #f5d36f;
  --text: #202517;
  --muted: #596044;
  --glass-border: rgba(255, 255, 255, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--forest-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand span {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

a {
  color: inherit;
}

section {
  scroll-margin-top: 112px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--forest-deep);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass,
.glass-light,
.glass-nav {
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 126px 20px 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 34%, rgba(227, 161, 43, 0.36), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(216, 74, 36, 0.24), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(111, 139, 42, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(7, 16, 11, 0.94), rgba(23, 33, 15, 0.78));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, transparent, rgba(7, 16, 11, 0.44));
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.hero::after {
  width: 46vw;
  height: 46vw;
  min-width: 300px;
  min-height: 300px;
  right: -12%;
  top: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 74, 36, 0.26), transparent 62%);
  filter: blur(8px);
  animation: drift 20s ease-in-out infinite alternate;
}

.topbar {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(1120px, calc(100% - 24px));
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  border-radius: 999px;
  background: rgba(7, 16, 11, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--cream-soft);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 52px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.brand span {
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(247, 240, 216, 0.88);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  background: rgba(245, 211, 111, 0.14);
  color: #fff9dd;
  transform: translateY(-1px);
}

.nav-pill {
  background: rgba(227, 161, 43, 0.14);
  border: 1px solid rgba(245, 211, 111, 0.22);
  color: #fff4c5 !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 211, 111, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  text-align: center;
  color: #fff9df;
  overflow: hidden;
  animation: heroIn 1s cubic-bezier(.2, .7, .2, 1) both 0.1s;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%, transparent 66%, rgba(227, 161, 43, 0.12));
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(420px, 78%);
  height: auto;
  max-height: 520px;
  object-fit: contain;
  margin: 8px auto 20px;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.28));
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--apple), var(--gold));
  color: #fff7df;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(216, 74, 36, 0.28);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(7, 16, 11, 0.42);
  border: 1px solid rgba(245, 211, 111, 0.24);
  color: rgba(255, 249, 223, 0.94);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.98;
  color: #fff8d7;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.22);
}

.hero-lede {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  color: rgba(255, 249, 223, 0.92);
}

.hero-status {
  max-width: 620px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(7, 16, 11, 0.32);
  border: 1px solid rgba(245, 211, 111, 0.18);
  color: #fff4c5;
  font-weight: 700;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #24180a;
  box-shadow: 0 14px 34px rgba(227, 161, 43, 0.30);
}

.btn-secondary {
  color: #fff9df;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 211, 111, 0.22);
}

.hero-points {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 16, 11, 0.32);
  border: 1px solid rgba(242, 231, 200, 0.16);
  color: rgba(255, 249, 223, 0.82);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 249, 223, 0.78);
  text-decoration: none;
}

.scroll-indicator span {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, rgba(255, 249, 223, 0.82), transparent);
  animation: pulseLine 1.8s ease-in-out infinite;
}

.scroll-indicator em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-pad {
  padding: 86px 20px;
}

.intro {
  background:
    radial-gradient(circle at top right, rgba(216, 74, 36, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(111, 139, 42, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf5df, #efe1bb);
}

.section-shell {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(245, 211, 111, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58));
  border-radius: 30px;
  box-shadow: 0 20px 70px rgba(62, 48, 24, 0.12);
  text-align: center;
  overflow: hidden;
}

.section-label {
  color: #8d4a1c;
}

.intro h2,
.route h2,
.coming-soon h2 {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 6vw, 4.1rem);
  line-height: 0.96;
}

.intro p,
.section-heading p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #4d523a;
}

.feature-list,
.steps {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.step-card {
  padding: 24px 22px;
  border-radius: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid rgba(32, 37, 23, 0.08);
  box-shadow: 0 14px 34px rgba(62, 48, 24, 0.08);
}

.feature-card span,
.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-bright));
  color: #fffde8;
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.feature-card p,
.step-card p {
  margin: 0;
  font-size: 0.98rem;
}

.route {
  background:
    radial-gradient(circle at 22% 18%, rgba(245, 211, 111, 0.16), transparent 24%),
    linear-gradient(180deg, #efe1bb, #17210f);
}

.route-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  margin: 0 auto 32px;
  text-align: center;
}

.route .section-label {
  color: #8d4a1c;
}

.route h2 {
  color: #1c2516;
}

.step-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.09));
  color: #fff9df;
  border-color: rgba(255, 255, 255, 0.18);
}

.step-card p {
  color: rgba(255, 249, 223, 0.78);
}

.coming-soon {
  background:
    radial-gradient(circle at top left, rgba(227, 161, 43, 0.22), transparent 20%),
    radial-gradient(circle at bottom right, rgba(216, 74, 36, 0.22), transparent 18%),
    linear-gradient(180deg, #17210f, #07100b);
}

.coming-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(245, 211, 111, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.24);
  color: #fff9df;
  text-align: center;
  overflow: hidden;
}

.coming-panel .section-label {
  color: var(--gold-soft);
}

.coming-panel p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 249, 223, 0.84);
  font-size: 1.08rem;
}

.coming-note {
  margin-top: 22px !important;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(7, 16, 11, 0.34);
  border: 1px solid rgba(245, 211, 111, 0.16);
  color: #fff4c5 !important;
  font-weight: 700;
}

.site-footer {
  background: var(--forest-deep);
  padding: 28px 20px 34px;
  text-align: center;
  color: rgba(255, 249, 223, 0.72);
}

.site-footer p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

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

.btn:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.scroll-indicator:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid rgba(245, 211, 111, 0.95);
  outline-offset: 4px;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-20px, 24px, 0) scale(1.08);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.45;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 820px) {
  .topbar {
    border-radius: 22px;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 156px;
  }

  .hero-content,
  .coming-panel {
    border-radius: 26px;
  }

  .feature-list,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 92svh;
    padding: 142px 16px 54px;
  }

  .hero-logo {
    width: min(360px, 94%);
  }

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

  .btn {
    width: 100%;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .scroll-indicator {
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
