:root {
  color-scheme: light;
  --ink: #062820;
  --text: #14352c;
  --muted: #3d6256;
  --accent: #0d8a6a;
  --accent-deep: #06664d;
  --leaf: #2fad7a;
  --leaf-soft: rgba(47, 173, 122, 0.14);
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.16);
  --foam: #e8f6f0;
  --surface: rgba(232, 246, 240, 0.72);
  --border: rgba(6, 40, 32, 0.12);
  --border-strong: rgba(13, 138, 106, 0.35);
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Figtree", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

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

.reef {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    175deg,
    #d8f0e6 0%,
    #a8dcc8 28%,
    #3d8f78 62%,
    #1a5c4a 88%,
    #0e3d32 100%
  );
}

.reef__water {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(255, 255, 255, 0.45), transparent 55%),
    radial-gradient(ellipse 40% 30% at 12% 70%, rgba(201, 162, 39, 0.12), transparent 70%),
    radial-gradient(ellipse 50% 35% at 88% 40%, rgba(47, 173, 122, 0.2), transparent 65%);
}

.reef__shaft {
  position: absolute;
  top: -10%;
  width: 18%;
  height: 120%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 100%
  );
  filter: blur(8px);
  transform-origin: top center;
  animation: shaft-sway 12s ease-in-out infinite;
}

.reef__shaft--1 {
  left: 18%;
  transform: skewX(-12deg);
  animation-delay: 0s;
}

.reef__shaft--2 {
  left: 42%;
  width: 14%;
  opacity: 0.7;
  transform: skewX(-8deg);
  animation-delay: -4s;
  animation-duration: 15s;
}

.reef__shaft--3 {
  left: 68%;
  width: 12%;
  opacity: 0.55;
  transform: skewX(-14deg);
  animation-delay: -7s;
  animation-duration: 18s;
}

.reef__kelp {
  position: absolute;
  bottom: -8%;
  width: 28%;
  height: 55%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 64, 48, 0.35) 40%,
    rgba(4, 40, 32, 0.55) 100%
  );
  border-radius: 60% 40% 0 0 / 30% 30% 0 0;
  filter: blur(2px);
  animation: kelp-drift 16s ease-in-out infinite;
}

.reef__kelp--l {
  left: -6%;
  transform-origin: bottom center;
}

.reef__kelp--r {
  right: -8%;
  width: 22%;
  height: 48%;
  animation-duration: 20s;
  animation-direction: reverse;
  transform-origin: bottom center;
}

.reef__mote {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  animation: mote-drift linear infinite;
}

.reef__mote--1 {
  left: 15%;
  bottom: 10%;
  animation-duration: 18s;
}

.reef__mote--2 {
  left: 35%;
  bottom: 5%;
  width: 3px;
  height: 3px;
  animation-duration: 22s;
  animation-delay: 3s;
}

.reef__mote--3 {
  left: 55%;
  bottom: 18%;
  width: 5px;
  height: 5px;
  animation-duration: 16s;
  animation-delay: 1s;
}

.reef__mote--4 {
  left: 72%;
  bottom: 8%;
  animation-duration: 24s;
  animation-delay: 5s;
}

.reef__mote--5 {
  left: 88%;
  bottom: 22%;
  width: 3px;
  height: 3px;
  animation-duration: 20s;
  animation-delay: 2s;
}

@keyframes shaft-sway {
  0%,
  100% {
    opacity: 0.55;
    transform: skewX(-12deg) translateX(0);
  }
  50% {
    opacity: 0.85;
    transform: skewX(-10deg) translateX(12px);
  }
}

@keyframes kelp-drift {
  0%,
  100% {
    transform: rotate(-2deg) skewX(0deg);
  }
  50% {
    transform: rotate(3deg) skewX(2deg);
  }
}

@keyframes mote-drift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-85vh) translateX(30px);
    opacity: 0;
  }
}

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

@keyframes glass-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
}

.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__glass {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  color: var(--foam);
  background: linear-gradient(145deg, rgba(13, 138, 106, 0.95) 0%, rgba(6, 102, 77, 0.98) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px 16px 24px 18px;
  box-shadow:
    0 18px 40px rgba(6, 40, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: glass-pulse 6s ease-in-out infinite, rise-in 0.75s ease 0.06s both;
}

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

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 4.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(232, 246, 240, 0.35);
}

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

.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.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  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-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

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

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

.pillars li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 3px;
}

.pillars li:nth-child(1)::before {
  background: var(--leaf);
}

.pillars li:nth-child(2)::before {
  background: var(--gold);
}

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

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

.pillars 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) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    text-align: center;
  }
}

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

  .hero {
    padding-top: 36px;
  }

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

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

  .section {
    padding: 22px 0;
  }
}
