:root {
  color-scheme: light;
  --green: #2d5b4c;
  --green-dark: #203d34;
  --green-soft: #d9e5de;
  --cream: #f3f6ef;
  --paper: #fbfcf9;
  --ink-soft: #63736b;
  --line: #ccd9d0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--green-dark);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.9), transparent 32rem),
    linear-gradient(135deg, #edf3eb 0%, #f7f4ea 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.launch-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 4vw, 3.5rem);
}

.launch-card {
  position: relative;
  width: min(1120px, 100%);
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(251, 252, 249, 0.92);
  box-shadow: 0 1.8rem 5rem rgba(33, 61, 52, 0.12);
}

.launch-card::after {
  position: absolute;
  top: -8rem;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  border: 2.5rem solid rgba(45, 91, 76, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 4px solid var(--green);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
}

.brand-copy small {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-copy {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: clamp(4rem, 10vh, 7.5rem) 0 clamp(3rem, 7vh, 5rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.introduction {
  max-width: 43rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.65;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.75rem 0 0;
  color: var(--green);
  font-weight: 800;
}

.launch-note span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.45rem var(--green-soft);
}

.product-notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-notes li {
  display: grid;
  gap: 0.55rem;
  min-height: 9rem;
  align-content: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.55);
}

.product-notes strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.product-notes span {
  color: var(--ink-soft);
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .launch-card {
    border-radius: 1.4rem;
  }

  .launch-copy {
    margin-top: 4rem;
  }

  .product-notes {
    grid-template-columns: 1fr;
  }

  .product-notes li {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .launch-shell {
    padding: 0;
  }

  .launch-card {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
