:root {
  --ink: #14201a;
  --ink-soft: #3d4a43;
  --mist: #eef3ef;
  --paper: #f7faf8;
  --sage: #3d6b55;
  --sage-deep: #2a4d3c;
  --sage-light: #8fb39a;
  --leaf: #c5dbc9;
  --line: rgba(20, 32, 26, 0.1);
  --white: #ffffff;
  --warn: #8a5a2b;
  --radius: 2px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(143, 179, 154, 0.35), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(197, 219, 201, 0.45), transparent 50%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 40%, #f3f7f4 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 248, 0.82);
  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, 250, 248, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(61, 107, 85, 0.15);
  transform: translateY(-0.1rem);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-name span {
  font-weight: 400;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 560;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  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(-1px);
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.nav-cta {
  padding: 0.65rem 1.05rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
}

/* Hero */
.hero {
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: end;
  min-height: min(78vh, 720px);
}

.hero-copy {
  max-width: 34rem;
  padding-bottom: 1.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 1.4rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero-brand em {
  font-style: italic;
  font-weight: 450;
  color: var(--sage);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--ink);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.25s forwards;
}

.hero-lead {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 30rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  opacity: 0;
  animation: fade-scale 1.1s var(--ease) 0.35s forwards;
}

.stage {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(160deg, rgba(61, 107, 85, 0.92), rgba(42, 77, 60, 0.98)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
}

.stage::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(197, 219, 201, 0.35), transparent 65%);
  pointer-events: none;
}

.stage-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.stage-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 500;
}

.product-row {
  display: grid;
  gap: 1rem;
}

.product-fake {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.swatch {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #d7e6db, #8fb39a 60%, #3d6b55);
}

.swatch.alt {
  background: linear-gradient(135deg, #e8ddd0, #c4a484 55%, #6e5338);
}

.product-fake strong {
  display: block;
  font-weight: 560;
  margin-bottom: 0.15rem;
}

.product-fake span {
  font-size: 0.88rem;
  opacity: 0.75;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.55rem;
  background: rgba(255, 255, 255, 0.16);
}

.badge.live {
  background: #e8f4ec;
  color: var(--sage-deep);
  animation: pulse-soft 2.8s ease-in-out infinite;
}

.notify-toast {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(10, 20, 14, 0.22);
  transform: translateY(12px);
  opacity: 0;
  animation: toast-in 0.7s var(--ease) 1.1s forwards;
}

.notify-toast i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.notify-toast p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.notify-toast strong {
  font-weight: 600;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

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

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.feature h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.feature-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.how {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--sage);
}

.step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

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

.trust {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.trust-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.trust-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  background: var(--sage);
  border-radius: 50%;
}

.trust-panel {
  padding: 2rem;
  background: var(--ink);
  color: #dce8e0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.trust-panel p {
  margin: 0;
  color: rgba(220, 232, 224, 0.8);
}

.trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.cta-band {
  padding: 4.5rem 0 5.5rem;
}

.cta-inner {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
  max-width: 18ch;
}

.cta-inner p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36ch;
}

/* Legal pages */
.legal-hero {
  padding: 3.5rem 0 2rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.legal-meta {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
}

.legal {
  padding: 1rem 0 5rem;
  max-width: 44rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 550;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 0.85rem;
}

.legal h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
}

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

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

.legal li + li {
  margin-top: 0.4rem;
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

.note {
  padding: 1rem 1.15rem;
  background: rgba(61, 107, 85, 0.08);
  border-left: 3px solid var(--sage);
  margin: 1.5rem 0;
}

.note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
  background: rgba(255, 255, 255, 0.35);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.footer-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-scale {
  from {
    opacity: 0;
    transform: scale(0.985) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 244, 236, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 244, 236, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (max-width: 900px) {
  .hero-grid,
  .trust,
  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid {
    min-height: 0;
    gap: 2.5rem;
  }

  .hero-visual {
    min-height: 380px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(247, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid var(--line);
  }

  .nav-links a,
  .nav-links .btn {
    display: block;
    padding: 0.9rem 0;
  }

  .nav-links .btn {
    text-align: center;
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-visual,
  .notify-toast,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
