/* ============================================================
   ATLAS GUIDE — HOMEPAGE v2 (redesign)
   Scoped under .v2-* prefix. No global tokens redefined here
   except as fallbacks (in case global.css isn't loaded yet).
   ============================================================ */

/* -- Fallback tokens (mirror global.css; will be overridden by it if present) -- */
:root {
  --ag-green-900: #0D2118;
  --ag-green-800: #1A3A2B;
  --ag-green-700: #1F4D35;
  --ag-green-600: #2E6B4A;
  --ag-green-500: #3D8A5E;
  --ag-green-400: #4D9E72;
  --ag-green-100: #C3DDD0;
  --ag-green-50:  #E8F4ED;
  --ag-gold-700:  #8A6020;
  --ag-gold-600:  #B07A28;
  --ag-gold-500:  #C9A85C;
  --ag-gold-400:  #D9BC80;
  --ag-gold-50:   #FBF5E6;
  --ag-terra-500: #C24B3A;
  --ag-terra-50:  #FDECEA;
  --ag-ocean-500: #5C7B8A;
  --ag-night:     #1C1C1A;
  --ag-ink:       #2A2420;
  --ag-ink-mid:   #5C5248;
  --ag-ink-light: #9A8E85;
  --ag-parchment: #F5F0E8;
  --ag-warm-white:#FBF8F2;
  --bg:           var(--ag-warm-white);
  --bg-warm:      var(--ag-parchment);
  --bg-card:      #fff;
  --text:         var(--ag-ink);
  --text-mid:     var(--ag-ink-mid);
  --text-light:   var(--ag-ink-light);
  --border:       rgba(26, 58, 43, 0.10);
  --shadow-md:    0 6px 28px rgba(26, 36, 32, 0.10);
  --shadow-lg:    0 16px 56px rgba(26, 36, 32, 0.14);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-full:  100px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   REVEAL
   ============================================================ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION-NUMBER MARGINALIA
   ============================================================ */
.v2-section-num {
  display: flex; align-items: center; gap: 14px;
  padding: 32px clamp(20px, 4vw, 64px) 0;
  max-width: 1480px; margin: 0 auto;
  font-family: var(--font-body);
  color: var(--ag-green-800);
}
.v2-section-num-digit {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 1.4rem; line-height: 1;
  color: var(--ag-gold-600);
}
.v2-section-num-rule { width: 40px; height: 1px; background: currentColor; opacity: .25; }
.v2-section-num-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ag-ink-mid);
}
.v2-section-num-dark .v2-section-num-digit { color: var(--ag-gold-400); }
.v2-section-num-dark .v2-section-num-label { color: rgba(255,255,255,.55); }
.v2-section-num-dark .v2-section-num-rule  { background: #fff; }

/* Shared section title */
.v2-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.v2-section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--ag-green-700);
}
.v2-section-title-light { color: #fff; }
.v2-section-title-light em { color: var(--ag-gold-400); }

.v2-section-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 580px;
  text-wrap: pretty;
}
.v2-section-desc-light { color: rgba(255,255,255,.72); }

.v2-pre-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ag-green-800);
  margin-bottom: 18px;
}
.v2-pre-rule { width: 28px; height: 1px; background: var(--ag-gold-500); }
.v2-pre-eyebrow-light { color: rgba(255,255,255,.7); }
.v2-pre-eyebrow-light .v2-pre-rule { background: var(--ag-gold-400); }

.v2-link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  color: var(--ag-green-800); transition: gap .25s var(--ease-out);
}
.v2-link-arrow:hover { gap: 14px; color: var(--ag-green-600); }

.v2-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ag-green-800); color: #fff;
  padding: 16px 28px; border-radius: var(--radius-full);
  font-size: .92rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(26, 58, 43, .22);
  border: 0; cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s;
  font-family: var(--font-body);
}
.v2-btn-primary:hover { background: var(--ag-green-700); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(26, 58, 43, .32); }
.v2-btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ag-green-800);
  padding: 16px 28px; border-radius: var(--radius-full);
  font-size: .92rem; font-weight: 700; border: 0; cursor: pointer;
  font-family: var(--font-body); box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.v2-btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.v2-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); color: #fff;
  padding: 16px 26px; border-radius: var(--radius-full);
  font-size: .92rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s;
  font-family: var(--font-body);
}
.v2-btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.v2-btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ag-green-800); padding: 16px 26px; border-radius: var(--radius-full);
  font-size: .92rem; font-weight: 600;
  border: 1.5px solid rgba(26, 58, 43, .25);
  background: transparent;
  font-family: var(--font-body);
  transition: background .25s, border-color .25s;
}
.v2-btn-ghost-dark:hover { background: rgba(26, 58, 43, .06); border-color: var(--ag-green-800); }

/* ============================================================
   1 · HERO
   ============================================================ */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ag-night);
  /* Establish stacking context so all z-index children are self-contained */
  isolation: isolate;
}

/* z-index stack inside .v2-hero:
   1  = slideshow images
   2  = dark veil overlay
   3  = decorative marginalia corners (non-interactive)
   4  = live news pill
   5  = main hero content (wrap) + bottom strip
   30 = search results dropdown (must clear all hero chrome)
*/

.v2-hero-slideshow { position: absolute; inset: 0; z-index: 1; }
.v2-hero-slideshow .v2-hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.6s ease;
}
.v2-hero-slideshow .v2-hero-slide.active { opacity: 1; }
.v2-hero-slideshow .v2-hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: v2-ken 14s ease-in-out infinite alternate;
}
@keyframes v2-ken {
  0%   { transform: scale(1.06) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
.v2-hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(12,10,9,.55) 0%, rgba(12,10,9,.25) 35%, rgba(12,10,9,.55) 70%, rgba(12,10,9,.85) 100%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%);
}

/* Corner marginalia — decorative only, pointer-events:none.
   z-index: 3 keeps them above the veil but below interactive chrome.
   On mobile the top corners are hidden (overlapping the news pill)
   so they are display:none at <=800px — see responsive section. */
.v2-hero-marginalia {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  font-family: var(--font-body);
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.v2-mar { position: absolute; display: flex; align-items: center; gap: 10px; }
.v2-mar-coord {
  font-family: var(--font-display); font-style: italic; font-size: .9rem;
  letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.6);
}
/* Push bottom corners above the marquee strip (strip is ~60px tall) */
.v2-mar-tl { top: 110px; left: clamp(20px, 4vw, 64px); }
.v2-mar-tr { top: 110px; right: clamp(20px, 4vw, 64px); }
.v2-mar-bl { bottom: 72px; left: clamp(20px, 4vw, 64px); }
.v2-mar-br { bottom: 72px; right: clamp(20px, 4vw, 64px); }

/* news pill — z-index 4, sits above marginalia */
.v2-hero-news {
  position: absolute; top: 110px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.32); backdrop-filter: blur(14px);
  padding: 10px 18px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.15);
  transition: background .25s, transform .25s;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  white-space: nowrap;
}
.v2-hero-news:hover { background: rgba(0,0,0,.5); transform: translateX(-50%) translateY(-2px); }
.v2-hero-news-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ag-terra-500);
  box-shadow: 0 0 0 0 rgba(194,75,58,.7);
  animation: v2-news-pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes v2-news-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(194,75,58,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(194,75,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(194,75,58,0); }
}

/* hero content: grid headline-left + floating card right */
.v2-hero-wrap {
  position: relative; z-index: 5;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 170px clamp(20px, 4vw, 64px) 140px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.v2-hero-head { max-width: 720px; }
.v2-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  animation: v2-fade-up .8s var(--ease-out) both;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.v2-hero-eyebrow-rule { width: 28px; height: 1px; background: var(--ag-gold-400); }

.v2-hero-h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: .92;
  letter-spacing: -.035em;
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.v2-hero-line { display: block; animation: v2-fade-up .9s var(--ease-out) both; }
.v2-hero-line-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--ag-gold-400);
  animation-delay: .12s;
  padding-left: clamp(40px, 6vw, 90px);
}

.v2-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 0 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
  animation: v2-fade-up .9s var(--ease-out) .2s both;
}
.v2-hero-sub em { font-family: var(--font-display); font-style: italic; color: var(--ag-gold-400); font-weight: 400; font-size: 1.08em; }

/* search — FIXED: search-inner establishes its own stacking context
   and results dropdown uses z-index: 30 to clear all hero chrome */
.v2-hero-search {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px; flex-wrap: wrap;
  animation: v2-fade-up .9s var(--ease-out) .3s both;
  position: relative; z-index: 10;
}
.v2-hero-search-inner {
  position: relative;
  flex: 1; min-width: 280px; max-width: 460px;
}
.v2-hero-search-inner input {
  width: 100%;
  padding: 17px 56px 17px 50px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: var(--radius-full);
  background: rgba(15,15,13,.9);
  backdrop-filter: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  outline: 0;
  transition: background .25s, border-color .25s;
}
.v2-hero-search-inner input::placeholder { color: rgba(255,255,255,.55); }
.v2-hero-search-inner input:focus {
  background: rgba(20,20,16,.95);
  border-color: rgba(201,168,92,.6);
}
.v2-hero-search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.6); pointer-events: none;
  z-index: 1;
}
.v2-hero-search-kbd {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center;
  pointer-events: none;
  z-index: 1;
}
.v2-hero-search-kbd kbd {
  font-family: var(--font-body);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.75);
  padding: 4px 9px; border-radius: 6px;
  font-size: .75rem;
}
/* FIXED: fully opaque background, no backdrop-filter — prevents see-through effect */
.v2-hero-search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #141412;
  border-radius: var(--radius-md);
  overflow: hidden; display: none;
  z-index: 30;
  border: 1px solid rgba(255,255,255,.08);
  max-height: 360px; overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,.8);
}
.v2-hsr-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; color: #fff; transition: background .2s;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.v2-hsr-item:last-child { border-bottom: 0; }
.v2-hsr-item:hover { background: rgba(255,255,255,.08); }
.v2-hsr-name { font-weight: 600; font-size: .95rem; }
.v2-hsr-region { font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }
.v2-hsr-empty { padding: 14px 20px; color: rgba(255,255,255,.45); font-size: .9rem; }

.v2-hero-quiz {
  display: inline-flex; align-items: center; gap: 9px;
  color: #fff; font-family: var(--font-body);
  font-weight: 600; font-size: .95rem;
  padding: 15px 22px;
  border: 1.5px solid rgba(201,168,92,.45);
  border-radius: var(--radius-full);
  background: rgba(201,168,92,.08);
  transition: background .25s, border-color .25s, transform .25s;
  white-space: nowrap;
  /* Ensure it doesn't compete with the search dropdown */
  position: relative; z-index: 1;
}
.v2-hero-quiz:hover { background: rgba(201,168,92,.18); border-color: var(--ag-gold-500); transform: translateY(-1px); }
.v2-hero-quiz-icon { color: var(--ag-gold-400); }

/* proof bar */
.v2-hero-proof {
  display: flex; flex-wrap: wrap; gap: 28px;
  list-style: none; margin: 0; padding: 0;
  animation: v2-fade-up .9s var(--ease-out) .4s both;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}
.v2-hero-proof li {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  display: flex; align-items: baseline; gap: 8px;
}
.v2-hero-proof li strong {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: 1.4rem; color: var(--ag-gold-400); letter-spacing: -.02em;
}

/* floating field-card */
.v2-hero-card {
  position: relative;
  background: rgba(15, 18, 16, .58);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 32px 32px 28px;
  color: #fff;
  max-width: 380px; justify-self: end;
  animation: v2-fade-up 1.2s var(--ease-out) .25s both;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.v2-hero-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201,168,92,.18), transparent 40%, transparent 60%, rgba(201,168,92,.1));
  pointer-events: none;
  mix-blend-mode: overlay;
}
.v2-hero-card-rule { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.v2-hero-card-tick { width: 7px; height: 7px; border-radius: 50%; background: var(--ag-gold-400); box-shadow: 0 0 0 3px rgba(201,168,92,.18); }
.v2-hero-card-label {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.v2-hero-card-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 2.4rem; line-height: 1; letter-spacing: -.02em;
  margin-bottom: 8px;
}
.v2-hero-card-tag {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.02rem; line-height: 1.45; color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}
.v2-hero-card-meta {
  display: flex; flex-direction: column; gap: 11px;
  padding: 16px 0; margin-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.v2-hero-card-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: .82rem;
}
.v2-hero-card-meta-k { color: rgba(255,255,255,.55); }
.v2-hero-card-meta-v { color: #fff; font-weight: 600; }
.v2-hero-card-meta-pill {
  background: rgba(77,158,114,.2); color: #9fd9b3 !important;
  padding: 3px 11px; border-radius: var(--radius-full);
  font-size: .7rem !important; letter-spacing: .05em;
  border: 1px solid rgba(77,158,114,.3);
}
.v2-hero-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 700;
  color: var(--ag-gold-400);
  transition: gap .25s var(--ease-out), color .25s;
}
.v2-hero-card-cta:hover { gap: 12px; color: #fff; }

/* bottom marquee strip — FIXED: z-index 5 matches the wrap but
   strip is at the bottom edge, does not overlap marginalia.
   Marginalia bottom corners pushed up via .v2-mar-bl / .v2-mar-br above. */
.v2-hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 18px 0 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v2-hero-strip-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: v2-marquee 60s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.v2-hero-strip-track span {
  display: inline-flex; align-items: center; gap: 14px;
  font-style: italic;
}
.v2-hero-strip-track span::after {
  content: '\25C6';
  font-size: .55rem;
  color: var(--ag-gold-400);
  font-style: normal;
}
@keyframes v2-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes v2-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   2 · ATLAS — continent navigator
   ============================================================ */
.v2-atlas {
  background: var(--bg);
  padding: 8px 0 120px;
  position: relative;
}
.v2-atlas-wrap {
  max-width: 1480px; margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 64px) 0;
}
.v2-atlas-header { max-width: 760px; margin-bottom: 48px; }

.v2-atlas-tabs {
  display: flex; gap: 8px;
  margin-bottom: 36px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.v2-atlas-tabs::-webkit-scrollbar { display: none; }
.v2-atlas-tab {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer;
  transition: all .3s var(--ease-out);
}
.v2-atlas-tab:hover { color: var(--ag-green-800); border-color: rgba(26,58,43,.25); }
.v2-atlas-tab.active {
  background: var(--ag-green-800); color: #fff; border-color: var(--ag-green-800);
  box-shadow: 0 6px 20px rgba(26,58,43,.18);
}
.v2-atlas-tab-num {
  font-family: var(--font-display); font-style: italic;
  font-size: .9rem;
  color: var(--ag-gold-600);
}
.v2-atlas-tab.active .v2-atlas-tab-num { color: var(--ag-gold-400); }

.v2-atlas-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  min-height: 540px;
}

.v2-atlas-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 540px;
  background: var(--ag-night);
  isolation: isolate;
}
.v2-atlas-hero-img {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-out);
}
.v2-atlas-hero:hover .v2-atlas-hero-img { transform: scale(1.04); }
.v2-atlas-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.85) 100%);
}
.v2-atlas-hero-body {
  position: relative; z-index: 3;
  padding: 36px 40px 40px;
  color: #fff;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.v2-atlas-hero-coord {
  font-family: var(--font-body);
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.v2-atlas-hero-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.v2-atlas-hero-tag {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; line-height: 1.5;
  color: rgba(255,255,255,.88);
  max-width: 520px; margin-bottom: 22px;
}
.v2-atlas-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 12px 22px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: .88rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  transition: background .25s, gap .25s var(--ease-out);
}
.v2-atlas-hero-cta:hover { background: rgba(255,255,255,.28); gap: 14px; }

.v2-atlas-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.v2-atlas-facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
}
.v2-atlas-facts-eyebrow {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ag-green-800); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.v2-atlas-facts-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--ag-gold-500); }
/* FIXED: use a proper open-quote character entity instead of a raw curly quote */
.v2-atlas-facts-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.15rem; line-height: 1.5; color: var(--text);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.v2-atlas-facts-quote::before {
  content: '\201C';
  font-size: 2.6rem; line-height: 0;
  color: var(--ag-gold-500); margin-right: 4px;
  vertical-align: -.4em;
}
.v2-atlas-facts-attr {
  font-family: var(--font-body);
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light); font-weight: 600;
}

.v2-atlas-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.v2-atlas-mini-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  background: var(--bg-warm);
  transition: transform .4s var(--ease-out);
}
.v2-atlas-mini-card:hover { transform: translateY(-3px); }
.v2-atlas-mini-card .v2-atlas-mini-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-out);
}
.v2-atlas-mini-card:hover .v2-atlas-mini-img { transform: scale(1.08); }
.v2-atlas-mini-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.78) 100%);
}
.v2-atlas-mini-body {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  color: #fff;
}
.v2-atlas-mini-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  line-height: 1.1; margin-bottom: 2px;
}
.v2-atlas-mini-tag {
  font-family: var(--font-body); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.v2-atlas-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.v2-atlas-foot-line { display: inline-flex; align-items: baseline; gap: 12px; }
.v2-atlas-foot-num {
  font-family: var(--font-display); font-style: italic;
  font-weight: 500;
  font-size: 2rem; color: var(--ag-green-800); letter-spacing: -.02em;
}
.v2-atlas-foot-text {
  font-family: var(--font-body); font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-light); font-weight: 700;
}

/* ============================================================
   3 · TOOLS — bento grid
   ============================================================ */
.v2-tools {
  background: var(--bg-warm);
  padding: 0 0 130px;
  position: relative;
}
.v2-tools-wrap {
  max-width: 1480px; margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 64px) 0;
}
.v2-tools-header { max-width: 760px; margin-bottom: 48px; }

.v2-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.v2-bento-tile {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  color: inherit;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.v2-bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(26, 58, 43, .12);
  border-color: rgba(26, 58, 43, .2);
}

/* Feature tile spans 2x2 */
.v2-bento-feature {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  background: linear-gradient(135deg, var(--ag-green-800) 0%, var(--ag-green-700) 100%);
  color: #fff;
  border-color: var(--ag-green-700);
  position: relative;
}
.v2-bento-feature:hover { border-color: var(--ag-green-600); }
.v2-bento-feature::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(201,168,92,.22), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(77,158,114,.15), transparent 50%);
  pointer-events: none;
}
.v2-bento-feature-art {
  position: relative; z-index: 1;
  flex: 1;
  padding: 28px 28px 0;
  display: flex; flex-direction: column; gap: 12px;
  perspective: 800px;
}
.v2-bento-day {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
  transform: perspective(800px) rotateX(8deg) rotateY(-6deg);
  transition: transform .5s var(--ease-out);
  transform-origin: top left;
}
.v2-bento-feature:hover .v2-bento-day {
  transform: perspective(800px) rotateX(4deg) rotateY(-3deg);
}
.v2-bento-day-2 {
  margin-left: 28px;
  transform: perspective(800px) rotateX(8deg) rotateY(-6deg) translateY(-4px);
  background: rgba(255,255,255,.05);
}
.v2-bento-day-h {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700; color: #fff;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.v2-bento-day-x { color: rgba(255,255,255,.4); font-size: .9rem; }
.v2-bento-day-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem; color: rgba(255,255,255,.78);
  padding: 4px 0;
}
.v2-bento-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ag-gold-400); flex-shrink: 0; }
.v2-bento-dot-2 { background: rgba(255,255,255,.5); }

.v2-bento-feature-body {
  position: relative; z-index: 2;
  padding: 22px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.25));
}
.v2-bento-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .65rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ag-gold-400);
  margin-bottom: 10px;
}
.v2-bento-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.9rem; line-height: 1.05; margin: 0 0 8px;
  color: #fff; letter-spacing: -.02em;
}
.v2-bento-desc {
  font-family: var(--font-body); font-size: .9rem;
  line-height: 1.55; color: rgba(255,255,255,.75);
  margin: 0 0 16px; max-width: 460px;
}
.v2-bento-cta {
  font-family: var(--font-body); font-size: .85rem;
  font-weight: 700; color: var(--ag-gold-400);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .25s var(--ease-out);
}
.v2-bento-feature:hover .v2-bento-cta { gap: 12px; }

/* Small tiles */
.v2-bento-small {
  position: relative;
}
.v2-bento-glyph {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--ag-green-50);
  color: var(--ag-green-800);
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.v2-bento-glyph svg { width: 24px; height: 24px; }
.v2-bento-small:hover .v2-bento-glyph { background: var(--ag-green-800); color: var(--ag-gold-400); }
.v2-bento-glyph-coin { background: var(--ag-gold-50); color: var(--ag-gold-700); }
.v2-bento-small:hover .v2-bento-glyph-coin { background: var(--ag-gold-600); color: #fff; }

.v2-bento-small-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.18rem; line-height: 1.15;
  margin: 0 0 6px; color: var(--text); letter-spacing: -.01em;
}
.v2-bento-small-desc {
  font-family: var(--font-body); font-size: .82rem;
  line-height: 1.55; color: var(--text-mid); margin: 0;
}
.v2-bento-small::after {
  content: '\2192';
  position: absolute; right: 18px; bottom: 16px;
  font-size: 1.1rem; color: var(--text-light);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.v2-bento-small:hover::after { opacity: 1; transform: translateX(0); }

/* Emergency tile */
.v2-bento-emergency .v2-bento-glyph { background: var(--ag-terra-50); color: var(--ag-terra-500); }
.v2-bento-emergency:hover .v2-bento-glyph { background: var(--ag-terra-500); color: #fff; }

/* ============================================================
   4 · ROAD TRIPS — cinematic filmstrip
   ============================================================ */
.v2-roads {
  background: var(--ag-green-900);
  color: #fff;
  padding: 0 0 110px;
  position: relative;
  overflow: hidden;
}
.v2-roads::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(201,168,92,.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(77,158,114,.08), transparent 60%);
  pointer-events: none;
}

/* FIXED: removed duplicate .v2-roads-head declaration.
   The second rule (which overwrote max-width) is kept; max-width matches the site container. */
.v2-roads-head {
  max-width: 1480px; margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 64px) 48px;
}
.v2-roads-head .v2-section-desc { max-width: 600px; }

.v2-roads-rail {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 64px);
}
.v2-roads-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px clamp(20px, 4vw, 64px) 28px 0;
  scroll-padding-left: clamp(20px, 4vw, 64px);
}
.v2-roads-track::-webkit-scrollbar { display: none; }

.v2-road-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ag-night);
  display: block;
  aspect-ratio: 4 / 5;
  transition: transform .4s var(--ease-out);
}
.v2-road-card:hover { transform: translateY(-6px); }
.v2-road-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease-out);
}
.v2-road-card:hover .v2-road-card-img { transform: scale(1.06); }
.v2-road-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.85) 100%);
}
.v2-road-card-num {
  position: absolute; top: 22px; left: 24px; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.6rem;
  color: var(--ag-gold-400);
  letter-spacing: -.02em;
}
.v2-road-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 26px 24px;
  color: #fff;
}
.v2-road-card-country {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.v2-road-card-country::before { content: ''; width: 18px; height: 1px; background: var(--ag-gold-400); }
.v2-road-card-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.6rem; line-height: 1.1; margin-bottom: 14px;
  letter-spacing: -.015em;
}
.v2-road-card-meta {
  display: flex; gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.v2-road-card-meta-item { display: flex; flex-direction: column; gap: 2px; }
.v2-road-card-meta-k { font-family: var(--font-body); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.v2-road-card-meta-v { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: #fff; }

.v2-roads-controls {
  display: flex; align-items: center; gap: 16px;
  padding: 0 clamp(20px, 4vw, 64px) 0 0;
  max-width: 1480px; margin: 0 auto;
}
.v2-roads-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.v2-roads-btn:hover { background: rgba(255,255,255,.16); border-color: var(--ag-gold-400); transform: scale(1.06); }
.v2-roads-prog {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px; overflow: hidden;
  max-width: 320px;
}
.v2-roads-prog-fill {
  display: block; height: 100%;
  background: var(--ag-gold-400);
  width: 20%;
  transition: width .4s var(--ease-out);
}
.v2-roads-all {
  font-family: var(--font-body); font-size: .88rem; font-weight: 700;
  color: var(--ag-gold-400);
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto;
  transition: gap .25s var(--ease-out), color .25s;
}
.v2-roads-all:hover { gap: 12px; color: #fff; }

/* ============================================================
   5 · GUIDE — editorial pullout
   ============================================================ */
.v2-guide {
  background: var(--bg);
  padding: 120px 0;
}
.v2-guide-wrap {
  max-width: 1480px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.v2-guide-list {
  list-style: none; padding: 0; margin: 32px 0 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.v2-guide-list li {
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--font-body); font-size: .96rem;
  line-height: 1.6; color: var(--text-mid);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.v2-guide-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.v2-guide-list li strong { color: var(--text); font-weight: 700; }
.v2-guide-li-num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.2rem; color: var(--ag-gold-600);
  flex-shrink: 0; min-width: 32px;
  letter-spacing: -.02em;
}

/* FIXED: guide visual uses relative positioning on desktop with an
   explicit min-height so the absolutely-placed cards don't collapse
   the container. On mobile, cards revert to relative flow. */
.v2-guide-visual {
  position: relative;
  min-height: 560px;
}
.v2-gc {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(26,36,32,.1);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.v2-gc:hover { transform: translateY(-6px); box-shadow: 0 26px 64px rgba(26,36,32,.16); z-index: 10; }

.v2-gc-1 { top: 0; left: 0; width: 60%; z-index: 3; }
.v2-gc-img {
  width: 100%; aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
}
.v2-gc-2 {
  top: 35%; right: 0; width: 58%; z-index: 4;
  transform: rotate(2deg);
}
.v2-gc-2:hover { transform: rotate(0deg) translateY(-6px); }
.v2-gc-3 {
  bottom: 0; left: 8%; width: 50%; z-index: 2;
  transform: rotate(-3deg);
}
.v2-gc-3:hover { transform: rotate(0deg) translateY(-6px); }

.v2-gc-body { padding: 22px 24px 24px; }
.v2-gc-flag {
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 10px;
}
.v2-gc-label {
  display: inline-block;
  font-family: var(--font-body); font-size: .65rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ag-green-800);
  padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--ag-green-50);
  margin-bottom: 12px;
}
.v2-gc-body p {
  font-family: var(--font-body); font-size: .9rem;
  line-height: 1.6; color: var(--text-mid); margin: 0;
}
.v2-gc-rows {
  display: flex; flex-direction: column; gap: 8px;
}
.v2-gc-rows > div {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-body); font-size: .88rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.v2-gc-rows > div:last-child { border-bottom: 0; }
.v2-gc-rows > div span:first-child { color: var(--text-mid); }
.v2-gc-rows > div span:last-child {
  font-family: var(--font-display); font-style: italic;
  color: var(--ag-green-800); font-weight: 500;
}

/* ============================================================
   6 · PARTNERS
   ============================================================ */
.v2-partners {
  background: var(--bg-warm);
  padding: 110px 0;
}
.v2-partners-wrap {
  max-width: 1480px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.v2-partners-head { max-width: 720px; margin-bottom: 48px; }
.v2-partners-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.v2-partner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
  position: relative;
  color: inherit;
  min-height: 170px;
}
.v2-partner:hover {
  transform: translateY(-3px);
  border-color: var(--ag-green-800);
  box-shadow: 0 12px 32px rgba(26, 58, 43, .1);
}
.v2-partner-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.v2-partner-tag {
  font-family: var(--font-body); font-size: .62rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ag-gold-700);
  background: var(--ag-gold-50);
  padding: 4px 10px; border-radius: var(--radius-full);
  white-space: nowrap;
}
.v2-partner-logo {
  width: 56px; height: 36px;
  display: flex; align-items: center; justify-content: flex-start;
}
.v2-partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(.15); transition: filter .3s; }
.v2-partner:hover .v2-partner-logo img { filter: grayscale(0); }
.v2-partner-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.15rem; line-height: 1.1; margin: 0;
  color: var(--text);
}
.v2-partner-desc {
  font-family: var(--font-body); font-size: .8rem;
  color: var(--text-mid); line-height: 1.5;
  margin: 0;
}
.v2-partner-arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  color: var(--ag-green-800);
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.v2-partner:hover .v2-partner-arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   7 · NEWSLETTER
   ============================================================ */
.v2-news {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.v2-news-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: v2-ken 18s ease-in-out infinite alternate;
}
.v2-news-veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(13,33,24,.92) 0%, rgba(26,58,43,.78) 100%);
}
.v2-news-wrap {
  position: relative; z-index: 3;
  max-width: 720px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  text-align: center;
}
.v2-news-wrap .v2-pre-eyebrow { justify-content: center; }
.v2-news-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05; color: #fff;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}
.v2-news-title em { font-style: italic; color: var(--ag-gold-400); font-weight: 400; }
.v2-news-desc {
  font-family: var(--font-body); font-size: 1.02rem;
  line-height: 1.7; color: rgba(255,255,255,.78);
  margin: 0 0 36px;
}
.v2-news-actions {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.v2-news-fine {
  font-family: var(--font-body);
  font-size: .76rem; letter-spacing: .04em;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   8 · FAQ
   ============================================================ */
.v2-faq { background: var(--bg); padding: 110px 0; }
.v2-faq-wrap {
  max-width: 1480px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.v2-faq-head { max-width: 600px; margin-bottom: 48px; }

.v2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.v2-faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
}
.v2-faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
.v2-faq-item summary {
  padding: 22px 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.18rem; line-height: 1.3;
  color: var(--text); cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color .25s;
  letter-spacing: -.005em;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary:hover { color: var(--ag-green-800); }
.v2-faq-x {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .35s var(--ease-out);
}
.v2-faq-x::before, .v2-faq-x::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ag-green-800);
  transform: translate(-50%, -50%);
}
.v2-faq-x::before { width: 14px; height: 1.5px; }
.v2-faq-x::after  { width: 1.5px; height: 14px; transition: transform .35s var(--ease-out); }
.v2-faq-item[open] .v2-faq-x::after { transform: translate(-50%, -50%) rotate(90deg); }

.v2-faq-a {
  padding: 0 0 24px;
  font-family: var(--font-body);
  font-size: .94rem; line-height: 1.7;
  color: var(--text-mid);
  max-width: 580px;
  text-wrap: pretty;
}

/* ============================================================
   9 · FINAL CTA
   ============================================================ */
.v2-cta {
  background: var(--ag-green-900);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.v2-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,168,92,.18), transparent 60%);
  pointer-events: none;
}
.v2-cta-wrap {
  position: relative;
  max-width: 880px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  text-align: center;
}
.v2-cta-eyebrow {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ag-gold-400); margin-bottom: 20px;
}
.v2-cta-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1; letter-spacing: -.035em;
  color: #fff;
  margin: 0 0 18px;
}
.v2-cta-h em {
  font-style: italic;
  color: var(--ag-gold-400);
  font-weight: 400;
  display: inline-block;
  min-width: 4ch;
  transition: opacity .4s ease;
}
.v2-cta-sub {
  font-family: var(--font-body); font-size: 1.05rem;
  color: rgba(255,255,255,.7); line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 520px;
}
.v2-cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
}
.v2-cta .v2-btn-ghost-dark {
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.v2-cta .v2-btn-ghost-dark:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .v2-hero-wrap { grid-template-columns: 1fr; }
  .v2-hero-card { justify-self: start; margin-top: 24px; }
  .v2-atlas-stage { grid-template-columns: 1fr; }
  .v2-atlas-hero { min-height: 420px; }
  .v2-guide-wrap { grid-template-columns: 1fr; gap: 60px; }
  .v2-guide-visual { min-height: 480px; }
  .v2-bento { grid-template-columns: repeat(3, 1fr); }
  .v2-bento-feature { grid-column: span 3; grid-row: span 1; min-height: 360px; }
  .v2-bento-feature .v2-bento-feature-art { padding: 24px 24px 0; }
  .v2-partners-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  /* Hide top-corner marginalia on mobile — they collide with the news pill */
  .v2-mar-tl, .v2-mar-tr { display: none; }
  /* Also hide bottom-corner marginalia on mobile for cleanliness */
  .v2-mar-bl, .v2-mar-br { display: none; }

  .v2-hero-news { top: 100px; }
  .v2-hero-wrap { padding-top: 160px; padding-bottom: 100px; }
  .v2-hero-h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .v2-hero-line-italic { padding-left: 0; }
  .v2-hero-search { flex-direction: column; align-items: stretch; }
  .v2-hero-quiz { justify-content: center; }
  .v2-hero-card { max-width: 100%; padding: 24px; }

  .v2-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .v2-bento-feature { grid-column: span 2; min-height: 320px; }
  .v2-bento-day-h, .v2-bento-day-row { font-size: .75rem; }

  .v2-atlas-mini { grid-template-columns: 1fr 1fr; }

  /* FIXED: on mobile the guide visual cards reflow as normal blocks
     instead of staying absolutely positioned (which would all overlap) */
  .v2-guide-visual {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .v2-guide-visual .v2-gc {
    position: relative;
    width: 100%;
    transform: none !important;
    top: auto; left: auto; right: auto; bottom: auto;
  }

  .v2-faq-grid { grid-template-columns: 1fr; gap: 0; }
  .v2-faq-item:nth-last-child(-n+2) { border-bottom: 0; }
  .v2-faq-item:last-child { border-bottom: 1px solid var(--border); }

  .v2-partners-wall { grid-template-columns: repeat(2, 1fr); }
  .v2-road-card { flex: 0 0 280px; }
}

@media (max-width: 560px) {
  .v2-hero-h1 { font-size: clamp(2.4rem, 14vw, 4rem); line-height: .95; }
  .v2-hero-proof { gap: 18px; padding-top: 18px; }
  .v2-hero-proof li strong { font-size: 1.15rem; }
  .v2-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .v2-bento-small { min-height: 170px; }
  .v2-bento-feature { grid-column: span 1; }
  .v2-partners-wall { grid-template-columns: 1fr; }
  .v2-news { padding: 90px 0; }
  .v2-news-actions .v2-btn-white, .v2-news-actions .v2-btn-ghost { width: 100%; justify-content: center; }
  .v2-section-title { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ============================================================
   Accessibility & motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .v2-hero-slideshow .v2-hero-slide img,
  .v2-news-bg { animation: none !important; }
  .v2-hero-strip-track { animation: none !important; }
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
}