:root {
  color-scheme: light;
  --sunrise: #f7b500;
  --sand: #fdebc7;
  --sage: #b7d3a6;
  --moss: #58bf6b;
  --forest: #125845;
  --charcoal: #1f2937;
  --mist: #e5e7eb;
  --paper: #fbfaf6;
  --text-soft: #687386;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 68% 8%, rgba(183, 211, 166, 0.18), transparent 28rem),
    radial-gradient(circle at 26% 92%, rgba(253, 235, 199, 0.34), transparent 32rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header,
.site-footer {
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name,
.hero-brand {
  font-weight: 750;
  letter-spacing: -0.045em;
}

.brand-name { font-size: 22px; }

.brand-name strong,
.hero-brand strong {
  color: var(--forest);
  font-weight: inherit;
}

.development-label,
.slogan,
.status-pill,
.site-footer {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 650;
}

.development-label {
  color: #778294;
  font-size: 11px;
}

.hero {
  width: min(100% - 48px, 920px);
  margin: auto;
  padding: 36px 0 64px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-mark {
  width: clamp(142px, 15vw, 216px);
  height: clamp(142px, 15vw, 216px);
  margin-bottom: -12px;
  object-fit: contain;
}

.hero-brand {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
}

.slogan {
  margin: 18px 0 30px;
  color: #667286;
  font-size: clamp(10px, 1.05vw, 14px);
  line-height: 1.6;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 760;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 28px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.status-pill {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(104, 115, 134, 0.22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.48);
  color: #6d7889;
  box-shadow: 0 14px 35px rgba(31, 41, 55, 0.04);
  backdrop-filter: blur(12px);
  font-size: 10px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sunrise);
  box-shadow: 0 0 0 5px rgba(247, 181, 0, 0.10);
}

.site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a94a3;
  font-size: 9px;
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;
}

.ambient-left {
  width: 390px;
  height: 620px;
  left: -180px;
  top: 18%;
}

.ambient-right {
  width: 420px;
  height: 630px;
  right: -205px;
  top: 26%;
}

.ambient-panel {
  position: absolute;
  width: 260px;
  height: 430px;
  border-radius: 52px;
  transform: rotate(-34deg) skewY(5deg);
  filter: blur(0.15px);
}

.ambient-yellow {
  left: -35px;
  top: 120px;
  background: linear-gradient(145deg, rgba(247, 181, 0, 0.36), rgba(253, 235, 199, 0.15));
}

.ambient-sand {
  left: 115px;
  top: 5px;
  background: linear-gradient(145deg, rgba(253, 235, 199, 0.52), rgba(253, 235, 199, 0.10));
}

.ambient-sage {
  right: 120px;
  top: 145px;
  background: linear-gradient(145deg, rgba(183, 211, 166, 0.40), rgba(183, 211, 166, 0.10));
}

.ambient-green {
  right: -20px;
  top: 20px;
  background: linear-gradient(145deg, rgba(88, 191, 107, 0.34), rgba(18, 88, 69, 0.15));
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .hero { width: min(100% - 32px, 920px); }

  .site-header { min-height: 76px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 18px; }

  .development-label {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .hero { padding-top: 24px; }
  .hero-brand { font-size: clamp(36px, 11vw, 54px); }
  h1 { font-size: clamp(43px, 12vw, 64px); }

  .slogan {
    max-width: 330px;
    margin-bottom: 24px;
    letter-spacing: 0.18em;
  }

  .hero-copy {
    max-width: 520px;
    margin-top: 22px;
  }

  .ambient { opacity: 0.34; }
  .site-footer { justify-content: center; }
  .site-footer span:last-child { display: none; }
}

@media (max-width: 440px) {
  .development-label {
    max-width: 80px;
    text-align: right;
    line-height: 1.45;
  }

  .hero-mark { margin-bottom: -8px; }
}

@media (max-height: 820px) and (min-width: 761px) {
  .site-header { min-height: 72px; }
  .site-footer { min-height: 52px; }

  .hero {
    padding: 8px 0 20px;
  }

  .hero-mark {
    width: 148px;
    height: 148px;
    margin-bottom: -8px;
  }

  .hero-brand { font-size: 58px; }

  .slogan {
    margin: 14px 0 22px;
    font-size: 11px;
  }

  h1 { font-size: 66px; }

  .hero-copy {
    margin: 20px 0 22px;
    font-size: 18px;
  }

  .status-pill { min-height: 48px; }
}

@media (prefers-reduced-transparency: reduce) {
  .status-pill {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.92);
  }
}
