:root {
  --bg: #f5f0e6;
  --bg-secondary: #fbf7f1;
  --paper: rgba(255, 251, 245, 0.92);
  --card: #fffdfa;
  --text: #18211d;
  --muted: #657165;
  --line: rgba(42, 56, 48, 0.12);
  --line-strong: rgba(42, 56, 48, 0.22);
  --accent: #4b7f61;
  --accent-deep: #1f3a2f;
  --accent-soft: #e3eee6;
  --accent-glow: rgba(75, 127, 97, 0.2);
  --gold: #cf955b;
  --gold-glow: rgba(207, 149, 91, 0.18);
  --shadow: 0 24px 70px rgba(63, 50, 31, 0.08);
  --shadow-strong: 0 34px 100px rgba(45, 39, 28, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at top left, rgba(86, 138, 103, 0.16), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(201, 143, 88, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(69, 123, 91, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf6ee 0%, #f4eee4 46%, #fcf8f1 100%);
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

.page-orb {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.65;
}

.page-orb-one {
  top: 120px;
  right: -110px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: orbFloatOne 16s ease-in-out infinite;
}

.page-orb-two {
  left: -80px;
  bottom: 80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 72%);
  animation: orbFloatTwo 18s ease-in-out infinite;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding-bottom: 40px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(255, 250, 244, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.legal-topbar {
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 10px 24px rgba(69, 123, 91, 0.24);
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-subtext {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.97rem;
}

.nav a,
.footer-links a,
.legal-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.footer-links a:hover,
.legal-links a:hover {
  color: var(--accent-deep);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.lang-btn {
  min-width: 46px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 8px 18px rgba(69, 123, 91, 0.2);
}

.nav-cta,
.button,
.legal-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.nav-cta:hover::after,
.button:hover::after {
  transform: translateX(130%);
}

.nav-cta:hover,
.button:hover,
.legal-links a:hover,
.proof-item:hover,
.metric-card:hover,
.feature-card:hover,
.story-panel:hover,
.trust-card:hover,
.audience-card:hover,
.process-steps article:hover,
.faq-list article:hover,
.overview-list div:hover,
.signal-strip div:hover {
  transform: translateY(-3px);
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 16px 34px rgba(69, 123, 91, 0.24);
}

.button-secondary,
.legal-links a {
  color: var(--accent-deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.button-secondary:hover,
.legal-links a:hover {
  border-color: rgba(29, 58, 45, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 78px 0 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(78, 141, 98, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(229, 239, 231, 0.95);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

h1,
h2,
h3 {
  margin: 0;
  color: #1d261d;
  letter-spacing: -0.05em;
}

h1,
h2,
.legal-body h2 {
  font-family: "Fraunces", serif;
}

h1 {
  max-width: 10.8ch;
  margin-top: 18px;
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.lead,
.section-heading p,
.feature-card p,
.story-panel p,
.trust-card p,
.legal-panel p,
.footer p,
.hero-note span,
.legal-meta,
.legal-body p,
.legal-body li,
.overview-copy p,
.overview-list span,
.metric-card span,
.audience-card p,
.process-copy p,
.process-steps p,
.support-copy p,
.faq-list p,
.signal-strip span,
.proof-item span {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1rem;
}

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

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

.proof-item,
.signal-strip div,
.overview-list div,
.process-steps article,
.faq-list article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 252, 247, 0.4));
  box-shadow: 0 18px 36px rgba(63, 50, 31, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.proof-item strong,
.signal-strip strong,
.overview-list strong,
.process-steps h3,
.faq-list h3 {
  display: block;
  margin-bottom: 8px;
}

.hero-note {
  display: grid;
  gap: 8px;
  max-width: 60ch;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(250, 245, 238, 0.66));
  box-shadow: var(--shadow);
}

.hero-note strong {
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.hero-art {
  position: relative;
  margin: 44px 0 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(252, 247, 240, 0.94));
  box-shadow: var(--shadow-strong);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -18px 28px 24px -28px;
  z-index: -1;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(69, 123, 91, 0.14), rgba(201, 143, 88, 0.12));
  filter: blur(22px);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.hero-art:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 42px 110px rgba(45, 39, 28, 0.18);
}

.hero-art img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 236px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  font-size: 1rem;
  line-height: 1.4;
}

.floating-card-top {
  top: 16px;
  left: -16px;
  animation: floatCard 8s ease-in-out infinite;
}

.floating-card-bottom {
  right: -14px;
  bottom: 28px;
  animation: floatCard 9s ease-in-out infinite reverse;
}

.signal-strip,
.overview-panel,
.feature-card,
.story-panel,
.trust-card,
.metric-card,
.audience-card,
.legal-panel,
.legal-body {
  box-shadow: var(--shadow);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.82), rgba(255, 248, 242, 0.72));
}

.section {
  padding: 88px 0 0;
}

.overview-section {
  padding-top: 54px;
}

.overview-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.82), rgba(251, 247, 240, 0.74));
}

.overview-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-right: 8px;
}

.overview-copy p {
  max-width: 34ch;
  margin: 0;
}

.overview-list {
  display: grid;
  gap: 16px;
  align-content: start;
}

.overview-list div {
  padding: 22px 24px;
}

.metrics-section {
  padding-top: 44px;
}

.metrics-header {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 26px;
}

.feature-grid,
.trust-grid,
.process-steps,
.support-layout {
  display: grid;
  gap: 20px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 710px;
}

.section-heading p {
  margin: 16px 0 0;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
}

.trust-hero .section-heading {
  margin-bottom: 0;
  max-width: none;
}

.trust-aside {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.8), rgba(255, 248, 242, 0.72));
  box-shadow: var(--shadow);
}

.trust-aside span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-aside strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.trust-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card,
.story-panel,
.trust-card,
.legal-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.8), rgba(255, 248, 242, 0.72));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card-accent,
.story-panel-large {
  background: linear-gradient(180deg, rgba(239, 247, 242, 0.98), rgba(255, 251, 246, 0.84));
}

.feature-index,
.audience-kicker,
.process-steps article span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-panel-large {
  min-height: 300px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.story-section .story-panel-large {
  max-width: none;
}

.story-side {
  display: grid;
  gap: 20px;
}

.story-mini {
  display: grid;
  align-content: end;
  min-height: 140px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.8), rgba(255, 248, 242, 0.72));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-mini:hover {
  transform: translateY(-3px);
}

.story-mini span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story-mini strong {
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.process-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.process-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.legal-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 82px;
  padding: 28px 0 12px;
  border-top: 1px solid var(--line);
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-branding p {
  max-width: 50ch;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
}

.legal-wrap {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
  padding: 28px 0 64px;
}

.legal-hero {
  padding: 20px 0 18px;
}

.legal-hero h1 {
  max-width: none;
  margin-top: 18px;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

.legal-meta {
  margin-top: 16px;
}

.legal-intro {
  max-width: 72ch;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.legal-overview,
.legal-anchor-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.legal-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-highlight,
.legal-anchor-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.86), rgba(250, 245, 239, 0.74));
  box-shadow: var(--shadow);
}

.legal-highlight span,
.legal-anchor-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-highlight strong,
.legal-anchor-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.legal-anchor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.legal-anchor-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.legal-anchor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 58, 45, 0.16);
  box-shadow: var(--shadow-strong);
}

.legal-body {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 251, 246, 0.86), rgba(250, 245, 239, 0.74));
}

.legal-body section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-body h2 {
  font-size: 1.28rem;
}

.legal-body ul {
  padding-left: 22px;
}

.legal-back {
  display: inline-flex;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.64);
}

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

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

@keyframes backgroundDrift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.03) translate3d(0, -10px, 0);
  }
}

@keyframes orbFloatOne {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-24px, 30px, 0);
  }
}

@keyframes orbFloatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(26px, -20px, 0);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .overview-panel,
  .process-section,
  .trust-hero,
  .support-layout,
  .story-section,
  .legal-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
  }

  .hero-visual {
    min-height: auto;
  }

  .signal-strip,
  .hero-proof,
  .feature-grid,
  .process-steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .floating-card-top {
    top: 0;
    left: 0;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 12px;
  }
}

@media (max-width: 760px) {
  .site-shell,
  .legal-wrap {
    width: min(calc(100% - 24px), var(--content));
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 36px;
  }

  .overview-panel,
  .signal-strip,
  .feature-card,
  .story-panel,
  .trust-card,
  .legal-highlight,
  .legal-anchor-card,
  .legal-panel,
  .legal-body {
    padding: 22px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-bottom: 16px;
    animation: none;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
  }

  .legal-overview,
  .legal-anchor-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
