:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --bg-warm: #fbfaf7;
  --text: #0f0f0f;
  --muted: #5b5b5b;
  --line: rgba(15, 15, 15, 0.1);
  --line-strong: rgba(15, 15, 15, 0.18);
  --tint-peach: #ffeada;
  --tint-mint: #c7ede6;
  --tint-lilac: #eadaff;
  --tint-blue: #d0e4ff;
  --tint-rose: #ffe8e8;
  --shadow: 0 24px 60px rgba(15, 15, 15, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(15, 15, 15, 0.05), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(208, 228, 255, 0.4), transparent 18%),
    radial-gradient(circle at 10% 78%, rgba(255, 234, 218, 0.34), transparent 20%),
    radial-gradient(circle at bottom right, rgba(15, 15, 15, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentle-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes reveal-float {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.04em;
}

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 8px;
  z-index: 30;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.04);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand,
.section-kicker,
.app-label {
  font-weight: 700;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.language-picker {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.language-picker select {
  min-width: 148px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  outline: none;
  cursor: pointer;
}

.hero,
.feature-section,
.support-section,
.system-section,
.moon-section {
  position: relative;
  animation: fade-up 720ms ease both;
}

.hero {
  padding: 74px 0 42px;
  animation-delay: 40ms;
}

.hero-layout {
  display: block;
}

.hero-main {
  max-width: 860px;
  padding: 14px 0 0;
}

.section-kicker {
  margin-bottom: 18px;
  font-size: 0.84rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  font-weight: 600;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin-top: 28px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 15, 15, 0.08);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.hero-panel,
.hero-metrics article,
.feature-card,
.moon-section {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.hero-panel-block {
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.03), rgba(15, 15, 15, 0.01));
}

.tint-peach {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)),
    var(--tint-peach);
}

.tint-mint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    var(--tint-mint);
}

.tint-lilac {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    var(--tint-lilac);
}

.tint-blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    var(--tint-blue);
}

.tint-rose {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    var(--tint-rose);
}

.tint-blue-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.25)),
    var(--tint-blue);
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
}

.tint-lilac-soft {
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.6), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18)),
    var(--tint-lilac);
}

.panel-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.hero-metrics article {
  display: grid;
  align-content: start;
  min-height: 184px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
}

.hero-metrics span {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 600;
  color: var(--text);
}

.feature-section,
.people-section,
.food-section,
.support-section,
.system-section {
  padding: 72px 0 10px;
  animation: fade-up 720ms ease both;
}

.feature-section {
  animation-delay: 110ms;
}

.people-section {
  animation-delay: 170ms;
}

.system-section {
  animation-delay: 230ms;
}

.food-section {
  animation-delay: 290ms;
}

.support-section {
  padding: 34px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  animation-delay: 320ms;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    var(--tint-peach);
}

.support-section h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  font-weight: 700;
}

.support-copy {
  max-width: 620px;
  margin-top: 14px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 15, 15, 0.08);
}

.feature-section,
.people-section,
.system-section {
  scroll-margin-top: 20px;
}

.people-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.people-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.people-gallery img:nth-child(3) {
  grid-column: 2;
}

.people-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #f8f6f2;
  transition: transform 900ms ease;
  transform-origin: center center;
}

.people-image-tall {
  grid-row: span 2;
  min-height: 100%;
}

.people-copy {
  padding: 26px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18)),
    var(--tint-blue);
}

.people-copy strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}

.people-copy p + p {
  margin-top: 14px;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.moon-section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 290px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
}

.feature-card-wide {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.15)),
    var(--tint-peach);
}

.app-label {
  margin-bottom: 14px;
  font-size: 0.84rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.system-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.system-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  padding: 30px 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    var(--bg-warm);
  box-shadow: var(--shadow);
}

.food-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.32fr);
  gap: 24px;
  align-items: center;
  margin-top: 12px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58)),
    var(--bg-soft);
  box-shadow: var(--shadow);
}

.food-layout-reverse {
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
}

.food-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: 460px;
}

.food-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  justify-self: center;
}

.food-screen {
  width: 100%;
  max-width: 168px;
  display: block;
  max-height: 230px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 900ms ease;
  transform-origin: center center;
}

.people-gallery {
  overflow: hidden;
  border-radius: 28px;
}

.food-preview {
  overflow: hidden;
}

.people-gallery:hover .people-image,
.food-preview:hover .food-screen {
  transform: scale(1.035);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding: 30px 20px 10px;
  text-align: center;
  animation: fade-up 720ms ease both;
  animation-delay: 390ms;
}

.site-footer p,
.site-footer a {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer a {
  font-weight: 600;
}

.moon-section {
  margin-top: 58px;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border-color: var(--line-strong);
  animation-delay: 330ms;
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.62), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    var(--tint-lilac);
}

.moon-copy {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .hero-metrics,
  .feature-list,
  .people-layout,
  .people-gallery,
  .food-layout,
  .system-layout {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: auto;
  }

  .hero-main,
  .system-copy,
  .food-copy,
  .section-heading {
    max-width: none;
  }

  .people-gallery img:nth-child(3) {
    grid-column: auto;
  }

  .people-image-tall {
    grid-row: auto;
  }

  .system-copy {
    padding-right: 0;
  }

  .site-footer {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--container));
    padding-top: 18px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    border-radius: 26px;
  }

  .header-controls {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 14px;
  }

  .language-picker {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .hero-copy,
  .moon-copy,
  p {
    font-size: 0.98rem;
  }

  .hero-panel,
  .hero-metrics article,
  .feature-card,
  .moon-section {
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 24px;
  }

  .hero-metrics article {
    min-height: auto;
  }

  .hero-panel-block {
    padding: 16px;
  }

  .people-copy {
    padding: 20px;
    border-radius: 24px;
  }

  .people-layout,
  .people-gallery {
    gap: 12px;
  }

  .people-gallery {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .people-gallery img:nth-child(3) {
    grid-column: 2;
  }

  .people-image-tall {
    grid-row: span 2;
  }

  .people-image {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .food-preview {
    padding: 0;
    border-radius: 24px;
  }

  .support-section {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .food-screen {
    border-radius: 22px;
  }

  .food-layout {
    padding: 22px;
    border-radius: 24px;
    gap: 18px;
  }

  .system-copy {
    padding: 22px;
    border-radius: 24px;
  }

  .food-layout-reverse {
    grid-template-columns: 1fr;
  }

  .feature-card h3 {
    font-size: 1.6rem;
  }

  .moon-section {
    margin-top: 46px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .feature-section,
  .people-section,
  .system-section,
  .food-section,
  .moon-section,
  .site-footer {
    animation: none;
  }

  .people-image,
  .food-screen {
    transition: none;
  }

  .people-gallery:hover .people-image,
  .food-preview:hover .food-screen {
    transform: none;
  }
}

/* Color boost */
body {
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 241, 201, 0.62), transparent 15%),
    radial-gradient(circle at 86% 18%, rgba(208, 228, 255, 0.54), transparent 18%),
    radial-gradient(circle at 15% 52%, rgba(199, 237, 230, 0.42), transparent 20%),
    radial-gradient(circle at 76% 72%, rgba(234, 218, 255, 0.42), transparent 20%),
    radial-gradient(circle at 10% 82%, rgba(255, 234, 218, 0.44), transparent 18%),
    radial-gradient(circle at 90% 88%, rgba(255, 232, 232, 0.34), transparent 14%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfb 42%, #f7f4ee 100%);
}

.hero-metrics article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(223, 243, 255, 0.42), rgba(255, 232, 232, 0.28));
}

.tint-peach {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 234, 218, 1), rgba(255, 241, 201, 0.72));
}

.tint-mint {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.56), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(199, 237, 230, 1), rgba(223, 243, 255, 0.58));
}

.tint-lilac {
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.56), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(234, 218, 255, 1), rgba(208, 228, 255, 0.58));
}

.tint-blue {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(208, 228, 255, 1), rgba(223, 243, 255, 0.7));
}

.tint-rose {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 232, 232, 1), rgba(255, 234, 218, 0.66));
}

.tint-blue-soft {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.25)),
    linear-gradient(135deg, rgba(223, 243, 255, 0.86), rgba(208, 228, 255, 1));
}

.tint-lilac-soft {
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.62), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, rgba(234, 218, 255, 1), rgba(208, 228, 255, 0.56));
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(223, 243, 255, 0.2));
}

.feature-card-wide {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.15)),
    linear-gradient(135deg, rgba(255, 234, 218, 1), rgba(255, 241, 201, 0.76));
}

.people-copy {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(208, 228, 255, 0.96), rgba(199, 237, 230, 0.68));
}

.food-layout {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(246, 246, 244, 1), rgba(255, 253, 248, 0.84));
}

.support-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 234, 218, 1), rgba(255, 241, 201, 0.74));
}

/* Pastel finish */
.tint-peach {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 234, 218, 0.96), rgba(255, 241, 201, 0.56));
}

.tint-mint {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.56), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(199, 237, 230, 0.94), rgba(223, 243, 255, 0.44));
}

.tint-lilac {
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.56), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(234, 218, 255, 0.94), rgba(208, 228, 255, 0.42));
}

.tint-blue {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(208, 228, 255, 0.94), rgba(223, 243, 255, 0.52));
}

.tint-rose {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 232, 232, 0.94), rgba(255, 234, 218, 0.48));
}

.tint-blue-soft {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.25)),
    linear-gradient(135deg, rgba(223, 243, 255, 0.72), rgba(208, 228, 255, 0.9));
}

.tint-lilac-soft {
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.62), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, rgba(234, 218, 255, 0.96), rgba(208, 228, 255, 0.42));
}

.hero-metrics article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(223, 243, 255, 0.3), rgba(255, 232, 232, 0.22));
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(255, 253, 248, 0.66), rgba(223, 243, 255, 0.14));
}

.feature-card-wide {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.15)),
    linear-gradient(135deg, rgba(255, 234, 218, 0.96), rgba(255, 241, 201, 0.62));
}

.people-copy {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(208, 228, 255, 0.92), rgba(199, 237, 230, 0.62));
}

.system-copy {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.56), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(251, 250, 247, 0.96), rgba(255, 234, 218, 0.24));
}

.food-layout {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(246, 246, 244, 0.96), rgba(255, 253, 248, 0.76));
}

.support-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 234, 218, 0.95), rgba(255, 241, 201, 0.62));
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-section .reveal-item {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .reveal-item {
  animation: reveal-float 720ms ease both;
}

.reveal-section.is-visible .reveal-item:nth-child(1) {
  animation-delay: 60ms;
}

.reveal-section.is-visible .reveal-item:nth-child(2) {
  animation-delay: 130ms;
}

.reveal-section.is-visible .reveal-item:nth-child(3) {
  animation-delay: 200ms;
}

.reveal-section.is-visible .reveal-item:nth-child(4) {
  animation-delay: 270ms;
}
