:root {
  --pond-deep: #0a3531;
  --pond: #12564f;
  --water: #6fc4bb;
  --mist: #e8f5f1;
  --foam: #f7fcfa;
  --lily: #c6eb5a;
  --lily-deep: #9bc42a;
  --ink: #16312d;
  --ink-soft: #3d5c56;
  --sand: #ffe8c7;
  --coral: #ef5b45;
  --coral-deep: #d64530;
  --line: rgba(18, 86, 79, 0.14);
  --shadow-soft: 0 18px 50px rgba(10, 53, 49, 0.16);
  --radius: 1.25rem;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(198, 235, 90, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 8%, rgba(111, 196, 187, 0.35), transparent 50%),
    linear-gradient(180deg, var(--foam) 0%, var(--mist) 48%, #dff0ea 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
.brand-mark,
.wordmark,
.step-num {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pond-deep);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 252, 250, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 252, 250, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.wordmark-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  box-shadow: 0 4px 14px rgba(18, 86, 79, 0.18);
}

.wordmark span {
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.2rem;
}

.nav {
  display: flex;
  gap: 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--lily-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.7rem;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  background: var(--pond);
  color: white;
}

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 10px 24px rgba(239, 91, 69, 0.28);
}

.btn-primary:hover {
  background: var(--coral-deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: white;
  border-color: rgba(18, 86, 79, 0.28);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(5.5rem, 10vw, 7rem) 0 0;
  min-height: min(100svh, 980px);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-backdrop-img {
  position: absolute;
  inset: -8% -4%;
  width: 108%;
  height: 116%;
  object-fit: cover;
  filter: blur(18px) saturate(1.15);
  transform: scale(1.08);
  animation: hero-drift 22s var(--ease) infinite alternate;
}

.hero-backdrop-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(198, 235, 90, 0.42), transparent 58%),
    radial-gradient(700px 420px at 88% 18%, rgba(111, 196, 187, 0.38), transparent 55%),
    linear-gradient(180deg, rgba(247, 252, 250, 0.72) 0%, rgba(247, 252, 250, 0.92) 52%, rgba(232, 245, 241, 0.98) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(18, 86, 79, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 86, 79, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: 2.5rem;
}

.hero-copy {
  max-width: 38rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pond);
  animation: rise-in 0.8s var(--ease) both;
}

.hero-eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(239, 91, 69, 0.18);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  animation: rise-in 0.8s var(--ease) 0.08s both;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(120deg, var(--pond) 0%, #1f7a70 45%, var(--lily-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.15em;
}

.hero-lede {
  margin: 1.25rem 0 0;
  max-width: 36ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
  animation: rise-in 0.8s var(--ease) 0.16s both;
}

.hero-stats {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  animation: rise-in 0.8s var(--ease) 0.22s both;
}

.hero-stats li {
  padding: 0.85rem 0.95rem;
  border-radius: calc(var(--radius) - 0.15rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(10, 53, 49, 0.06);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-stats span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  animation: rise-in 0.8s var(--ease) 0.28s both;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  animation: rise-in 1s var(--ease) 0.18s both;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.35rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  background: white;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 8% 0 0 12%;
  aspect-ratio: 4 / 3;
  animation: hero-card-float 7s ease-in-out infinite alternate;
}

.hero-card-character {
  width: min(48%, 220px);
  aspect-ratio: 3 / 4;
  left: -2%;
  bottom: 2%;
  z-index: 2;
  border-radius: 1.75rem;
  animation: hero-card-float 6s ease-in-out 0.6s infinite alternate-reverse;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--pond);
  animation: rise-in 0.9s var(--ease) both;
}

.brand-mark-dark {
  color: var(--pond);
  text-shadow: none;
}

/* Strip */
.strip {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.strip-grid {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.strip-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pond);
}

.strip-text {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.overview-copy h2,
.modes-copy h2,
.verdict h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
}

.section-head p,
.overview-copy p,
.modes-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.overview-copy p + p {
  margin-top: 1rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.overview-figure {
  margin: 0;
}

.overview-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) + 0.5rem);
  box-shadow: var(--shadow-soft);
}

.overview-figure figcaption,
.gallery-layout figcaption {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.steps li {
  padding: 0;
  border-top: 2px solid var(--pond);
  padding-top: 1.25rem;
}

.step-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lily-deep);
  margin-bottom: 0.85rem;
}

.steps h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

/* Scene break */
.scene-break {
  padding-top: 0;
  padding-bottom: 0;
}

.scene-break-media {
  width: min(1280px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 0;
}

.scene-break-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  animation: gentle-float 10s ease-in-out infinite alternate;
}

/* Gallery */
.gallery {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55) 20%, rgba(255, 255, 255, 0.55) 80%, transparent);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.15rem;
}

.gallery-layout figure {
  margin: 0;
}

.gallery-layout img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.gallery-hero img {
  min-height: 100%;
  aspect-ratio: 4 / 5;
}

.gallery-side {
  display: grid;
  gap: 1.15rem;
}

.gallery-side img {
  aspect-ratio: 16 / 11;
}

/* Modes */
.modes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.mode-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mode-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.mode-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.mode-list span {
  color: var(--ink-soft);
}

/* Verdict */
.verdict-panel {
  background:
    radial-gradient(600px 280px at 0% 0%, rgba(198, 235, 90, 0.35), transparent 55%),
    linear-gradient(145deg, #ffffff 0%, #eef8f4 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.75rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.verdict-panel > p {
  color: var(--ink-soft);
  max-width: 54ch;
}

.verdict-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.verdict-points p {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--lily-deep);
  color: var(--ink-soft);
}

.verdict-points strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  margin-bottom: 0.15rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0 0.9rem;
}

summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  list-style: none;
  padding: 0.55rem 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--pond);
  font-weight: 700;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0.25rem 0 0.35rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  background: var(--pond-deep);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer .wordmark span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-note {
  max-width: 42ch;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--lily);
}

.footer-legal {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal a:hover {
  color: var(--lily);
}

/* Legal pages */
.legal-page {
  background: var(--foam);
}

.legal-main {
  padding: 7rem 0 4rem;
  max-width: 760px;
}

.legal-main h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.legal-updated {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-main section {
  margin-bottom: 1.75rem;
}

.legal-main h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
}

.legal-main ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-main a {
  color: var(--pond);
  font-weight: 600;
}

.legal-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-back a {
  font-weight: 700;
  color: var(--pond);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.2%, -1.2%, 0);
  }
}

@keyframes hero-card-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes gentle-float {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.05) translateY(-1.2%);
  }
}

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

  .strip-grid,
  .overview-grid,
  .steps,
  .gallery-layout,
  .modes-grid,
  .mode-list li,
  .hero-layout,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .gallery-hero img {
    aspect-ratio: 16 / 11;
    min-height: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 0.5rem;
  }

  .hero-card-main {
    inset: 4% 0 0 8%;
  }

  .hero-card-character {
    width: min(42%, 180px);
    left: 0;
    bottom: 0;
  }
}

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

  .hero-backdrop-img,
  .hero-card-main,
  .hero-card-character,
  .scene-break-media img,
  .reveal,
  .hero-eyebrow,
  .hero-title,
  .hero-lede,
  .hero-stats,
  .hero-actions,
  .hero-visual,
  .brand-mark {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
