/* Annaporna Foods — organic grocery landing */
:root {
  --bg: #f6f3ee;
  --bg-warm: #faf6f0;
  --surface: #ffffff;
  --surface-elevated: #fffdfa;
  --ink: #1a1816;
  --muted: #5c564f;
  --line: #e8e4df;
  --line-strong: #dcd6cf;
  --leaf: #4d7c0f;
  --leaf-dark: #3f6212;
  --leaf-soft: #ecfccb;
  --accent: #b45309;
  --accent-soft: #fff4e6;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(26, 24, 22, 0.04);
  --shadow: 0 12px 40px rgba(26, 24, 22, 0.07);
  --shadow-lg: 0 24px 56px rgba(26, 24, 22, 0.1);
  --shadow-green: 0 12px 32px rgba(63, 98, 18, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Webfonts load async (see index.html); system fonts show first */
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", Times, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 0% -20%, rgba(236, 252, 203, 0.55), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(255, 237, 213, 0.45), transparent 45%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(254, 243, 199, 0.35), transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(190, 242, 100, 0.35);
  color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.75rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(246, 243, 238, 0.96) 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: opacity 0.2s var(--ease-out);
}

.logo:hover {
  opacity: 0.88;
}

.logo-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  box-shadow:
    0 4px 12px rgba(63, 98, 18, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.logo:hover .logo-img {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: var(--shadow-green), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text small {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease-out);
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.nav a:not(.btn):hover {
  color: var(--leaf-dark);
}

.nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    background 0.25s ease,
    border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(155deg, #5a8a14 0%, var(--leaf) 40%, var(--leaf-dark) 100%);
  color: #fff;
  box-shadow:
    var(--shadow-green),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-primary:hover {
  box-shadow:
    0 16px 36px rgba(63, 98, 18, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: #c4bcb2;
  background: var(--surface-elevated);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  padding: 2.75rem 0 4rem;
  position: relative;
  /* Allow content to lay out correctly; avoid clipping grid overflow */
  overflow-x: clip;
  overflow-y: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -45% -25% auto -25%;
  height: 85%;
  background: radial-gradient(ellipse 55% 45% at 18% 35%, rgba(190, 242, 100, 0.22), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 40%;
  height: 55%;
  background: radial-gradient(ellipse 50% 45% at 70% 80%, rgba(253, 186, 116, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Grid min-width fix — stops long headings from overflowing past the viewport edge */
.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  padding-right: clamp(0, 2vw, 0.75rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem 0.4rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fffdfb 0%, var(--accent-soft) 100%);
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 2px 12px rgba(180, 83, 9, 0.08);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, #84cc16, var(--leaf-dark));
  box-shadow: 0 0 0 3px rgba(190, 242, 100, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw + 1rem, 2.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
  hyphens: manual;
  overflow-wrap: break-word;
  color: #141210;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero-lead em {
  font-style: italic;
  color: var(--leaf-dark);
  font-weight: 600;
}

.hero-lead--wide {
  max-width: 52ch;
}

.hero-checklist {
  margin: 0 0 1.75rem;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 54ch;
}

.hero-checklist li {
  margin-bottom: 0.55rem;
  padding-left: 1.35rem;
  position: relative;
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(145deg, var(--leaf), var(--leaf-dark));
  box-shadow: 0 0 0 2px rgba(190, 242, 100, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(232, 228, 223, 0.9);
}

.hero-stat {
  flex: 1 1 180px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--leaf-dark);
  margin-bottom: 0.2rem;
}

.hero-stat span {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(420px, 52vh);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(26, 24, 22, 0.12);
}

.hero-card-main {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #ecfccb 0%, #fef3c7 45%, #fde68a 100%);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-card-main--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 280px;
  aspect-ratio: auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5), transparent 42%),
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 255, 255, 0.55), transparent 52%),
    linear-gradient(168deg, #e8f5c8 0%, #fef9c3 42%, #fde68a 78%, #fed7aa 100%);
}

.hero-logo {
  width: min(168px, 42vw);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(63, 98, 18, 0.15));
  transition: transform 0.45s var(--ease-out);
}

.hero-card:hover .hero-logo {
  transform: scale(1.05);
}

.hero-card-tagline {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--leaf-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-float {
  position: relative;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  left: auto;
  right: auto;
  bottom: auto;
  background: linear-gradient(180deg, #fffdfa 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--leaf);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.4rem;
}

.hero-float-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--leaf-dark);
}

.hero-float-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--accent));
  opacity: 0.9;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section--surface {
  background: linear-gradient(180deg, #fffdfa 0%, #faf7f2 50%, #fff 100%);
  border-block: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(26, 24, 22, 0.03);
}

.section-head--row {
  max-width: none;
}

.section-kicker {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: start;
}

.split--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.h-inline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.aside-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.aside-card h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.aside-card--dark {
  background: linear-gradient(155deg, #141211 0%, #292524 55%, #1c1917 100%);
  border-color: #3f3d3b;
  color: #e7e5e4;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.aside-card--dark h3 {
  color: #fff;
}

.muted-light {
  color: #a8a29e;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

.list-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-lines li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.list-lines li:first-of-type {
  border-top: none;
  padding-top: 0;
}

.list-lines li span:first-child {
  font-weight: 700;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.list-lines--light li {
  border-color: #44403c;
  color: #d6d3d1;
}

.list-lines--light li span:first-child {
  color: #a3e635;
}

.list-check {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list-check li {
  margin-bottom: 0.4rem;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.export-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.export-card:hover {
  border-color: rgba(190, 242, 100, 0.45);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.export-card-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.export-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-top: 0.1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--leaf-soft), #fef9c3);
  border: 1px solid rgba(251, 191, 36, 0.25);
  box-shadow: 0 2px 8px rgba(63, 98, 18, 0.08);
}

.export-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.12rem;
}

.export-sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.export-card > p {
  margin: 0 0 0.85rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.list-detail {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.list-detail li {
  margin-bottom: 0.45rem;
}

.list-detail strong {
  color: var(--leaf-dark);
}

.cat-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem 1.2rem 3.35rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.steps li:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #6b9b18, var(--leaf-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(63, 98, 18, 0.25);
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.steps span {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Supply network scheme (supply-chain section) */
.network-scheme {
  margin: 0 0 2.25rem;
  padding: 0;
}

.network-scheme__caption {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

.network-scheme__caption strong {
  color: var(--ink);
  font-weight: 700;
}

.network-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  padding: 1.1rem 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.network-node {
  flex: 1 1 9.5rem;
  min-width: 8.75rem;
  margin: 0;
  padding: 0.85rem 0.65rem 0.95rem;
  border-radius: var(--radius);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  text-align: left;
}

.network-node--hub {
  background: linear-gradient(165deg, rgba(236, 252, 203, 0.55) 0%, var(--surface-elevated) 55%);
  border-color: rgba(190, 242, 100, 0.45);
  box-shadow: 0 0 0 1px rgba(77, 124, 15, 0.06);
}

.network-node__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  margin-bottom: 0.35rem;
}

.network-node__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.network-node__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

.network-connector {
  flex: 0 0 1.35rem;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.network-connector::before {
  content: "→";
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), border-color 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(190, 242, 100, 0.55);
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.data-table tbody tr {
  transition: background 0.18s ease;
}

.data-table tbody tr:hover {
  background: rgba(236, 252, 203, 0.22);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  background: linear-gradient(180deg, #faf8f5 0%, #f0ebe5 100%);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.fine-print {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 72ch;
}

.cta--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  text-align: left;
  align-items: start;
}

.cta-copy h2 {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-card {
  background: linear-gradient(180deg, #faf8f5 0%, #f3ede6 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.cta-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.list-number {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.list-number li {
  margin-bottom: 0.45rem;
}

.cta.cta--split {
  text-align: left;
}

.cta--split .cta-copy,
.cta--split .cta-card {
  position: relative;
  z-index: 1;
}

.cta--split .cta-copy p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  transition: border-color 0.25s ease, box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.cat-card:hover {
  border-color: rgba(190, 242, 100, 0.5);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff7ed, #fef9c3);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 2px 10px rgba(180, 83, 9, 0.06);
}

.cat-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.cat-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-thumb {
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, #faf8f5, #ebe4dc);
  display: grid;
  place-items: center;
  font-size: 2.25rem;
}

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.product-body p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--leaf-dark);
  background: #ecfccb;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* Trust band */
.trust-band {
  background: linear-gradient(125deg, #1a3d0f 0%, var(--leaf-dark) 45%, #14532d 100%);
  color: #ecfccb;
  border-radius: var(--radius-lg);
  padding: 2.35rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 1.75rem;
  background: linear-gradient(165deg, #fffdfa 0%, #faf7f2 40%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(190, 242, 100, 0.12), transparent 65%);
  pointer-events: none;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.55rem;
  position: relative;
  letter-spacing: -0.02em;
}

.cta p {
  margin: 0 auto 1.25rem;
  color: var(--muted);
  max-width: 520px;
  position: relative;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 2.25rem;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.5) 0%, var(--bg) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 36ch;
  margin: 0.75rem 0 0;
  line-height: 1.65;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--ink);
  font-size: 0.94rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--leaf-dark);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
    min-height: auto;
  }

  .hero-card-main--brand {
    min-height: 220px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .export-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta--split {
    grid-template-columns: 1fr;
  }

  .network-track {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
  }

  .network-node {
    flex: 1 1 auto;
    min-width: 0;
  }

  .network-connector {
    flex: 0 0 auto;
    width: 100%;
    min-height: 1rem;
    padding: 0.1rem 0;
  }

  .network-connector::before {
    content: "↓";
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 64px 1rem auto 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav .btn {
    width: 100%;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid--six {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .hero-logo,
  .logo-img,
  .cat-card,
  .export-card,
  .product-card,
  .hero-stat,
  .pill,
  .steps li,
  .btn {
    transition: none !important;
  }

  .hero-card:hover,
  .cat-card:hover,
  .export-card:hover,
  .product-card:hover,
  .hero-stat:hover,
  .pill:hover,
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .logo:hover .logo-img {
    transform: none;
  }
}
