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

:root {
  --charcoal: #142122;
  --green: #053D30;
  --yellow: #E7FF25;
  --sage: #B3CFCD;
  --light: #EFEFEF;
  --white: #FFFFFF;
  --yellow-dim: rgba(231,255,37,0.12);
  --yellow-mid: rgba(231,255,37,0.25);
  --green-light: #0a5c48;
  --text-primary: #142122;
  --text-secondary: #4a5c5d;
  --text-tertiary: #7a8e8f;
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
::selection { background: rgba(231,255,37,0.3); color: var(--charcoal); }
body { font-family: var(--font); font-weight: 400; color: var(--text-primary); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* --- Utilities --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus-visible { position: fixed; top: 1rem; left: 1rem; width: auto; height: auto; padding: 0.75rem 1.5rem; margin: 0; overflow: visible; clip: auto; white-space: normal; background: var(--yellow); color: var(--charcoal); font-weight: 600; font-size: 0.875rem; border-radius: 6px; z-index: 9999; outline: none; }

/* --- Focus --- */
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

/* --- Nav --- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 2rem; transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease); }
.nav__inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav.scrolled { background: rgba(5,61,48,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav.scrolled .nav__inner { border-color: transparent; }
.nav__logo { font-weight: 700; font-size: 1.375rem; color: var(--yellow); letter-spacing: 0.15em; }
.nav__logo img { height: 48px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 400; letter-spacing: 0.02em; transition: color 0.3s var(--ease); display: inline-block; position: relative; padding: 0.5rem 0; }
.nav__links a:hover { color: var(--white); }
.nav__links a.active, .nav__links a[aria-current="page"] { color: var(--white); font-weight: 500; background: rgba(255,255,255,0.08); padding: 0.375rem 0.75rem 0.375rem; border-radius: 6px; margin: -0.375rem -0.75rem; }
.nav__links a.active::after, .nav__links a[aria-current="page"]::after { content: ''; position: absolute; bottom: -2px; left: 0.75rem; right: 0.75rem; height: 2px; background: var(--yellow); border-radius: 1px; }
.nav__links a.nav__cta { color: var(--charcoal) !important; background: var(--yellow); padding: 0.875rem 2.25rem; border-radius: 8px; font-weight: 600 !important; font-size: 0.875rem !important; white-space: nowrap; line-height: 1; letter-spacing: 0.01em; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease) !important; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(231,255,37,0.3); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; -webkit-tap-highlight-color: transparent; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* --- Hero --- */
.hero { min-height: 100vh; background: linear-gradient(160deg, var(--green) 0%, #042e24 40%, #0a4a38 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: none; background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black 20%, transparent 70%); }
.hero::after { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(231,255,37,0.08) 0%, transparent 70%); top: -200px; right: -200px; pointer-events: none; }
/* Hero page variants */
.hero--why { background: linear-gradient(160deg, var(--charcoal) 0%, #0c2e28 60%, var(--charcoal) 100%); }
.hero--why::before { background-image: none; }
.hero--why::after { background: radial-gradient(circle, rgba(179,207,205,0.1) 0%, transparent 70%); }
.hero--services { background: linear-gradient(160deg, var(--green) 0%, #0a5c48 60%, #0d6b54 100%); }
.hero--services::after { background: radial-gradient(circle, rgba(231,255,37,0.06) 0%, transparent 70%); top: -100px; left: -200px; right: auto; }
.hero--platform { background: linear-gradient(135deg, #0c1e1f 0%, var(--charcoal) 40%, var(--green) 100%); }
.hero--platform::before { background-image: none; background-size: 40px 40px; }
.hero--platform::after { background: radial-gradient(circle, rgba(231,255,37,0.05) 0%, transparent 60%); bottom: -200px; top: auto; left: -200px; right: auto; }
.hero--community { background: linear-gradient(180deg, var(--green) 0%, #0a4a38 100%); }
.hero--community::after { background: radial-gradient(circle, rgba(179,207,205,0.12) 0%, transparent 60%); top: -300px; right: 50%; transform: translateX(50%); }
.hero__inner { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--yellow-dim); border: 1px solid rgba(231,255,37,0.15); border-radius: 6px; padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 500; color: var(--yellow); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(2.75rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.08; color: var(--white); letter-spacing: -0.03em; margin-bottom: 1.5rem; text-wrap: balance; }

/* Hero entrance — CSS only, no GSAP needed */
.hero__content > * { opacity: 0; animation: heroIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.26s; }
.hero__content > *:nth-child(4) { animation-delay: 0.34s; }
.hero__content > *:nth-child(5) { animation-delay: 0.42s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero__sub { font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; }
.hero__actions { display: flex; gap: 1rem; align-items: center; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font); font-weight: 500; border: none; cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); white-space: nowrap; }
.btn--lg { padding: 0.875rem 2rem; font-size: 0.9375rem; border-radius: 6px; }
.btn--primary { background: var(--yellow); color: var(--charcoal); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(231,255,37,0.25); }
.btn--ghost { background: transparent; color: rgba(255,255,255,0.7); padding: 0.875rem 0; }
.btn--ghost:hover { color: var(--white); }
.btn--ghost .arrow { transition: transform 0.3s var(--ease); }
.btn--ghost:hover .arrow { transform: translateX(4px); }
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* --- Mock Dashboard --- */
.mock-dashboard { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 1.5rem; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: relative; }
.mock-dashboard::before { content: ''; position: absolute; inset: -1px; border-radius: 8px; padding: 1px; background: linear-gradient(135deg, rgba(231,255,37,0.2), transparent 60%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.mock__bar { display: flex; gap: 6px; margin-bottom: 1.25rem; }
.mock__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock__dot:first-child { background: #ff5f57; }
.mock__dot:nth-child(2) { background: #febc2e; }
.mock__dot:nth-child(3) { background: #28c840; }
.mock__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.mock__stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 1rem; text-align: center; }
.mock__stat-value { font-size: 1.75rem; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 0.25rem; }
.mock__stat-label { font-size: 0.6875rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.mock__row { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 0.5rem; }
.mock__row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock__row-bar { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.mock__row-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; border-radius: 2px; background: var(--yellow); opacity: 0.6; }
.mock__row:nth-child(4) .mock__row-bar::after { width: 85%; }
.mock__row:nth-child(5) .mock__row-bar::after { width: 62%; background: var(--sage); }
.mock__row:nth-child(6) .mock__row-bar::after { width: 94%; }
.mock__row:nth-child(7) .mock__row-bar::after { width: 45%; background: var(--sage); }
.mock__row-badge { font-size: 0.6875rem; padding: 0.125rem 0.5rem; border-radius: 100px; font-weight: 500; flex-shrink: 0; }
.mock__floating { position: absolute; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.875rem 1rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.mock__floating--1 { top: 10px; right: 10px; font-size: 0.75rem; color: var(--yellow); font-weight: 500; }
.mock__floating--2 { bottom: 10px; left: 10px; }
.mini-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.check-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 0.625rem; color: var(--charcoal); font-weight: 700; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* --- Proving Grounds --- */
.proving-grounds { background: var(--light); padding: 7rem 0; position: relative; overflow: hidden; }
.proving-grounds__split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.proving-grounds__text { position: sticky; top: 120px; }
.proving-grounds__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--green); font-weight: 500; margin-bottom: 1.5rem; opacity: 0.6; }
.proving-grounds__title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--charcoal); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 1.25rem; }
.proving-grounds__desc { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); font-weight: 400; }
.proving-grounds__bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto auto; gap: 0.875rem; }
.proving-grounds__cell { background: var(--green); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 2rem 1.5rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; overflow: hidden; border-top: 3px solid rgba(231,255,37,0.35); }
.proving-grounds__cell:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.proving-grounds__cell img { width: auto; height: auto; max-height: 100%; max-width: 90%; object-fit: contain; transition: transform 0.4s var(--ease); }
.proving-grounds__logo--invert { filter: brightness(0) invert(1); }
.proving-grounds__logo--dark { opacity: 0.8; }
.proving-grounds__cell--spine { grid-column: 1 / -1; padding: 2.5rem 4rem; }
.proving-grounds__cell--spine img { max-height: 120px; width: auto; max-width: 95%; }
.proving-grounds__cell--desert,
.proving-grounds__cell--ice,
.proving-grounds__cell--jungle,
.proving-grounds__cell--mountain { padding: 0.5rem; min-height: 200px; }
.proving-grounds__cell--desert img,
.proving-grounds__cell--ice img,
.proving-grounds__cell--jungle img,
.proving-grounds__cell--mountain img { width: 100%; height: auto; max-width: 100%; max-height: none; transform: scale(1.15); }
.proving-grounds__cell--hu { grid-column: span 2; padding: 2rem; }
.proving-grounds__cell--rangers { grid-column: span 2; padding: 2rem; }
.proving-grounds__cell--hu img,
.proving-grounds__cell--rangers img { max-height: 160px; width: auto; max-width: 90%; }

/* --- Page identity --- */
.page-id { position: relative; z-index: 2; }
.page-id__label { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); font-weight: 400; }
.page-id__label::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,0.2); }
.page-id__watermark { display: none; }

/* --- Pull quote (editorial element) --- */
.pull-quote { padding: 4rem 0; text-align: center; position: relative; }
.pull-quote__text { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 300; line-height: 1.4; letter-spacing: -0.02em; max-width: 800px; margin: 0 auto; font-style: italic; }
.pull-quote--bold .pull-quote__text { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 400; font-style: normal; letter-spacing: -0.015em; line-height: 1.2; color: var(--white); }
.pull-quote--bold .pull-quote__text em { font-style: normal; color: var(--yellow); }
.pull-quote--bold .pull-quote__text::before, .pull-quote--bold .pull-quote__text::after { background: var(--yellow); opacity: 0.6; width: 80px; height: 2px; }
.pull-quote__text::before, .pull-quote__text::after { content: ''; display: block; width: 60px; height: 1px; margin: 1.5rem auto; background: rgba(0,0,0,0.08); }
.section--dark .pull-quote--bold .pull-quote__text { color: var(--white); }
.section--dark .pull-quote__text { color: rgba(255,255,255,0.7); }
.section--dark .pull-quote__text::before, .section--dark .pull-quote__text::after { background: rgba(255,255,255,0.1); }
.section--light .pull-quote__text { color: var(--text-secondary); }
.section--light .pull-quote__text::before, .section--light .pull-quote__text::after { background: rgba(0,0,0,0.08); }

/* --- Numbered steps (Services page) --- */
.step-number { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 700; color: var(--green); opacity: 0.1; line-height: 1; margin-bottom: -0.5rem; letter-spacing: -0.04em; }
.section--light .step-number { color: var(--green); opacity: 0.1; }
.section--dark .step-number { color: var(--yellow); opacity: 0.15; }
.section--gradient .step-number { color: var(--yellow); opacity: 0.12; }

/* --- Stats highlight (Community page) --- */
.stats-highlight { background: var(--green); border-radius: 20px; padding: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; position: relative; overflow: hidden; }
.stats-highlight::before { content: ''; position: absolute; inset: 0; background-image: none; background-size: 40px 40px; }
.stats-highlight .stat__number { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.03em; position: relative; }
.stats-highlight .stat__label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; position: relative; }

/* --- Timeline (Services page) --- */
.timeline { position: relative; padding-left: 80px; }
.timeline::before { content: ''; position: absolute; left: 35px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--sage) 0%, var(--green) 50%, var(--charcoal) 100%); }
.timeline__item { position: relative; padding-bottom: 5rem; }
.timeline__item--final { padding-bottom: 0; }
.timeline__marker { position: absolute; left: -80px; top: 0; width: 70px; display: flex; justify-content: center; }
.timeline__step { width: 52px; height: 52px; border-radius: 50%; background: var(--white); border: 2px solid var(--sage); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--green); position: relative; z-index: 2; transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.timeline__item:hover .timeline__step { background: var(--green); color: var(--white); border-color: var(--green); transform: scale(1.1); }
.timeline__item--final .timeline__step { background: var(--charcoal); color: var(--yellow); border-color: var(--charcoal); }
.timeline__tag { display: inline-block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.timeline__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; color: var(--charcoal); }
.timeline__desc { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); font-weight: 300; max-width: 600px; margin-bottom: 1.5rem; }
.timeline__image { max-width: 600px; margin-bottom: 0.5rem; }
.timeline__content { padding-left: 1rem; border-left: 1px solid transparent; transition: border-color 0.4s var(--ease); padding-top: 0.5rem; }
.timeline__item:hover .timeline__content { border-left-color: rgba(5,61,48,0.08); }
.timeline__scope { display: inline-block; font-size: 0.75rem; color: var(--text-tertiary); margin-bottom: 0.5rem; }
.timeline__badge { display: inline-block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; background: var(--yellow); color: var(--charcoal); padding: 0.2rem 0.6rem; border-radius: 100px; margin-left: 0.75rem; }

/* --- Pillar Cards (Platform page) --- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 2.5rem; position: relative; transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease); border-top: 3px solid var(--yellow); }
.pillar-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.pillar-card__number { font-size: 0.75rem; font-weight: 700; color: var(--yellow); letter-spacing: 0.08em; margin-bottom: 1.25rem; opacity: 0.6; }
.pillar-card h3 { font-size: 1.1875rem; font-weight: 600; color: var(--white); line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 0.875rem; }
.pillar-card p { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.45); font-weight: 300; }
.section--light .pillar-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-top: 3px solid var(--green); }
.section--light .pillar-card:hover { background: var(--white); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.section--light .pillar-card__number { color: var(--green); }
.section--light .pillar-card h3 { color: var(--charcoal); }
.section--light .pillar-card p { color: var(--text-secondary); }

/* --- Pillar prose (no cards) --- */
.pillar-prose { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0; }
.pillar-prose__item { display: flex; gap: 2rem; align-items: baseline; padding: 2.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pillar-prose__item:last-child { border-bottom: none; }
.pillar-prose__number { font-size: 0.75rem; font-weight: 700; color: var(--green); letter-spacing: 0.08em; opacity: 0.5; flex-shrink: 0; padding-top: 0.25rem; }
.pillar-prose__title { font-size: clamp(1.375rem, 2.2vw, 1.625rem); font-weight: 700; color: var(--charcoal); line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.pillar-prose__desc { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); font-weight: 400; }

/* --- Platform Showcase --- */
.platform-showcase { background: var(--charcoal); padding: 0 0 4rem; margin-top: -2rem; position: relative; }
.platform-showcase__layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.platform-showcase__dashboard { max-width: 800px; margin: 0; transform: translateY(-2rem); }
.platform-showcase__caption { text-align: left; font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 400; max-width: 500px; margin: 1.5rem 0 0; }
.aside-cta--dark { margin-top: 0; padding: 1.75rem 1.5rem; background: rgba(231,255,37,0.06); border-left: 3px solid rgba(231,255,37,0.4); border-radius: 0 8px 8px 0; max-width: 280px; align-self: center; }
.aside-cta--dark .aside-cta__text { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.6; }
.aside-cta--dark .aside-cta__link { color: var(--yellow); font-weight: 600; }
.aside-cta--dark .aside-cta__link:hover { color: var(--white); }

/* --- Platform Features (dark numbered list) --- */
.platform-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.platform-feature { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 2.5rem; transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; overflow: hidden; }
.platform-feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--yellow), rgba(231,255,37,0.2)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.platform-feature:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.platform-feature:hover::before { transform: scaleX(1); }
.platform-feature__number { font-size: 2rem; font-weight: 700; color: var(--yellow); opacity: 0.15; margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1; }
.platform-feature h3 { font-size: 1.1875rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.platform-feature p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.65); font-weight: 400; }

/* --- Community page --- */
.hero--editorial { position: relative; min-height: 70vh !important; padding: 0 !important; display: flex; align-items: flex-end; }
.hero--editorial .hero__inner { padding-bottom: 4rem; position: relative; z-index: 3; }
.hero--editorial__image { position: absolute; inset: 0; z-index: 1; }
.hero--editorial__image .img-slot--hero { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; }
.hero--editorial__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(5,61,48,0.2) 0%, rgba(5,61,48,0.7) 50%, rgba(5,61,48,0.98) 100%); }
.community-statement { background: var(--charcoal); padding: 5rem 0; }
.community-statement__inner { max-width: 760px; margin: 0 auto; }
.community-statement__inner p { font-size: clamp(1.125rem, 2.5vw, 1.375rem); line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 1.5rem; }
.community-statement__inner p:last-child { margin-bottom: 0; }
.community-statement__inner p:first-child { color: rgba(255,255,255,0.8); }
.community-values { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; }
.community-value { position: relative; }
.community-value__number { font-size: 0.75rem; font-weight: 700; color: var(--green); opacity: 0.35; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.community-value h3 { font-size: 1.25rem; font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 0.625rem; }
.community-value p { font-size: 0.9375rem; line-height: 1.75; color: var(--text-secondary); font-weight: 300; }
.community-image { overflow: hidden; max-height: 400px; }
.community-image .img-slot--cinematic { width: 100%; aspect-ratio: auto; height: 400px; border-radius: 0; }
.community-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.community-stats__text h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1rem; }
.community-stats__text p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 300; }
.community-stats .stats-highlight { margin: 0; }

/* --- Mission section (Community page) --- */
.community-mission { background: var(--green); padding: 6rem 0; }
.community-mission__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.community-mission__inner h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.community-mission__inner p { font-size: 1.0625rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 1.25rem; }
.community-mission__inner p:last-of-type { margin-bottom: 2.5rem; }
.community-mission__inner .btn { margin-top: 0; }
.community-mission .form-grid { max-width: 540px; margin: 0 auto; }
.community-mission .form-group input, .community-mission .form-group textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: var(--white); }
.community-values--dark .community-value__number { color: var(--yellow); opacity: 0.5; }
.community-values--dark .community-value h3 { color: var(--white); }
.community-values--dark .community-value p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; font-weight: 400; }
/* --- Pull-quote cascade --- */
.cascade { max-width: 760px; display: flex; flex-direction: column; gap: 0; }
.cascade__item { padding: 2.25rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cascade__item:last-child { border-bottom: none; }
.cascade__statement { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--charcoal); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 0.75rem; }
.cascade__body { font-size: 1.0625rem; line-height: 1.7; color: var(--text-secondary); font-weight: 400; }
.section--dark .cascade__item { border-bottom-color: rgba(255,255,255,0.06); }
.section--dark .cascade__statement { color: var(--white); }
.section--dark .cascade__body { color: rgba(255,255,255,0.55); }

.community-stats--flat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.community-stat .stat__number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 0.375rem; letter-spacing: -0.03em; }
.community-stat .stat__label { font-size: 0.8125rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }
.community-mission .form-group input::placeholder, .community-mission .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.community-mission .form-group input:focus, .community-mission .form-group textarea:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(231,255,37,0.1); }

/* --- Sections --- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; content-visibility: auto; contain-intrinsic-size: auto 600px; }
.section--dark { background: linear-gradient(170deg, var(--charcoal) 0%, #0c2e28 50%, var(--charcoal) 100%); color: var(--white); position: relative; overflow: hidden; }
.section--green { background: linear-gradient(160deg, var(--green) 0%, #0a4a38 100%); color: var(--white); position: relative; overflow: hidden; }
.section--dark::before, .section--green::before { content: ''; position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: clamp(320px, 40vw, 560px); aspect-ratio: 1; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 16L34 496h114l108-248 108 248h114Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center/contain; opacity: 0.03; pointer-events: none; z-index: 0; }
.section--light { background: var(--light); position: relative; overflow: hidden; }
.section--watermark::before { content: ''; position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: clamp(280px, 32vw, 480px); aspect-ratio: 1; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 16L34 496h114l108-248 108 248h114Z' fill='%231d362c'/%3E%3C/svg%3E") no-repeat center/contain; opacity: 0.04; pointer-events: none; z-index: 0; }
.section__eyebrow { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--green); margin-bottom: 1rem; }
.section--dark .section__eyebrow, .section--green .section__eyebrow, .section--gradient .section__eyebrow { color: var(--yellow); }
.section__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1rem; text-wrap: balance; }
.section__desc { font-size: 1.0625rem; line-height: 1.7; color: var(--text-secondary); max-width: 560px; font-weight: 300; }
.section--dark .section__desc, .section--green .section__desc { color: rgba(255,255,255,0.55); }
.section__header { margin-bottom: 4rem; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }

/* --- Split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* --- Image Placeholders --- */
.img-placeholder { aspect-ratio: 4/3; border-radius: 8px; position: relative; overflow: hidden; }

/* --- Full-bleed image strip (personality) --- */
.img-break { width: 100%; overflow: hidden; max-height: 400px; position: relative; }
.img-break img { width: 100%; height: 400px; object-fit: cover; display: block; }
.img-break::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,61,48,0.15) 0%, rgba(20,33,34,0.4) 100%); pointer-events: none; }

/* --- Yellow accent section (personality) --- */
.accent-strip { background: var(--yellow); padding: 3.5rem 0; text-align: center; }
.accent-strip__text { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; max-width: 700px; margin: 0 auto; line-height: 1.35; }
.img-placeholder--trail { background: linear-gradient(160deg, #1a3a2a 0%, #0d2b3a 50%, #142122 100%); }
.img-placeholder--team { background: linear-gradient(135deg, #0a4a38 0%, #1a5040 50%, #053D30 100%); }
.img-placeholder::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 40%, rgba(231,255,37,0.06) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(179,207,205,0.08) 0%, transparent 40%); }
.img-placeholder::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(transparent 0%, rgba(0,0,0,0.15) 100%); clip-path: polygon(0% 100%, 15% 45%, 28% 65%, 42% 25%, 55% 50%, 68% 15%, 82% 55%, 100% 30%, 100% 100%); opacity: 0.5; }
.img-placeholder__label { position: absolute; bottom: 1.25rem; left: 1.25rem; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); z-index: 2; display: flex; align-items: center; gap: 0.5rem; }
.img-placeholder__label::before { content: ''; width: 16px; height: 1px; background: rgba(255,255,255,0.25); }

/* --- Bento Grid --- */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 1.25rem; }
.bento-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 2rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); position: relative; overflow: hidden; }
.bento-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--sage)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); border-color: transparent; }
.bento-card:hover::after { transform: scaleX(1); }
.bento-card--hero { grid-column: 1 / 3; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; background: var(--green); border-color: transparent; padding: 3rem; position: relative; }
.bento-card--hero::before { content: ''; position: absolute; inset: 0; background-image: none; background-size: 40px 40px; border-radius: 8px; pointer-events: none; }
.bento-card--hero h3 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1rem; }
.bento-card--hero p { color: rgba(255,255,255,0.9); font-size: 1.0625rem; line-height: 1.75; max-width: 480px; }
.bento-card--hero:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.bento-card--hero::after { background: linear-gradient(90deg, var(--yellow), rgba(231,255,37,0.4)); }
.bento-card--hero .bento-card__icon { background: var(--yellow-dim); }
.bento-card--hero .bento-card__icon svg { stroke: var(--yellow); }
.bento-card__detail { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.bento-tag { font-size: 0.6875rem; padding: 0.25rem 0.75rem; border-radius: 100px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); letter-spacing: 0.04em; border: 1px solid rgba(255,255,255,0.12); }
.bento-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--yellow-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background 0.3s; }
.bento-card:hover .bento-card__icon { background: var(--yellow-mid); }
.bento-card__icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.bento-card:not(.bento-card--hero) h3 { font-size: 1.0625rem; font-weight: 500; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.bento-card:not(.bento-card--hero) p { font-size: 0.875rem; line-height: 1.65; color: var(--text-tertiary); }

/* --- Legacy Feature Cards (Platform page) --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 2rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--sage)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); border-color: transparent; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--yellow-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background 0.3s; }
.feature-card:hover .feature-card__icon { background: var(--yellow-mid); }
.feature-card__icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.0625rem; font-weight: 500; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.875rem; line-height: 1.65; color: var(--text-tertiary); }

/* --- Distance Cards --- */
.distance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.distance-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 2rem 1.5rem; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); display: flex; flex-direction: column; position: relative; border-top: 3px solid transparent; }
.distance-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.06); border-top-color: var(--green); }
.distance-card:nth-child(1) { border-top-color: var(--sage); }
.distance-card:nth-child(2) { border-top-color: rgba(5,61,48,0.4); }
.distance-card:nth-child(3) { border-top-color: var(--green); }
.distance-card:nth-child(4) { border-top-color: var(--charcoal); }
.distance-card__tag { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.distance-card h3 { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 0.75rem; line-height: 1.3; }
.distance-card p { font-size: 0.8125rem; line-height: 1.65; color: var(--text-tertiary); flex: 1; }
.distance-card__link { margin-top: 1.5rem; font-size: 0.8125rem; font-weight: 500; color: var(--green); display: inline-flex; align-items: center; gap: 0.375rem; transition: gap 0.3s var(--ease); }
.distance-card:hover .distance-card__link { gap: 0.625rem; }

/* --- Stats --- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stats-row__number { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 0.375rem; letter-spacing: -0.03em; }
.stats-row__label { font-size: 0.8125rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
.section--light .stats-row__number { color: var(--green); }
.section--light .stats-row__label { color: var(--text-tertiary); }

/* --- Aside CTA (post-it feel) --- */
.aside-cta { margin-top: 3rem; padding: 1.5rem 2rem; background: rgba(231,255,37,0.08); border-left: 3px solid var(--yellow); border-radius: 0 8px 8px 0; max-width: 520px; }
.aside-cta__text { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); font-weight: 400; }
.aside-cta__link { color: var(--green); font-weight: 600; white-space: nowrap; }
.aside-cta__link:hover { color: var(--charcoal); }

.stat__number { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 0.375rem; letter-spacing: -0.03em; }
.stat__label { font-size: 0.8125rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

/* --- CTA --- */
.cta-section { padding: 7rem 0; background: linear-gradient(160deg, var(--green) 0%, #0a4a38 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(231,255,37,0.06) 0%, transparent 60%); bottom: -300px; left: -200px; }
.cta__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.cta__inner h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1rem; }
.cta__inner p { font-size: 1.0625rem; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7; }

/* --- Form --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; max-width: 540px; margin: 0 auto; text-align: left; }
.form-group--full { grid-column: 1 / -1; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; font-family: var(--font); font-size: 0.875rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: var(--white); transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(231,255,37,0.1); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-grid .btn { grid-column: 1 / -1; justify-content: center; margin-top: 0.5rem; }

/* --- Footer --- */
.footer { background: linear-gradient(170deg, var(--charcoal) 0%, #0c2e28 100%); padding: 5rem 0 2rem; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(231,255,37,0.08); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer__logo { font-weight: 700; font-size: 1.25rem; color: var(--yellow); letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.footer__logo img { height: 36px; width: auto; opacity: 0.9; }
.footer__brand { font-size: 0.875rem; line-height: 1.7; }
.footer__brand p { max-width: 280px; }
.footer__heading { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-bottom: 1rem; font-weight: 400; }
.footer__col ul { list-style: none; }
.footer__col a { display: block; padding: 0.375rem 0; font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.footer__col a:hover { color: var(--yellow); padding-left: 0.25rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; font-size: 0.75rem; color: rgba(255,255,255,0.2); display: flex; justify-content: space-between; }

/* --- Testimonial --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-left: 3px solid var(--green); border-radius: 8px; padding: 2.5rem 2.5rem 2rem; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.testimonial::before { content: '\201C'; position: absolute; top: 1rem; right: 1.5rem; font-size: 5rem; line-height: 1; color: var(--green); font-family: Georgia, serif; opacity: 0.08; }
.testimonial__text { font-size: 1.0625rem; line-height: 1.75; color: var(--text-primary); font-weight: 300; font-style: italic; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.testimonial__author { display: flex; align-items: center; gap: 0.875rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,0.06); }
.testimonial__avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--sage)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.875rem; flex-shrink: 0; overflow: hidden; border: 2px solid rgba(5,61,48,0.1); }
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial__name { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); letter-spacing: -0.01em; }
.testimonial__role { font-size: 0.8125rem; color: var(--green); font-weight: 400; }
.section--dark .testimonial { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.section--dark .testimonial__text { color: rgba(255,255,255,0.65); }
.section--dark .testimonial__name { color: var(--white); }
.section--dark .testimonial__role { color: rgba(255,255,255,0.4); }

/* --- Editorial testimonials (image left, quote right) --- */
.testimonial-stack { max-width: 960px; margin: 0 auto; }
.testimonial-editorial { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: center; padding: 3rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.testimonial-editorial:last-child { border-bottom: none; }
.testimonial-editorial__image { width: 200px; height: 200px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.testimonial-editorial__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-editorial blockquote { font-size: clamp(1.125rem, 2.5vw, 1.375rem); line-height: 1.65; color: var(--text-primary); font-weight: 400; font-style: italic; margin: 0 0 1.25rem; letter-spacing: -0.01em; }
.testimonial-editorial__event { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green); font-weight: 500; margin-bottom: 1rem; opacity: 0.6; }
.testimonial-editorial__author { display: flex; flex-direction: column; gap: 0.125rem; }
.testimonial-editorial__author strong { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); }
.testimonial-editorial__author span { font-size: 0.8125rem; color: var(--green); }

/* --- Section variants for visual differentiation --- */
.section--sage { background: var(--light); color: var(--charcoal); }
.section--sage .section__eyebrow { color: var(--green); }
.section--sage .section__desc { color: var(--text-secondary); }
.section--gradient { background: linear-gradient(160deg, var(--charcoal) 0%, var(--green) 100%); color: var(--white); }
.section--gradient .section__desc { color: rgba(255,255,255,0.55); }

/* --- Button variants --- */
.btn--outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn--primary-lg { background: var(--yellow); color: var(--charcoal); padding: 1.125rem 2.5rem; font-size: 1rem; border-radius: 6px; font-weight: 600; }
.btn--primary-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(231,255,37,0.3); }

/* --- Photo-ready image slots --- */
.img-slot { width: 100%; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; position: relative; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease), filter 0.7s var(--ease); }
.img-slot:hover img { transform: scale(1.04); }
.img-slot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%); pointer-events: none; border-radius: 8px; }
.img-slot--portrait { aspect-ratio: 3/4; }
.img-slot--wide { aspect-ratio: 16/9; }

/* --- Stronger CTA section --- */
.cta-section--strong { padding: 6rem 0; background: var(--light); position: relative; overflow: hidden; }
.cta-section--strong::before { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(5,61,48,0.04) 0%, transparent 60%); top: -400px; right: -300px; }
.cta-section--strong .cta__inner h2 { color: var(--charcoal); }
.cta-section--strong .cta__inner p { color: var(--text-secondary); }
.cta-section--strong .btn--dark { background: var(--green); }
.cta-section--strong .btn--dark:hover { box-shadow: 0 8px 30px rgba(5,61,48,0.3); }
.cta-section--strong .form-group input,
.cta-section--strong .form-group textarea { background: var(--white); border-color: rgba(0,0,0,0.1); color: var(--charcoal); }
.cta-section--strong .form-group input::placeholder,
.cta-section--strong .form-group textarea::placeholder { color: var(--text-tertiary); }
.cta-section--strong .form-group input:focus,
.cta-section--strong .form-group textarea:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(5,61,48,0.08); }

/* --- CTA option cards --- */
.cta-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; text-align: left; max-width: 960px; margin-left: auto; margin-right: auto; }
.cta-option { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 8px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.cta-option .form-grid { grid-template-columns: 1fr 1fr; gap: 0.625rem; max-width: none; }
.cta-option .form-group input, .cta-option .form-group textarea { background: var(--light); border-color: rgba(0,0,0,0.08); color: var(--charcoal); font-size: 0.8125rem; padding: 0.625rem 0.875rem; }
.cta-option .form-group input::placeholder, .cta-option .form-group textarea::placeholder { color: var(--text-tertiary); }
.cta-option .form-group input:focus, .cta-option .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(5,61,48,0.08); background: var(--white); }
.cta-option .form-group textarea { min-height: 60px; }
.cta-option .form-group--full { grid-column: 1 / -1; }
.cta-option .btn { font-size: 0.8125rem; padding: 0.75rem 1.5rem; }
.cta-option__tag { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.cta-option h3 { font-size: 1.0625rem; font-weight: 500; color: var(--charcoal); line-height: 1.35; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.cta-option p { font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); font-weight: 300; }

/* --- Page CTA (contextual per page) --- */
.page-cta { padding: 5rem 0; }
.page-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; background: var(--charcoal); border-radius: 20px; padding: 3.5rem 4rem; position: relative; overflow: hidden; }
.page-cta__grid::before { content: ''; position: absolute; inset: 0; background-image: none; background-size: 40px 40px; pointer-events: none; }
.page-cta__eyebrow { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--yellow); margin-bottom: 0.75rem; position: relative; }
.page-cta__content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.75rem; position: relative; }
.page-cta__content p { font-size: 0.9375rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.7; max-width: 500px; position: relative; }
.page-cta__action { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; flex-shrink: 0; position: relative; }
.page-cta__note { font-size: 0.6875rem; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; }
/* Variants */
.page-cta--services .page-cta__grid { background: linear-gradient(135deg, var(--green) 0%, #0a5c48 100%); }
.page-cta--platform .page-cta__grid { background: linear-gradient(135deg, #0c1e1f 0%, var(--charcoal) 100%); }
.page-cta--community .page-cta__grid { background: var(--green); }

/* --- Scroll-driven reveal animations (CSS-native, no JS) --- */
@keyframes fadeReveal { from { opacity: 0; } to { opacity: 1; } }

@supports (animation-timeline: view()) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 0;
    animation: fadeReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

/* Fallback: if no scroll-driven animation support AND no JS, content stays visible.
   The opacity:0 is ONLY set inside @supports so content never disappears. */

/* --- Reduced motion --- */
@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; }
  .hero__content > * { opacity: 1; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; }
}

/* --- Comparison table --- */
.compare { max-width: 960px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; line-height: 1.6; }
.compare thead th { padding: 1rem 1.25rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); text-align: left; border-bottom: 2px solid rgba(0,0,0,0.08); }
.compare thead th:first-child { color: transparent; }
.compare tbody th { padding: 1rem 1.25rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; border-bottom: 1px solid rgba(0,0,0,0.04); }
.compare tbody td { padding: 1rem 1.25rem; color: var(--text-secondary); border-bottom: 1px solid rgba(0,0,0,0.04); }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: none; }
.compare__heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; color: var(--green); margin-bottom: 0.5rem; }
.compare__sub { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 560px; }
@media (max-width: 768px) {
  .compare table { font-size: 0.8125rem; }
  .compare thead th,
  .compare tbody th,
  .compare tbody td { padding: 0.75rem 0.75rem; }
}

/* --- FAQ accordion --- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq details:last-child { border-bottom: none; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.75rem 0; font-size: clamp(1rem, 1.8vw, 1.125rem); font-weight: 500; color: var(--text-primary); cursor: pointer; list-style: none; line-height: 1.4; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 300; color: var(--green); border: 1px solid rgba(0,0,0,0.08); border-radius: 50%; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq .faq__answer { padding: 0 0 2rem; font-size: 1rem; line-height: 1.75; color: var(--text-secondary); font-weight: 400; max-width: 640px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .trust-bar__logos { grid-template-columns: repeat(4, 1fr); max-width: 700px; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse { direction: ltr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--hero { grid-column: 1 / -1; grid-row: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .distance-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { padding-left: 60px; }
  .timeline::before { left: 25px; }
  .timeline__marker { left: -60px; width: 50px; }
  .timeline__step { width: 44px; height: 44px; font-size: 0.8125rem; }
  .platform-showcase__layout { grid-template-columns: 1fr 240px; gap: 2rem; }
  .aside-cta--dark { max-width: 240px; }
  .platform-features { grid-template-columns: repeat(2, 1fr); }
  .community-values { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
  .community-stats { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-editorial { grid-template-columns: 160px 1fr; gap: 2rem; }
  .testimonial-editorial__image { width: 160px; height: 160px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  /* Mobile nav */
  .nav { background: rgba(5,61,48,0.95) !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
  .nav__inner { overflow: hidden; }
  .nav__links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; height: 100dvh; background: rgba(5,61,48,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; padding: 2rem; gap: 2rem; z-index: 999; visibility: hidden; opacity: 0; }
  .nav__links.open { display: flex; visibility: visible; opacity: 1; }
  .nav__links a { font-size: 1.375rem; color: rgba(255,255,255,0.85); position: relative; padding-bottom: 0; }
  .nav__links a.active, .nav__links a[aria-current="page"] { color: var(--yellow); background: transparent; padding: 0; margin: 0; border-radius: 0; }
  .nav__links a.active::after, .nav__links a[aria-current="page"]::after { bottom: -6px; left: 0; right: 0; height: 2px; background: var(--yellow); }
  .nav__links .nav__cta { margin-top: 1rem; font-size: 1rem !important; padding: 0.75rem 2rem; display: inline-flex; }
  .nav__toggle { display: block; z-index: 1000; position: relative; }
  .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
@media (max-width: 768px) {
  .hero__inner { gap: 2rem; }
  .bento-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .bento-card--hero { padding: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .distance-grid { grid-template-columns: 1fr; }
  .platform-showcase__layout { grid-template-columns: 1fr; }
  .aside-cta--dark { max-width: 100%; }
  .platform-features { grid-template-columns: 1fr; }
  .community-values { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-editorial { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .testimonial-editorial__image { margin: 0 auto; }
  .page-cta__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem; }
  .page-cta__action { align-items: stretch; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .section__title { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .proving-grounds__split { grid-template-columns: 1fr; gap: 2rem; }
  .proving-grounds__text { position: static; }
  .cta-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero__sub { font-size: 1rem; }
  .hero__badge { font-size: 0.6875rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__actions .btn { text-align: center; justify-content: center; white-space: normal; }
  .section__title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .section__desc { font-size: 0.9375rem; }
  .section__header { margin-bottom: 2.5rem; }
  .split { gap: 2rem; }
  .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bento-card--hero { padding: 2rem; }
  .bento-card--hero h3 { font-size: 1.25rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pillar-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pillar-card { padding: 1.75rem; }
  .distance-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card { padding: 1.5rem; }
  .distance-card { padding: 1.5rem 1.25rem; }
  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .timeline__marker { position: relative; left: 0; margin-bottom: 1rem; }
  .timeline__step { width: 40px; height: 40px; font-size: 0.75rem; }
  .timeline__content { padding-left: 0; border-left: none; }
  .timeline__item { padding-bottom: 3rem; }
  .platform-showcase__layout { grid-template-columns: 1fr; }
  .aside-cta--dark { max-width: 100%; }
  .platform-features { grid-template-columns: 1fr; }
  .platform-feature { padding: 1.75rem; }
  .pillar-prose__item { flex-direction: column; gap: 0.5rem; }
  .community-values { grid-template-columns: 1fr; gap: 2.5rem; }
  .community-stats { grid-template-columns: 1fr; gap: 2rem; }
  .community-image { max-height: 280px; }
  .community-image .img-slot--cinematic { height: 280px; }
  .community-statement { padding: 3rem 0; }
  .community-statement__inner p { font-size: 1rem; }
  .community-mission { padding: 4rem 0; }
  .page-cta__grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; }
  .page-cta__action { align-items: stretch; }
  .page-cta__action .btn { text-align: center; justify-content: center; }
  .page-cta__note { text-align: center; }
  .hero--editorial { min-height: 60vh !important; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 1.75rem; }
  .testimonial::before { font-size: 3rem; top: 0.75rem; left: 1.25rem; }
  .testimonial-editorial { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .testimonial-editorial__image { width: 140px; height: 140px; margin: 0 auto; }
  .testimonial-editorial__author { align-items: center; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
  .stat__number { font-size: clamp(2rem, 8vw, 2.5rem); }
  .cta-options { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 4rem 0; }
  .cta-section--strong { padding: 4rem 0; }
  .cta__inner { padding: 0 0.5rem; }
  .cta__inner h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .cta__inner p { font-size: 0.9375rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .mock-dashboard { padding: 1rem; }
  .mock__stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .mock__stat-value { font-size: 1.25rem; }
  .mock__floating { display: none; }
  .img-placeholder { aspect-ratio: 3/2; }
  .img-slot { aspect-ratio: 3/2; }
  .proving-grounds { padding: 4rem 0; }
  .proving-grounds__split { grid-template-columns: 1fr; gap: 2.5rem; }
  .proving-grounds__text { position: static; }
  .proving-grounds__bento { grid-template-columns: repeat(2, 1fr); }
  .proving-grounds__cell--spine { grid-column: 1 / -1; }
  .proving-grounds__cell--spine img { max-height: 72px; }
  .proving-grounds__cell--hu,
  .proving-grounds__cell--rangers { grid-column: span 1; }
  .btn--primary-lg { padding: 1rem 2rem; font-size: 0.9375rem; }
  .page-id__watermark { display: none; }
  .pull-quote { padding: 2.5rem 0; }
  .pull-quote__text { font-size: 1.25rem; }
  .stats-highlight { grid-template-columns: repeat(3, 1fr); padding: 2rem 1.5rem; border-radius: 8px; gap: 1rem; }
  .stats-highlight .stat__number { font-size: 2rem; }
}

/* --- Print --- */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  body { font-size: 11pt; line-height: 1.5; }
  .nav, .nav__toggle, .hero::before, .hero::after, .section--dark::before, .section--green::before, .section--watermark::before { display: none !important; }
  .hero { min-height: auto !important; padding: 2rem 0 !important; }
  .hero h1 { font-size: 24pt; }
  .btn, .btn--primary, .btn--ghost, .btn--dark, .nav__cta { border: 1px solid #000; padding: 0.5rem 1rem; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; font-weight: 300; }
  .nav__links a[href]::after, .btn[href]::after, .footer a[href]::after { content: none; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  .section--dark, .section--green, .hero { color: #000 !important; }
  .footer { border-top: 1px solid #ccc; padding-top: 1rem; }
}
