:root {
  --bg: #f7f1e8;
  --bg-soft: #fbf8f2;
  --text: #14202b;
  --muted: #6f665d;
  --copper: #a86d42;
  --copper-soft: #d2b18d;
  --line: rgba(20, 32, 43, 0.12);
  --card: rgba(255, 252, 246, 0.72);
  --shadow: 0 24px 80px rgba(43, 32, 24, 0.12);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(214, 184, 147, 0.34), transparent 36rem),
    radial-gradient(circle at 85% 20%, rgba(168, 109, 66, 0.16), transparent 30rem),
    linear-gradient(135deg, var(--bg-soft), var(--bg));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.status-pill {
  padding: 8px 14px;
  color: var(--copper);
  border: 1px solid rgba(168, 109, 66, 0.24);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.54);
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 66vh;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.52), rgba(255,248,238,0.38)),
    rgba(255,255,255,0.32);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.ambient {
  position: absolute;
  filter: blur(18px);
  opacity: 0.56;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 12%;
  left: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(168, 109, 66, 0.16);
}

.ambient-two {
  right: 10%;
  bottom: 12%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(77, 104, 91, 0.13);
}

.hero-content {
  width: min(850px, 92%);
  padding: 72px 0;
  text-align: center;
}

.logo-mark-wrap {
  display: inline-grid;
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(168, 109, 66, 0.28);
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.54);
}

.logo-mark-wrap img {
  width: 54px;
  height: 54px;
}

.wordmark {
  margin: 0;
  font-size: clamp(66px, 10vw, 142px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.wordmark::first-letter {
  letter-spacing: -0.075em;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 28px 0 0;
  color: var(--copper);
  font-size: clamp(18px, 2.4vw, 30px);
  font-style: italic;
  line-height: 1.4;
}

.tagline span {
  display: block;
  width: clamp(38px, 8vw, 82px);
  height: 2px;
  background: var(--copper);
  opacity: 0.7;
}

.intro {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.68;
}

.launch-card {
  display: inline-block;
  margin-top: 38px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.launch-text {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 0 0;
}

.tile {
  padding: 22px;
  border: 1px solid rgba(20, 32, 43, 0.09);
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.54);
}

.tile-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--copper);
  border: 1px solid rgba(168, 109, 66, 0.18);
  border-radius: 14px;
  font-size: 22px;
}

.tile h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.tile p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: rgba(20, 32, 43, 0.52);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 800px) {
  .page-shell { width: min(100% - 24px, 1120px); }
  .topbar { padding: 18px 0; }
  .hero { min-height: 68vh; border-radius: 26px; }
  .hero-content { padding: 52px 0; }
  .tagline { gap: 14px; }
  .tagline span { width: 32px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .status-pill { display: none; }
  .wordmark { font-size: 58px; }
  .tagline {
    display: block;
    max-width: 300px;
    margin-inline: auto;
  }
  .tagline span { display: none; }
  .intro { font-size: 16px; }
  .tiles { grid-template-columns: 1fr; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f171d;
    --bg-soft: #16212a;
    --text: #f5efe6;
    --muted: #bcb0a3;
    --copper: #c48350;
    --copper-soft: #d2b18d;
    --line: rgba(245, 239, 230, 0.12);
    --card: rgba(20, 32, 43, 0.62);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  }

  body {
    background:
      radial-gradient(circle at 15% 10%, rgba(196, 131, 80, 0.18), transparent 34rem),
      radial-gradient(circle at 85% 20%, rgba(103, 126, 113, 0.16), transparent 30rem),
      linear-gradient(135deg, var(--bg-soft), var(--bg));
  }

  .hero,
  .tile,
  .launch-card,
  .status-pill,
  .logo-mark-wrap {
    background: rgba(20, 32, 43, 0.42);
    border-color: rgba(245, 239, 230, 0.10);
  }
}
