:root {
  --ink: #14221e;
  --ink-soft: #3a4a44;
  --paper: #eef3ef;
  --paper-deep: #e2ebe4;
  --mint: #2f6f5e;
  --mint-deep: #1a3d34;
  --peach: #e09a6b;
  --blood: #c24f3a;
  --pineapple: #d6b84a;
  --watermelon: #5a9a78;
  --focus: #2f6f5e;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(224, 154, 107, 0.18), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(47, 111, 94, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f7f4 0%, var(--paper) 40%, #e8f0ea 100%);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--mint-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--mint);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  mix-blend-mode: difference;
  color: #fff;
  animation: fade-down 0.9s var(--ease) both;
}

.logo {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f7faf8;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.06);
  animation: hero- ken 14s var(--ease) both;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(10, 22, 18, 0.78) 0%,
      rgba(10, 22, 18, 0.55) 42%,
      rgba(10, 22, 18, 0.18) 100%
    ),
    linear-gradient(to top, rgba(10, 22, 18, 0.55) 0%, transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem);
  padding: clamp(5.5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem)
    clamp(2.5rem, 8vh, 4.5rem);
  animation: fade-up 1s var(--ease) 0.15s both;
}

.brand-mark {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 16vw, 9.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  letter-spacing: 0.01em;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: rgba(247, 250, 248, 0.88);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #f3f8f4;
  color: var(--mint-deep);
}

.btn-primary:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(243, 248, 244, 0.45);
  color: #f3f8f4;
}

.btn-ghost:hover {
  border-color: #f3f8f4;
  color: #fff;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-inner {
  width: min(100%, 42rem);
  margin-inline: auto;
  animation: reveal-in 0.9s var(--ease) both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-lede,
.section-body {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-body strong {
  color: var(--ink);
  font-weight: 600;
}

.product {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35));
}

.product-spec {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(20, 34, 30, 0.12);
}

@media (min-width: 640px) {
  .product-spec {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem 2rem;
  }
}

.product-spec [role="listitem"] {
  display: grid;
  gap: 0.2rem;
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}

.spec-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

/* Flavors */
.flavors {
  background:
    linear-gradient(135deg, rgba(224, 154, 107, 0.1), transparent 40%),
    linear-gradient(225deg, rgba(47, 111, 94, 0.08), transparent 45%);
}

.flavor-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.flavor-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(20, 34, 30, 0.1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.7s var(--ease) both;
}

.flavor-list li:nth-child(1) {
  animation-delay: 0.05s;
}
.flavor-list li:nth-child(2) {
  animation-delay: 0.15s;
}
.flavor-list li:nth-child(3) {
  animation-delay: 0.25s;
}
.flavor-list li:nth-child(4) {
  animation-delay: 0.35s;
}

.flavor-list li:last-child {
  border-bottom: 0;
}

.flavor-swatch {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.swatch-peach {
  background: var(--peach);
}
.swatch-orange {
  background: var(--blood);
}
.swatch-pineapple {
  background: var(--pineapple);
}
.swatch-mint {
  background: var(--watermelon);
}

/* Waitlist */
.waitlist {
  background: var(--mint-deep);
  color: #f3f8f4;
}

.waitlist .eyebrow {
  color: var(--peach);
}

.waitlist .section-lede {
  color: rgba(243, 248, 244, 0.82);
}

.waitlist a {
  color: #fff;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0 0.85rem;
}

.waitlist-form input {
  flex: 1 1 14rem;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(243, 248, 244, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.waitlist-form input::placeholder {
  color: rgba(243, 248, 244, 0.45);
}

.waitlist-form input:focus {
  border-color: rgba(243, 248, 244, 0.75);
}

.waitlist .btn-primary {
  background: var(--peach);
  color: var(--ink);
}

.waitlist .btn-primary:hover {
  background: #ebb088;
}

.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #c8e6d8;
}

.fine-print {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(243, 248, 244, 0.55);
}

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  background: #0f1a16;
  color: rgba(243, 248, 244, 0.7);
  text-align: center;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: #fff;
}

.footer-tag {
  margin: 0.5rem 0 1.25rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 0 1.25rem;
}

.footer-links a {
  color: rgba(243, 248, 244, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(243, 248, 244, 0.4);
}

/* Motion */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ken {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }

  .flavor-list li {
    opacity: 1;
    transform: none;
  }
}
