:root {
  --deep-green: #123d2a;
  --forest-green: #1f6b45;
  --fresh-green: #39a96b;
  --mint-green: #bfe8cf;
  --pale-mint: #eaf7ef;
  --soft-cream: #f7f2e7;
  --warm-white: #fffdf8;
  --charcoal: #18201b;
  --muted: #657168;
  --line: rgba(18, 61, 42, 0.12);
  --shadow: 0 22px 60px rgba(18, 61, 42, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--warm-white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--deep-green);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--soft-cream);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-green);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--warm-white);
  background: var(--deep-green);
  border-radius: 13px;
  place-items: center;
}

.brand-mark svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.domain-link {
  padding-bottom: 3px;
  color: var(--forest-green);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

.domain-link:hover {
  color: var(--fresh-green);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 61, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 61, 42, 0.035) 1px, transparent 1px),
    var(--soft-cream);
  background-size: 48px 48px;
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(31, 107, 69, 0.15);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 72px;
  min-height: 690px;
  padding-block: 74px 84px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--forest-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--fresh-green);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--deep-green);
  font-size: clamp(50px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.03;
}

h1 em {
  position: relative;
  z-index: 1;
  font-style: normal;
}

h1 em::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 4px;
  left: -4px;
  height: 14px;
  background: var(--mint-green);
  border-radius: 8px 4px;
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: #4e5b52;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-primary {
  color: white;
  background: var(--deep-green);
  box-shadow: 0 12px 28px rgba(18, 61, 42, 0.2);
}

.button-primary:hover {
  background: var(--forest-green);
  box-shadow: 0 16px 32px rgba(18, 61, 42, 0.25);
  transform: translateY(-2px);
}

.button:focus-visible,
.domain-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(57, 169, 107, 0.35);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.wait-note {
  color: var(--forest-green);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
}

.status-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 29px 0 0;
  color: #69756c;
  font-size: 13px;
}

.status-note svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--fresh-green);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: -180px;
  left: -150px;
  width: 430px;
  height: 430px;
  background: rgba(191, 232, 207, 0.46);
}

.hero-glow-two {
  right: 9%;
  bottom: -190px;
  width: 450px;
  height: 450px;
  background: rgba(57, 169, 107, 0.1);
}

.hero-art {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(31, 107, 69, 0.14);
  border-radius: 50% 50% 46% 54% / 52% 48% 52% 48%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 45%),
    rgba(191, 232, 207, 0.38);
}

.art-orbit {
  position: absolute;
  border: 1px dashed rgba(31, 107, 69, 0.2);
  border-radius: 50%;
}

.orbit-one {
  inset: 42px;
}

.orbit-two {
  inset: 100px 60px;
  transform: rotate(32deg);
}

.parcel-stack {
  position: absolute;
  right: 42px;
  bottom: 50px;
  left: 38px;
  height: 365px;
}

.parcel {
  position: absolute;
  border: 2px solid var(--deep-green);
  box-shadow: 12px 17px 0 rgba(18, 61, 42, 0.08);
}

.parcel-back {
  top: 23px;
  left: 25px;
  width: 218px;
  height: 210px;
  background: #d8ead6;
  transform: rotate(-8deg);
}

.parcel-front {
  right: 18px;
  bottom: 5px;
  width: 248px;
  height: 252px;
  background: #f5d79f;
  transform: rotate(4deg);
}

.tape {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 54px;
  height: 100%;
  background: rgba(255, 253, 248, 0.45);
  border-right: 1px solid rgba(18, 61, 42, 0.16);
  border-left: 1px solid rgba(18, 61, 42, 0.16);
  transform: translateX(-50%);
}

.parcel-lines {
  position: absolute;
  right: 24px;
  bottom: 30px;
  width: 54px;
  height: 38px;
  border-top: 2px solid var(--forest-green);
  border-bottom: 2px solid var(--forest-green);
}

.parcel-logo {
  position: absolute;
  top: 73px;
  left: 38px;
  display: grid;
  width: 64px;
  height: 64px;
  color: white;
  background: var(--deep-green);
  border-radius: 50%;
  place-items: center;
}

.parcel-logo svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.parcel-label {
  position: absolute;
  right: 31px;
  bottom: 31px;
  color: var(--deep-green);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: right;
}

.delivery-tag {
  position: absolute;
  z-index: 3;
  top: 63px;
  right: -18px;
  display: flex;
  width: 210px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: white;
  border: 1px solid rgba(31, 107, 69, 0.13);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  transform: rotate(2deg);
}

.delivery-tag svg {
  width: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--fresh-green);
  stroke-width: 1.7;
}

.delivery-tag strong {
  display: block;
  color: var(--deep-green);
  font-size: 12px;
}

.sparkle {
  position: absolute;
  color: var(--fresh-green);
  font-size: 22px;
}

.sparkle-one {
  top: 112px;
  left: 32px;
}

.sparkle-two {
  right: 8px;
  bottom: 130px;
  color: #d0a13b;
  font-size: 15px;
}

.section {
  padding-block: 110px;
}

.coming {
  background: var(--warm-white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

h2 {
  margin-bottom: 0;
  color: var(--deep-green);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  background: #f5f8f4;
  border: 1px solid rgba(18, 61, 42, 0.08);
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: 0 18px 40px rgba(18, 61, 42, 0.08);
  transform: translateY(-5px);
}

.feature-card::after {
  position: absolute;
  right: -40px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  background: rgba(191, 232, 207, 0.4);
  border-radius: 50%;
  content: "";
}

.feature-card-accent {
  background: var(--deep-green);
}

.feature-card-accent::after {
  background: rgba(191, 232, 207, 0.09);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 47px;
  color: var(--forest-green);
  background: var(--mint-green);
  border-radius: 15px;
  place-items: center;
}

.icon-box svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feature-card-accent .icon-box {
  color: var(--deep-green);
  background: var(--warm-white);
}

.card-number {
  position: absolute;
  top: 31px;
  right: 28px;
  color: rgba(18, 61, 42, 0.32);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card-accent .card-number {
  color: rgba(255, 255, 255, 0.4);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--deep-green);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.feature-card-accent h3 {
  color: white;
}

.feature-card-accent p {
  color: rgba(255, 255, 255, 0.7);
}

.delivery {
  padding-top: 0;
}

.delivery-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  align-items: center;
  min-height: 390px;
  padding: 64px 90px 64px 70px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 7% 50%, rgba(57, 169, 107, 0.32), transparent 32%),
    var(--deep-green);
  border-radius: var(--radius-lg);
}

.delivery-panel::before {
  position: absolute;
  right: -75px;
  bottom: -100px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.delivery-visual {
  position: relative;
  z-index: 1;
}

.delivery-visual svg {
  width: 260px;
  max-width: 90%;
  overflow: visible;
}

.delivery-visual circle {
  fill: var(--fresh-green);
}

.map-line {
  fill: none;
  stroke: rgba(191, 232, 207, 0.38);
  stroke-dasharray: 3 4;
  stroke-linecap: round;
  stroke-width: 1.3;
}

.delivery-visual .pin {
  fill: var(--mint-green);
  stroke: var(--deep-green);
  stroke-width: 1.5;
}

.delivery-visual .pin-center {
  fill: var(--deep-green);
}

.delivery-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow.light {
  color: var(--mint-green);
}

.delivery-copy h2 {
  color: white;
}

.delivery-copy > p:last-child {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.delivery-stamp {
  position: absolute;
  right: 43px;
  bottom: 37px;
  display: grid;
  width: 96px;
  height: 96px;
  border: 1px dashed rgba(191, 232, 207, 0.4);
  border-radius: 50%;
  place-items: center;
  transform: rotate(-12deg);
}

.delivery-stamp span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
}

.delivery-stamp strong {
  color: var(--mint-green);
  font-size: 15px;
}

.updates {
  background: var(--pale-mint);
}

.updates-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.updates-copy p:last-child {
  max-width: 470px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.waitlist-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 61, 42, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(18, 61, 42, 0.07);
}

.waitlist-button {
  width: 100%;
}

.secure-form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 17px 0 0;
  color: var(--forest-green);
  font-size: 13px;
  font-weight: 600;
}

.secure-form-note svg {
  width: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy-reassurance {
  margin: 12px 0 0;
  color: #748078;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #0d2c1e;
}

.footer-inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p span {
  padding-inline: 6px;
  color: var(--fresh-green);
}

.footer-inner a {
  color: var(--mint-green);
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 60px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    width: min(100%, 560px);
    min-height: 490px;
    margin-inline: auto;
  }

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

  .delivery-panel {
    grid-template-columns: 0.46fr 1fr;
    padding: 55px;
  }

  .delivery-stamp {
    display: none;
  }

  .updates-inner {
    gap: 55px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    font-size: 16px;
  }

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

  .domain-link {
    font-size: 12px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 55px 70px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .status-note {
    align-items: flex-start;
    line-height: 1.55;
  }

  .hero-art {
    min-height: 400px;
  }

  .parcel-stack {
    right: 19px;
    bottom: 34px;
    left: 10px;
    height: 300px;
  }

  .parcel-back {
    width: 175px;
    height: 175px;
  }

  .parcel-front {
    width: 205px;
    height: 205px;
  }

  .parcel-logo {
    top: 59px;
    left: 29px;
    width: 52px;
    height: 52px;
  }

  .parcel-logo svg {
    width: 34px;
  }

  .parcel-label {
    right: 23px;
    bottom: 25px;
    font-size: 9px;
  }

  .delivery-tag {
    top: 30px;
    right: 8px;
    width: 185px;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

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

  .feature-card {
    min-height: 225px;
  }

  .icon-box {
    margin-bottom: 30px;
  }

  .delivery {
    padding-top: 0;
  }

  .delivery-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 45px 30px;
  }

  .delivery-visual svg {
    width: 150px;
  }

  .updates-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .waitlist-card {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .brand span:last-child {
    font-size: 14px;
  }

  .domain-link {
    font-size: 11px;
  }

  .hero-art {
    min-height: 360px;
  }

  .delivery-tag {
    width: 168px;
    padding: 12px;
  }

  .parcel-stack {
    transform: scale(0.88);
    transform-origin: bottom center;
  }
}

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

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