:root {
  --ink: #102a1c;
  --ink-soft: #2a3a2f;
  --muted: #5a6a5d;
  --paper: #f7f4ec;
  --paper-warm: #fbf8ef;
  --line: rgba(34, 134, 54, 0.16);
  --green: #3ab54a;
  --green-deep: #1f7a32;
  --green-ink: #0e3a1c;
  --green-soft: #e3f3e2;
  --red: #ee1c25;
  --red-deep: #c01821;
  --yellow: #fdee21;
  --yellow-soft: #fff7a8;
  --shadow: 0 24px 70px rgba(15, 58, 28, 0.14);
  --shadow-card: 0 30px 80px rgba(15, 58, 28, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(58, 181, 74, 0.08), transparent 28%),
    radial-gradient(circle at 6% 92%, rgba(58, 181, 74, 0.06), transparent 30%),
    linear-gradient(180deg, #faf7ee 0%, #f5f1e3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(15, 58, 28, 0.05) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(15, 58, 28, 0.05) 100%);
  background-size: 56px 56px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 75%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 75%);
  opacity: 0.65;
}

.page-shell {
  position: relative;
  padding: 40px 24px 56px;
  overflow: hidden;
}

.page-noise {
  display: none;
}

.site-header {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto 28px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(15, 58, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-tagline {
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.site-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(58, 181, 74, 0.22);
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(58, 181, 74, 0.22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(58, 181, 74, 0);
  }
}

.hero,
.content-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: clamp(32px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--paper-warm) 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  bottom: 0;
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 60%, var(--yellow) 60%, var(--yellow) 80%, var(--red) 80%);
  transform: translateY(50%);
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 28, 37, 0.18);
}

.hero-copy h1,
.story-panel h2,
.countdown-card h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  line-height: 0.98;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, var(--yellow-soft) 62%);
  padding: 0 0.06em;
}

.lede,
.story-panel p,
.feature-list p,
.launch-note {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.lede {
  max-width: 56ch;
  margin: 28px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(34, 134, 54, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-deep);
  box-shadow: 0 20px 44px rgba(34, 134, 54, 0.34);
}

.button-secondary {
  border-color: rgba(15, 58, 28, 0.18);
  background: #ffffff;
  color: var(--green-ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.countdown-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: var(--green-ink);
  background-image:
    radial-gradient(circle at 18% 16%, rgba(253, 238, 33, 0.42), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(238, 28, 37, 0.32), transparent 34%),
    radial-gradient(circle at 50% 96%, rgba(58, 181, 74, 0.55), transparent 50%),
    linear-gradient(140deg, #1f7a32 0%, #0e3a1c 60%, #1f7a32 100%);
  background-size: 220% 220%, 220% 220%, 220% 220%, 220% 220%;
  animation: countdown-gradient 18s ease-in-out infinite alternate;
  color: #f4fbe9;
  box-shadow: var(--shadow-card);
}

.countdown-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.card-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(244, 251, 233, 0.92);
}

.card-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(253, 238, 33, 0.22);
}

.countdown-card h2 {
  position: relative;
  margin: 0 0 24px;
  max-width: 11ch;
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  line-height: 1.02;
  color: #ffffff;
}

.countdown-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.time-block {
  position: relative;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.time-value {
  display: block;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.time-label {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 251, 233, 0.72);
}

.launch-note {
  position: relative;
  margin: 22px 0 0;
  color: rgba(244, 251, 233, 0.86);
}

.launch-note #launch-date {
  color: var(--yellow);
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 32px;
}

.story-panel,
.feature-list {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.story-panel h2 {
  max-width: 16ch;
  font-size: clamp(2.15rem, 4.4vw, 3.55rem);
  line-height: 1.02;
}

.story-panel p {
  max-width: 58ch;
  margin: 22px 0 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper-warm);
}

.feature-list article {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.feature-list article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.85;
}

.feature-list article:nth-child(2)::after {
  background: var(--yellow);
}

.feature-list article:nth-child(3)::after {
  background: var(--red);
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.feature-list h3 {
  margin: 16px 0 10px;
  font-size: 1.08rem;
  color: var(--ink);
}

.feature-list p {
  margin: 0;
  font-size: 0.92rem;
}

.hero-copy,
.countdown-card,
.story-panel,
.feature-list {
  animation: rise 900ms ease both;
}

.countdown-card {
  animation: rise 900ms ease both, countdown-gradient 18s ease-in-out infinite alternate;
  animation-delay: 110ms, 0ms;
}

.story-panel {
  animation-delay: 180ms;
}

.feature-list {
  animation-delay: 260ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes countdown-gradient {
  0% {
    background-position: 14% 18%, 86% 22%, 50% 96%, 0% 50%;
  }

  50% {
    background-position: 28% 30%, 70% 14%, 56% 80%, 100% 50%;
  }

  100% {
    background-position: 10% 22%, 90% 28%, 44% 96%, 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .countdown-card,
  .hero-copy,
  .story-panel,
  .feature-list {
    animation: none !important;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 22px;
  }

  .hero-copy {
    padding: clamp(28px, 4vw, 48px);
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 6vw, 4.8rem);
  }

  .story-panel h2 {
    max-width: 100%;
    font-size: clamp(2rem, 4vw, 3.15rem);
  }

  .feature-list article {
    padding: 20px;
  }
}

@media (max-width: 980px) {
  .hero,
  .content-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 18px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 7vw, 4.1rem);
  }

  .story-panel h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 5.2vw, 2.9rem);
  }

  .countdown-card h2 {
    max-width: 100%;
    font-size: clamp(1.7rem, 4.2vw, 2.35rem);
  }

  .lede,
  .story-panel p,
  .feature-list p,
  .launch-note {
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-height: 50px;
    padding: 0 20px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 24px 16px 36px;
  }

  .hero-copy,
  .countdown-card,
  .story-panel,
  .feature-list {
    padding: 26px;
    border-radius: 24px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9vw, 3.2rem);
    line-height: 1;
  }

  .lede,
  .story-panel p,
  .feature-list p,
  .launch-note {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .story-panel h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1;
  }

  .countdown-card h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.2vw, 2.05rem);
  }

  .time-value {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .feature-list h3 {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px 14px 28px;
  }

  .site-header {
    border-radius: 22px;
    padding: 12px 14px;
    gap: 10px;
  }

  .brand-mark {
    height: 44px;
  }

  .site-status {
    display: none;
  }

  .hero-copy,
  .countdown-card,
  .story-panel,
  .feature-list {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 10.5vw, 2.7rem);
    max-width: 100%;
  }

  .eyebrow,
  .section-label,
  .card-kicker {
    margin-bottom: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
  }

  .lede,
  .story-panel p,
  .feature-list p,
  .launch-note {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .story-panel h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.5vw, 2.1rem);
  }

  .countdown-card h2 {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: clamp(1.45rem, 7.5vw, 1.85rem);
  }

  .countdown-grid {
    gap: 10px;
  }

  .time-block {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .time-value {
    font-size: clamp(1.55rem, 10vw, 2.15rem);
  }

  .time-label {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .feature-list article {
    padding: 18px;
  }

  .feature-list h3 {
    margin-top: 14px;
    font-size: 0.96rem;
  }

  .feature-list p {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding: 14px 12px 24px;
  }

  .hero-copy,
  .countdown-card,
  .story-panel,
  .feature-list {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 9.2vw, 2.15rem);
    max-width: 100%;
    letter-spacing: -0.02em;
  }

  .story-panel h2 {
    max-width: 100%;
    font-size: clamp(1.48rem, 8vw, 1.82rem);
  }

  .countdown-card h2 {
    max-width: 100%;
    font-size: clamp(1.3rem, 6.8vw, 1.6rem);
  }

  .time-value {
    font-size: clamp(1.35rem, 9vw, 1.8rem);
  }

  .lede,
  .story-panel p,
  .feature-list p,
  .launch-note {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}
