/* ============================================================
   Self-hosted webfonts. Inter + Instrument Serif are loaded
   from /fonts/ on our own origin.
   ============================================================ */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('/fonts/inter-800.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/inter-900.woff2') format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/instrument-serif-400.woff2') format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url('/fonts/instrument-serif-400-italic.woff2') format('woff2'); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --bg-main: #f8f4eb;
  --bg-soft: #fffaf1;
  --bg-alt: #f0eadf;
  --bg-card: rgba(255, 253, 247, 0.86);
  --white: #ffffff;
  --text-main: #142016;
  --text-muted: #687466;
  --text-dim: #8b9285;
  --green-main: #4f7d3a;
  --green-deep: #315b2c;
  --green-fresh: #8dbf5a;
  --green-soft: #ddeccf;
  --peach-soft: #f2b999;
  --cream-deep: #e7d5b8;
  --border-soft: rgba(24, 32, 24, 0.09);
  --border-strong: rgba(24, 32, 24, 0.15);
  --shadow-soft: 0 18px 54px rgba(31, 45, 31, 0.10);
  --shadow-card: 0 10px 28px rgba(31, 45, 31, 0.075);
  --shadow-small: 0 6px 18px rgba(31, 45, 31, 0.065);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Legacy aliases used by older page styles and embedded snippets. */
  --navy: var(--text-main);
  --navy-deep: var(--green-deep);
  --navy-darker: #172118;
  --teal: var(--green-main);
  --teal-bright: var(--green-fresh);
  --teal-dark: var(--green-main);
  --blue: #6f9c68;
  --purple: #b98265;
  --mint: var(--green-soft);
  --soft: var(--green-soft);
  --bg: var(--bg-main);
  --text: var(--text-main);
  --border: var(--border-soft);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

::selection { background: var(--green-soft); color: var(--text-main); }

.serif-italic {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 21px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), background 0.24s var(--ease-out), border-color 0.24s var(--ease-out), color 0.24s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-main);
  color: #fffdf5;
  box-shadow: 0 8px 20px rgba(79, 125, 58, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 125, 58, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  background: rgba(255, 249, 236, 0.70);
  color: var(--green-deep);
  border-color: rgba(79, 125, 58, 0.26);
}

.btn-secondary:hover {
  background: #fffdf7;
  border-color: rgba(79, 125, 58, 0.42);
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.28s ease, backdrop-filter 0.28s ease, padding 0.28s ease, border-color 0.28s ease;
}

.nav.scrolled {
  background: rgba(248, 244, 235, 0.86);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-size: 19px;
  font-weight: 800;
  color: #4F7D3A;
  text-decoration: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-tile {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #F7F3EA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(31, 45, 31, 0.08), inset 0 0 0 1px rgba(24, 32, 24, 0.08);
  flex-shrink: 0;
}

.logo-tile img { width: 23px; height: 23px; display: block; }
.footer-brand .logo-tile { width: 34px; height: 34px; border-radius: 12px; }
.footer-brand .logo-tile img { width: 24px; height: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(24, 32, 24, 0.62);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 0.2s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-main); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(circle at 76% 48%, rgba(79, 125, 58, 0.10) 0 1px, transparent 2px 86px, rgba(79, 125, 58, 0.08) 87px 88px, transparent 89px 172px, rgba(79, 125, 58, 0.055) 173px 174px, transparent 175px),
    linear-gradient(180deg, #f8f4eb 0%, #fffaf1 100%);
  color: var(--text-main);
  display: flex;
  align-items: center;
  padding: 132px 0 84px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  right: 2vw;
  top: 128px;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(79, 125, 58, 0.13) 43% 43.5%, transparent 44% 59%, rgba(79, 125, 58, 0.09) 60% 60.5%, transparent 61% 100%);
  transform: none;
  opacity: 0.72;
}

.hero::after {
  width: 38vw;
  height: 1px;
  left: 0;
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(79, 125, 58, 0.18), transparent);
  transform: none;
}

.hero-grid {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background-image:
    linear-gradient(rgba(79, 125, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 125, 58, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  pointer-events: none;
}

.hero-orb { display: none; }

.orb-1, .orb-2, .orb-3 { display: none; }

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.hero-text { text-align: left; }

.hero-badge {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(31, 45, 31, 0.055);
  font-size: 13px;
  font-weight: 760;
  color: var(--green-deep);
  letter-spacing: 0;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-fresh);
  box-shadow: 0 0 0 5px rgba(141, 191, 90, 0.18);
}

.hero h1 {
  font-size: clamp(48px, 6.1vw, 86px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 620px;
  color: var(--green-deep);
}

.hero h1 .serif-italic {
  color: var(--green-main);
  font-size: 1.06em;
}

.hero-sub {
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 34px;
  line-height: 1.58;
  font-weight: 450;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-phone {
  margin: 0;
  width: min(330px, 32vw);
  justify-self: center;
  position: relative;
  background: transparent;
  filter: drop-shadow(0 26px 42px rgba(24, 32, 24, 0.18));
}

.hero-phone::before,
.hero-phone::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-phone::before {
  inset: 7% -22% 9% -22%;
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 38%, rgba(79, 125, 58, 0.12) 39% 39.5%, transparent 40% 58%, rgba(79, 125, 58, 0.08) 59% 59.5%, transparent 60% 100%);
  transform: none;
}

.hero-phone::after {
  display: none;
}

.hero-phone video {
  display: block;
  width: 100%;
  height: auto;
}

.hero-facts {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-fact {
  padding: 22px 22px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(31, 45, 31, 0.055);
  text-align: left;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-fact-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
  color: var(--green-deep);
  margin-bottom: 9px;
}

.hero-fact-label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(24, 32, 24, 0.42);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding-left: 0.12em;
}

.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(79, 125, 58, 0.18), rgba(79, 125, 58, 0.50));
}

/* Interest marquee */
.marquee {
  background: #fffaf1;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before { left: 0; background: linear-gradient(to right, #fffdf7, transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, #fffdf7, transparent); }

.marquee-track {
  display: inline-flex;
  gap: 18px;
  animation: marquee 70s linear infinite;
  white-space: nowrap;
  padding-left: 18px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 760;
  color: var(--green-deep);
  letter-spacing: 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid rgba(79, 125, 58, 0.13);
}

.marquee-item::after { display: none; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section basics */
.section-head {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--green-deep);
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-dark {
  background: transparent;
  color: rgba(255, 250, 240, 0.62);
  border-color: transparent;
}

h2.section-title,
.score-left h2,
.niche-left h2,
.manifesto h2,
.cta-card h2,
.page-section h2,
.page-hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h2.section-title,
.score-left h2,
.niche-left h2,
.page-section h2,
.page-hero h1,
.audience-card h3,
.networking-card h3,
.usp-card h3 {
  color: var(--green-deep);
}

h2.section-title {
  font-size: clamp(34px, 4.8vw, 58px);
  margin-bottom: 18px;
}

.score-left h2 .serif-italic,
.niche-left h2 .serif-italic,
.audience-card h3 .serif-italic,
.page-hero h1 .serif-italic {
  font-family: inherit;
  font-style: normal;
  color: inherit;
}

.section-title .serif-italic,
.manifesto h2 .serif-italic,
.cta-card h2 .serif-italic {
  color: var(--green-main);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 610px;
  margin: 0 auto;
}

/* Manifesto */
.manifesto {
  padding: 104px 0;
  background:
    radial-gradient(circle at 84% 82%, transparent 0 28%, rgba(255, 250, 240, 0.10) 28.3% 28.8%, transparent 29% 42%, rgba(255, 250, 240, 0.07) 42.3% 42.8%, transparent 43%),
    linear-gradient(135deg, #25321f 0%, #182018 100%);
  color: #fffaf0;
  position: relative;
  overflow: hidden;
}

.manifesto-glow {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  background: rgba(255, 250, 240, 0.06);
  border-radius: 999px;
  pointer-events: none;
}

.manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.manifesto .eyebrow-dark { margin-bottom: 28px; }

.manifesto h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin-bottom: 40px;
  color: #fffaf0;
}

.manifesto h2 .serif-italic { color: var(--green-fresh); }

.manifesto-body {
  font-size: 19px;
  line-height: 1.72;
  color: rgba(255, 250, 240, 0.74);
  max-width: 740px;
}

.manifesto-body p + p { margin-top: 20px; }

.manifesto-body .closer {
  font-size: 22px;
  color: #fffaf0;
  font-weight: 600;
}

/* Gryd Score */
.score {
  padding: 104px 0 96px;
  background:
    linear-gradient(90deg, rgba(79, 125, 58, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(79, 125, 58, 0.045) 1px, transparent 1px),
    #fffdf7;
  background-size: 96px 96px;
  position: relative;
}

.score-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 76px;
  align-items: start;
}

.score-left { position: sticky; top: 110px; }
.score-left h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  margin-bottom: 22px;
  max-width: 560px;
}

.score-left p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 16px;
}

.score-callout,
.niche-callout,
.page-callout {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--green-main);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(31, 45, 31, 0.055);
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.62;
}

.score-callout strong,
.niche-callout strong,
.page-callout strong { color: var(--green-deep); font-weight: 800; }

.score-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(31, 45, 31, 0.07);
}

.score-item,
.usp-card,
.networking-card,
.niche-chart,
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.score-item {
  padding: 20px 22px;
  transition: border-color 0.22s var(--ease-out), background 0.22s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  background: rgba(255, 253, 247, 0.76);
}

.score-item:hover {
  border-color: rgba(79, 125, 58, 0.22);
  background: #fffdf7;
}

.usp-card:hover,
.networking-card:hover,
.audience-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 125, 58, 0.18);
  box-shadow: 0 14px 36px rgba(31, 45, 31, 0.085);
}

.score-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 16px;
}

.score-item-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.score-item-icon,
.usp-icon,
.networking-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(221, 236, 207, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  border: 1px solid rgba(79, 125, 58, 0.12);
}

.score-item-icon svg,
.usp-icon svg,
.networking-icon svg { width: 18px; height: 18px; }

.score-percent {
  min-width: 34px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(79, 125, 58, 0.08);
  border: 1px solid rgba(79, 125, 58, 0.12);
  font-size: 12px;
  font-weight: 850;
  color: rgba(47, 79, 43, 0.72);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.score-percent .pct { display: none; }

.score-desc {
  font-size: 14.75px;
  color: var(--text-muted);
  line-height: 1.58;
  margin: 6px 0 0 48px;
}

.score-bar {
  display: none;
}

.niche-bar {
  height: 7px;
  background: rgba(79, 125, 58, 0.10);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.score-bar-fill,
.niche-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-main), var(--green-fresh));
  border-radius: 999px;
  width: 0;
  transition: width 1s var(--ease-out);
}

.score-item.visible .score-bar-fill { width: var(--fill); }

/* Niche section */
.niches {
  padding: 86px 0 104px;
  background: linear-gradient(180deg, #fffdf7 0%, var(--bg-main) 100%);
  position: relative;
}

.niche-inner { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

.niche-split {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 76px;
  align-items: center;
}

.niche-left h2 { font-size: clamp(34px, 4.3vw, 54px); margin-bottom: 22px; }

.niche-left p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 18px;
}

.niche-chart {
  padding: 32px;
  background: rgba(255, 253, 247, 0.76);
  box-shadow: 0 14px 38px rgba(31, 45, 31, 0.07);
}

.niche-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}

.niche-chart-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.niche-chart-legend {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 650;
}

.niche-row {
  display: grid;
  grid-template-columns: 160px 1fr 50px;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.niche-row + .niche-row { border-top: 1px solid var(--border-soft); }

.niche-label {
  font-size: 14px;
  font-weight: 750;
  color: var(--text-main);
  letter-spacing: 0;
}

.niche-label small {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 2px;
}

.niches.visible .niche-bar-fill { width: var(--fill); }
.niche-row.good .niche-bar-fill { background: linear-gradient(90deg, var(--green-main), var(--green-fresh)); }
.niche-row.ok .niche-bar-fill { background: linear-gradient(90deg, #6d9a43, var(--green-fresh)); }
.niche-row.mid .niche-bar-fill { background: linear-gradient(90deg, #9eb768, #d0bc6f); }
.niche-row.weak .niche-bar-fill { background: linear-gradient(90deg, #c27c5b, var(--peach-soft)); }

.niche-value {
  font-size: 15px;
  font-weight: 800;
  text-align: right;
  color: var(--green-deep);
  font-variant-numeric: tabular-nums;
}

/* USP grid */
.usps {
  padding: 96px 0;
  background: var(--bg-main);
  position: relative;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.usps-grid > .usp-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

.usp-card {
  padding: 32px 30px;
  transition: transform 0.26s var(--ease-out), box-shadow 0.26s var(--ease-out), border-color 0.26s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.usp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.usp-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 1.24;
}

.usp-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.62;
}

/* Social networking */
.networking {
  padding: 104px 0;
  background:
    radial-gradient(circle at 16% 18%, transparent 0 96px, rgba(79, 125, 58, 0.075) 97px 98px, transparent 99px 188px, rgba(79, 125, 58, 0.05) 189px 190px, transparent 191px),
    linear-gradient(180deg, var(--bg-main) 0%, #fff9ec 100%);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.networking-glow-1,
.networking-glow-2 { display: none; }

.networking .container { position: relative; z-index: 1; }
.networking .section-head h2 { color: var(--text-main); }
.networking .section-head .section-sub { color: var(--text-muted); }

.networking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.networking-card {
  padding: 32px 28px;
  transition: transform 0.26s var(--ease-out), box-shadow 0.26s var(--ease-out), border-color 0.26s var(--ease-out);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  overflow: hidden;
}

.networking-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
}

.networking-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0;
  margin-bottom: 12px;
  line-height: 1.22;
}

.networking-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.networking-chips,
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.networking-chips {
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.chip,
.category-pills .chip {
  font-size: 12px;
  font-weight: 750;
  padding: 7px 11px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(79, 125, 58, 0.14);
  border-radius: 999px;
  color: var(--green-deep);
  letter-spacing: 0;
}

/* Audiences */
.audiences {
  padding: 104px 0;
  background: #fffdf7;
}

.audiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  padding: 44px 38px;
  transition: transform 0.26s var(--ease-out), box-shadow 0.26s var(--ease-out), border-color 0.26s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.audience-creators {
  background:
    radial-gradient(circle at 90% 12%, transparent 0 76px, rgba(255, 250, 240, 0.10) 77px 78px, transparent 79px 138px, rgba(255, 250, 240, 0.07) 139px 140px, transparent 141px),
    #25321f;
  color: #fffaf0;
  border-color: rgba(255, 249, 236, 0.14);
}

.audience-viewers {
  background:
    radial-gradient(circle at 92% 12%, transparent 0 70px, rgba(79, 125, 58, 0.10) 71px 72px, transparent 73px 132px, rgba(79, 125, 58, 0.07) 133px 134px, transparent 135px),
    rgba(255, 255, 255, 0.78);
  color: var(--text-main);
}

.audience-card > * { position: relative; z-index: 1; }
.audience-card .eyebrow { margin-bottom: 18px; }

.audience-creators .eyebrow {
  background: transparent;
  color: rgba(255, 250, 240, 0.66);
  border-color: transparent;
}

.audience-creators h3 {
  color: #fffaf0;
}

.audience-card h3 {
  font-size: clamp(26px, 3.1vw, 36px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 14px;
}

.audience-creators h3 .serif-italic { color: inherit; }

.audience-card > p {
  font-size: 16px;
  line-height: 1.66;
  margin-bottom: 28px;
}

.audience-creators > p { color: rgba(255, 250, 240, 0.74); }
.audience-viewers > p { color: var(--text-muted); }

.audience-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  padding: 14px 0;
}

.audience-list li + li { border-top: 1px solid; }
.audience-creators .audience-list li + li { border-top-color: rgba(255, 255, 255, 0.12); }
.audience-viewers .audience-list li + li { border-top-color: var(--border-soft); }

.audience-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 1px;
  background-color: var(--green-soft);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f4f2b' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* CTA */
.cta {
  padding: 48px 24px 88px;
  background: #fffdf7;
}

.cta-card {
  max-width: 940px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 14% 18%, transparent 0 82px, rgba(255, 250, 240, 0.10) 83px 84px, transparent 85px 152px, rgba(255, 250, 240, 0.07) 153px 154px, transparent 155px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #25321f 0%, #182018 100%);
  background-size: auto, 88px 88px, auto;
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  text-align: center;
  color: #fffaf0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cta-orb-1,
.cta-orb-2 { display: none; }

.cta-card > *:not(.cta-orb-1):not(.cta-orb-2) { position: relative; z-index: 1; }
.cta-card .eyebrow-dark { margin-bottom: 20px; }

.cta-card h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  margin-bottom: 16px;
  color: #fffaf0;
}

.cta-card h2 .serif-italic { color: var(--green-fresh); }

.cta-card p {
  font-size: 16px;
  color: rgba(255, 250, 240, 0.76);
  max-width: 540px;
  margin: 0 auto 26px;
  line-height: 1.62;
}

.store-buttons,
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.store-buttons { justify-content: center; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 21px 12px 17px;
  background: #fffdf7;
  color: var(--text-main);
  border: 1px solid rgba(24, 32, 24, 0.10);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), background 0.24s var(--ease-out), border-color 0.24s var(--ease-out);
  min-width: 220px;
  box-shadow: var(--shadow-small);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 45, 31, 0.16);
  border-color: rgba(79, 125, 58, 0.24);
}

.store-btn.dark {
  background: rgba(37, 50, 31, 0.88);
  color: #fffaf0;
  border-color: rgba(255, 249, 236, 0.16);
}

.cta-card .store-btn.dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
}

.store-btn svg { flex-shrink: 0; }
.store-btn-text { line-height: 1.12; text-align: left; }
.store-btn-kicker { display: block; font-size: 10.5px; opacity: 0.66; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 750; }
.store-btn-main { display: block; font-size: 17px; font-weight: 800; letter-spacing: 0; }

/* Footer */
.footer {
  background: #182018;
  color: #fffaf0;
  padding: 66px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 62px;
}

.footer .logo { color: #4F7D3A; }
.footer-brand .logo { font-size: 20px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 250, 240, 0.58);
  line-height: 1.66;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 250, 240, 0.42);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 250, 240, 0.72);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--green-fresh); }

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-social a {
  padding: 0;
  color: rgba(255, 250, 240, 0.58);
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
}

.footer-social a:hover { color: var(--green-fresh); transform: translateY(-2px); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255, 250, 240, 0.42); }

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.10s; }
.reveal-3 { transition-delay: 0.15s; }
.reveal-4 { transition-delay: 0.20s; }

/* Subpages */
.page-hero {
  position: relative;
  padding: 158px 0 94px;
  background:
    radial-gradient(circle at 76% 30%, transparent 0 112px, rgba(79, 125, 58, 0.09) 113px 114px, transparent 115px 202px, rgba(79, 125, 58, 0.06) 203px 204px, transparent 205px),
    linear-gradient(180deg, var(--bg-main) 0%, #fff9ec 100%);
  color: var(--text-main);
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 46% 54% 48% 52%;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(79, 125, 58, 0.08) 43% 43.5%, transparent 44% 100%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 20px; }

.page-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin: 0 auto 22px;
  max-width: 860px;
}

.page-hero .page-hero-sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.62;
}

.page-hero .page-hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-hero .page-hero-cta .btn { padding: 14px 28px; font-size: 15px; }

.page-section {
  padding: 92px 0;
  background: #fffdf7;
}

.page-section.alt {
  background:
    radial-gradient(circle at 90% 16%, transparent 0 96px, rgba(79, 125, 58, 0.055) 97px 98px, transparent 99px),
    var(--bg-main);
}

.page-section .container { position: relative; }

.page-section h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 18px;
  color: var(--text-main);
  max-width: 780px;
}

.page-section .lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.page-section .body p {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.72;
  margin-bottom: 18px;
}

.page-section h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text-main);
  margin: 28px 0 10px;
}

.page-section ul {
  list-style: none;
  padding: 0;
  max-width: 720px;
}

.page-section ul li {
  position: relative;
  padding-left: 28px;
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 12px;
}

.page-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-fresh);
  box-shadow: 0 0 0 5px rgba(141, 191, 90, 0.14);
}

.page-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 28px 0;
}

.page-steps li {
  padding: 20px 22px 20px 70px;
  position: relative;
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.6;
  counter-increment: step;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.page-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 19px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-main);
  color: #fffdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.page-steps li::after { display: none; }

.category-pills {
  max-width: 780px;
  margin-top: 26px;
}

.category-pills .chip {
  padding: 9px 15px;
  font-size: 14px;
  background: #fffdf7;
}

/* Responsive */
@media (max-width: 980px) {
  .hero { padding-top: 126px; }
  .score-grid { grid-template-columns: 1fr; gap: 40px; }
  .score-left { position: static; }
  .niche-split { grid-template-columns: 1fr; gap: 48px; }
  .networking-grid { grid-template-columns: 1fr; }
  .audiences-grid { grid-template-columns: 1fr; }
  .usps-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .hero-columns { grid-template-columns: 1fr; gap: 42px; }
  .hero-text { text-align: center; }
  .hero h1,
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-phone { width: min(330px, 78vw); }
}

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

@media (max-width: 680px) {
  .container,
  .nav-inner,
  .hero-content,
  .manifesto-inner,
  .niche-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav { padding: 12px 0; }
  .nav-inner { gap: 12px; }
  .logo { font-size: 17px; }
  .nav .btn { min-height: 40px; padding: 9px 15px; font-size: 13.5px; }

  .hero {
    padding: 96px 0 60px;
    min-height: auto;
  }

  .hero::before {
    width: 260px;
    height: 260px;
    right: -128px;
    top: 240px;
    opacity: 0.46;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1;
  }
  .hero-sub { font-size: 16px; margin-bottom: 26px; }
  .hero-scroll { display: none; }
  .hero-phone { width: min(360px, 92vw); }
  .hero-phone::after { display: none; }
  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 10px;
    margin-top: 34px;
    overflow-x: auto;
    padding: 4px 0 14px;
    scroll-snap-type: x proximity;
  }
  .hero-fact { padding: 20px 18px; border-radius: 20px; }
  .hero-fact { scroll-snap-align: start; }
  .hero-fact-title { font-size: 16px; margin-bottom: 6px; }

  .manifesto,
  .score,
  .niches,
  .usps,
  .networking,
  .audiences,
  .page-section {
    padding: 72px 0;
  }

  .section-head { margin-bottom: 40px; }
  h2.section-title,
  .score-left h2,
  .niche-left h2,
  .manifesto h2,
  .cta-card h2,
  .page-section h2 {
    font-size: 34px;
  }

  .manifesto-body { font-size: 17px; }
  .manifesto-body .closer { font-size: 19px; }
  .score-item { padding: 22px 20px; }
  .score-right { padding: 10px; border-radius: 24px; }
  .score-item-head { align-items: center; }
  .score-percent { font-size: 12px; }
  .score-desc { margin-left: 0; }
  .niche-chart { padding: 22px; }
  .niche-row { grid-template-columns: 1fr; gap: 8px; padding: 14px 0; }
  .niche-value { text-align: left; }
  .networking-card,
  .audience-card,
  .usp-card { padding: 28px 22px; }

  .cta { padding: 32px 20px 66px; }
  .cta-card { padding: 44px 22px; border-radius: 26px; }
  .cta-card p { margin-bottom: 28px; }
  .store-btn { min-width: 0; flex: 1; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero { padding: 126px 0 70px; }
  .page-hero h1 { font-size: clamp(39px, 12vw, 56px); }
  .page-hero .page-hero-cta { width: 100%; }
  .page-hero .page-hero-cta .btn { width: 100%; }
  .page-steps li { padding: 64px 18px 20px; }
  .page-steps li::before { left: 18px; top: 18px; }
}

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

  .marquee-track { animation: none; }
}
