:root {
  color-scheme: light;
  --ink: #102a32;
  --text: #1a3540;
  --muted: #4a6a72;
  --accent: #1b8f7a;
  --accent-deep: #0f5e52;
  --ice: #5ec8c0;
  --ice-soft: rgba(94, 200, 192, 0.16);
  --sage: #7cb89a;
  --sage-soft: rgba(124, 184, 154, 0.2);
  --paper: #f3faf8;
  --surface: rgba(243, 250, 248, 0.82);
  --border: rgba(16, 42, 50, 0.12);
  --border-strong: rgba(27, 143, 122, 0.38);
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Outfit", "Avenir Next", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0d2c34;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.chill {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    172deg,
    #f7fcfb 0%,
    #d5eee8 22%,
    #8ec9c4 48%,
    #3a7d82 76%,
    #14343c 100%
  );
}

.chill__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 42% at 50% -6%, rgba(255, 255, 255, 0.62), transparent 58%),
    radial-gradient(ellipse 36% 28% at 12% 68%, rgba(94, 200, 192, 0.22), transparent 70%),
    radial-gradient(ellipse 42% 30% at 90% 32%, rgba(27, 143, 122, 0.18), transparent 66%);
}

.chill__frost {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.45) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 76%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px);
  background-size: 42px 42px, 64px 64px, 36px 36px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 70%, transparent 100%);
}

.chill__shelves {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 54px,
    rgba(16, 42, 50, 0.32) 54px,
    rgba(16, 42, 50, 0.32) 56px
  );
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

.chill__handle {
  position: absolute;
  top: 12%;
  right: 7%;
  width: 10px;
  height: 38%;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(16, 42, 50, 0.18));
  box-shadow: 0 8px 24px rgba(16, 42, 50, 0.12);
  opacity: 0.45;
}

.chill__drop {
  position: absolute;
  width: 6px;
  height: 8px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 8px rgba(94, 200, 192, 0.4);
  animation: drop-fall linear infinite;
}

.chill__drop--1 {
  left: 16%;
  top: 8%;
  animation-duration: 11s;
}

.chill__drop--2 {
  left: 34%;
  top: 4%;
  width: 4px;
  height: 6px;
  animation-duration: 15s;
  animation-delay: 1.4s;
}

.chill__drop--3 {
  left: 52%;
  top: 10%;
  animation-duration: 13s;
  animation-delay: 2.2s;
}

.chill__drop--4 {
  left: 68%;
  top: 6%;
  width: 5px;
  height: 7px;
  animation-duration: 17s;
  animation-delay: 0.8s;
}

.chill__drop--5 {
  left: 81%;
  top: 12%;
  width: 4px;
  height: 6px;
  animation-duration: 12s;
  animation-delay: 3s;
}

.chill__drop--6 {
  left: 24%;
  top: 2%;
  width: 3px;
  height: 5px;
  animation-duration: 19s;
  animation-delay: 4s;
}

@keyframes drop-fall {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(78vh) scale(0.7);
    opacity: 0;
  }
}

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

@keyframes mark-hum {
  0%,
  100% {
    transform: rotate(-1.5deg) translateY(0);
  }
  50% {
    transform: rotate(1.5deg) translateY(-4px);
  }
}

.page {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.hero {
  margin-bottom: 40px;
  padding: 52px 0 0;
  animation: rise-in 0.7s ease both;
}

.hero__mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  color: var(--paper);
  background: linear-gradient(145deg, #3db8aa 0%, #147a6e 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px 18px 14px 14px;
  box-shadow:
    0 16px 36px rgba(16, 42, 50, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: mark-hum 8s ease-in-out infinite, rise-in 0.75s ease 0.06s both;
}

.hero__mark svg {
  width: 44px;
  height: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.2vw, 4.4rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-shadow: 0 2px 20px rgba(243, 250, 248, 0.4);
}

.tagline {
  margin: 22px 0 0;
  max-width: 42ch;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.hero__policy {
  margin-top: 40px;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  animation: rise-in 0.75s ease 0.18s both;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.lead {
  margin: 12px 0 0;
  max-width: 48ch;
  font-size: 0.98rem;
  color: var(--muted);
}

.updated {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--ice);
  padding-bottom: 3px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  margin: 0 0 48px;
  padding: 32px 0;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  animation: rise-in 0.75s ease 0.28s both;
}

.facts li {
  position: relative;
  padding-top: 18px;
}

.facts li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 3px;
  border-radius: 2px;
}

.facts li:nth-child(1)::before {
  background: var(--ice);
}

.facts li:nth-child(2)::before {
  background: var(--sage);
}

.facts li:nth-child(3)::before {
  background: var(--accent-deep);
}

.facts strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.facts span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.sections {
  animation: rise-in 0.75s ease 0.36s both;
}

.section {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.22s ease;
}

.section:hover {
  padding-left: 10px;
}

.section h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.section p {
  margin: 0;
  max-width: 60ch;
  font-size: 0.94rem;
  color: var(--muted);
}

.section p + p {
  margin-top: 10px;
}

a {
  color: var(--accent);
  font-weight: 600;
}

a:hover {
  color: var(--accent-deep);
}

.footer {
  margin-top: 12px;
  padding: 36px 0 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

@media (max-width: 720px) {
  .facts {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    text-align: center;
  }

  .chill__handle {
    display: none;
  }
}

@media (max-width: 480px) {
  .page {
    width: min(820px, calc(100% - 24px));
    padding: 28px 0 48px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero__mark {
    width: 64px;
    height: 64px;
  }

  .hero__mark svg {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 22px 0;
  }
}
