* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #173f22;
  --forest-2: #245b2e;
  --leaf: #4e8a37;
  --lime: #7bb14a;
  --gold: #85611e;
  --cream: #f7f4ea;
  --ink: #1f2c22;
  --white: #ffffff;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(123,177,74,.17), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(133,97,30,.12), transparent 28%),
    linear-gradient(135deg, #fbfcf7 0%, #f1f6ea 55%, #fbf8ef 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(23,63,34,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,63,34,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

.topbar {
  width: min(1180px, calc(100% - 42px));
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(78,138,55,.12);
}

.top-note {
  opacity: .72;
  font-size: 11px;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 30px 18px 26px;
  position: relative;
  z-index: 2;
}

.content-card {
  width: min(920px, 100%);
  text-align: center;
  padding: 44px 54px 36px;
  border: 1px solid rgba(23,63,34,.10);
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  box-shadow:
    0 30px 80px rgba(34,67,35,.12),
    inset 0 1px 0 rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,177,74,.15), transparent 68%);
  left: -150px;
  top: -120px;
}

.content-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133,97,30,.10), transparent 68%);
  right: -130px;
  bottom: -120px;
}

.logo-wrap,
.eyebrow,
h1,
.intro,
.plantation-visual,
.divider,
.countdown,
.launch-note {
  position: relative;
  z-index: 2;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.main-logo {
  width: min(690px, 94%);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 22px rgba(23,63,34,.08));
}

.eyebrow {
  margin-top: 6px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--forest);
  font-size: clamp(42px, 6vw, 70px);
  line-height: .96;
  margin: 14px auto 14px;
  max-width: 780px;
  font-weight: 700;
}

h1 span {
  color: var(--gold);
  white-space: nowrap;
}

.intro {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 15px;
  color: #536157;
}

.intro strong {
  color: var(--forest);
}

.plantation-visual {
  width: 155px;
  height: 120px;
  margin: 22px auto 2px;
}

.soil {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 22px;
  background: #6a4c21;
  border-radius: 50% 50% 38% 38%;
  box-shadow: inset 0 7px 0 rgba(255,255,255,.09);
}

.seed-glow {
  position: absolute;
  width: 52px;
  height: 20px;
  left: 52px;
  bottom: 19px;
  background: rgba(123,177,74,.15);
  filter: blur(8px);
  border-radius: 50%;
}

.stem {
  position: absolute;
  width: 5px;
  height: 74px;
  left: 75px;
  bottom: 30px;
  background: linear-gradient(#4f8f39, #245b2e);
  border-radius: 8px;
  transform-origin: bottom;
  animation: growStem 1.6s ease-out both;
}

.branch {
  position: absolute;
  width: 44px;
  height: 4px;
  background: #397437;
  border-radius: 10px;
  bottom: 72px;
  transform-origin: center left;
}

.branch-left {
  left: 77px;
  transform: rotate(210deg);
}

.branch-right {
  left: 76px;
  transform: rotate(-28deg);
}

.sprout-leaf {
  position: absolute;
  width: 47px;
  height: 28px;
  background: linear-gradient(135deg, #76ae45, #2f6f33);
  border-radius: 100% 0 100% 0;
  bottom: 73px;
  box-shadow: 0 7px 14px rgba(50,100,50,.16);
}

.sprout-left {
  left: 32px;
  transform: rotate(18deg);
  animation: leafOpen 1.8s .3s ease-out both;
}

.sprout-right {
  right: 31px;
  transform: scaleX(-1) rotate(18deg);
  animation: leafOpenRight 1.8s .3s ease-out both;
}

.roots {
  position: absolute;
  left: 64px;
  bottom: 14px;
  width: 32px;
  height: 26px;
}

.roots span {
  position: absolute;
  width: 3px;
  height: 25px;
  background: #6b4b20;
  border-radius: 10px;
  transform-origin: top;
  top: 0;
  left: 14px;
}

.roots span:nth-child(1) { transform: rotate(38deg); }
.roots span:nth-child(2) { transform: rotate(-38deg); }
.roots span:nth-child(3) { transform: rotate(0deg); height: 20px; }

.divider {
  margin: 4px auto 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 590px;
  color: var(--gold);
}

.divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(133,97,30,.55));
}

.divider span:last-child {
  background: linear-gradient(90deg, rgba(133,97,30,.55), transparent);
}

.divider b {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .12em;
  font-size: 18px;
  font-weight: 600;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.time-box {
  padding: 16px 10px 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(23,63,34,.95), rgba(42,91,46,.92));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23,63,34,.15);
}

.time-box strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
}

.time-box span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  opacity: .76;
}

.launch-note {
  margin-top: 20px;
  color: #748076;
  font-size: 12px;
}

footer {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 0 0 22px;
  text-align: center;
  color: rgba(23,63,34,.62);
  font-size: 11px;
  letter-spacing: .05em;
  position: relative;
  z-index: 3;
}

.footer-sep {
  margin: 0 7px;
}

.leaf {
  position: fixed;
  z-index: 1;
  opacity: .22;
  filter: blur(.1px);
  animation: drift 11s ease-in-out infinite;
  user-select: none;
}

.leaf-1 { left: 4%; top: 19%; font-size: 40px; animation-delay: 0s; }
.leaf-2 { right: 5%; top: 21%; font-size: 36px; animation-delay: 1.5s; }
.leaf-3 { left: 8%; bottom: 15%; font-size: 44px; animation-delay: 3s; }
.leaf-4 { right: 9%; bottom: 13%; font-size: 34px; animation-delay: 4s; }
.leaf-5 { left: 48%; top: 6%; font-size: 28px; animation-delay: 2s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(12deg); }
}

@keyframes growStem {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes leafOpen {
  from { transform: rotate(18deg) scale(0); opacity: 0; }
  to { transform: rotate(18deg) scale(1); opacity: 1; }
}

@keyframes leafOpenRight {
  from { transform: scaleX(-1) rotate(18deg) scale(0); opacity: 0; }
  to { transform: scaleX(-1) rotate(18deg) scale(1); opacity: 1; }
}

@media (max-width: 700px) {
  .topbar {
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .top-note {
    display: none;
  }

  .hero {
    padding: 18px 12px 18px;
  }

  .content-card {
    padding: 30px 18px 28px;
    border-radius: 24px;
  }

  .main-logo {
    width: 100%;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .13em;
    line-height: 1.5;
  }

  .intro {
    font-size: 13px;
    line-height: 1.7;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-box strong {
    font-size: 30px;
  }

  .divider b {
    font-size: 15px;
  }

  footer {
    width: calc(100% - 28px);
    line-height: 1.7;
  }
}
