/* GOR Bypass static live redesign */
:root {
  --bg: #07110b;
  --bg-soft: #0c1710;
  --panel: rgba(13, 23, 17, 0.82);
  --panel-strong: #101b14;
  --panel-light: #15241a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #f6fbf7;
  --muted: #b5c2b8;
  --muted-2: #90a094;
  --green: #22c55e;
  --green-2: #86efac;
  --green-deep: #0b6b2d;
  --gold: #facc15;
  --danger: #ff8d8d;
  --radius: 28px;
  --radius-sm: 18px;
  --radius-xs: 14px;
  --shadow: 0 22px 60px rgba(0,0,0,.28);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 80% -10%, rgba(34,197,94,.05), transparent 40%),
    linear-gradient(180deg, #07110b 0%, #09150e 45%, #07110b 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 100;
  background: #fff; color: #000; padding: 10px 16px; border-radius: 999px;
}
.skip-link:focus { left: 12px; }
.eyebrow, .hero-eyebrow, .promo-badge, .event-badge, .eyebrow-light {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800;
}
.eyebrow, .hero-eyebrow { color: var(--green-2); }
.eyebrow-light { color: rgba(255,255,255,.85); }
.dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 5px rgba(34,197,94,.08);
}
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head--row {
  max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: end;
}
.section-title, .rules-head h2, .cta-inner h2 {
  margin: 10px 0 0; line-height: 1.05; letter-spacing: -.04em;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.section-lead { margin: 16px 0 0; color: var(--muted); font-size: 1.04rem; }
.section-lead--inline { margin: 0; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7,17,11,.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar.scrolled { background: rgba(7,17,11,.88); }
.topbar-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(250,204,21,.12));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 12px 30px rgba(0,0,0,.22);
}
.brand-text { display: grid; min-width: 0; }
.brand-text strong { font-size: 1rem; line-height: 1.1; }
.brand-text em { font-style: normal; color: var(--muted); font-size: .8rem; }
.nav { display: inline-flex; justify-self: center; gap: 18px; flex-wrap: wrap; }
.nav a {
  color: #d7e2d9; font-size: .94rem; font-weight: 600; padding: 10px 12px; border-radius: 999px;
  transition: .2s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 22px; border-radius: 999px; font-weight: 800; line-height: 1; 
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #041008; background: linear-gradient(135deg, #2be16e 0%, #9af7bb 100%);
  box-shadow: 0 18px 34px rgba(34,197,94,.22);
}
.btn-primary:hover { box-shadow: 0 22px 38px rgba(34,197,94,.28); }
.btn-secondary {
  color: #fff; background: linear-gradient(135deg, #163021, #20412c);
  border: 1px solid rgba(255,255,255,.08);
}
.btn-ghost, .btn-ghost-light {
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text); background: rgba(255,255,255,.03);
}
.btn-ghost:hover, .btn-ghost-light:hover { background: rgba(255,255,255,.08); }
.btn-sm { padding: 12px 16px; font-size: .92rem; }
.btn-lg { padding: 18px 26px; font-size: 1rem; }
.btn-block { width: 100%; }
.i-wa { width: 20px; height: 20px; flex: 0 0 auto; }
.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: clip; }
.hero-bg, .cta-bg { position: absolute; inset: 0; }
.hero-bg img, .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg img { filter: saturate(.78) brightness(.82); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(5,12,8,.86) 0%, rgba(5,12,8,.62) 50%, rgba(5,12,8,.5) 100%),
    linear-gradient(180deg, rgba(5,12,8,.22) 0%, rgba(5,12,8,.55) 65%, rgba(5,12,8,.78) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 104px 0 72px; max-width: 680px; }
.hero-title {
  margin: 20px 0 0; font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  line-height: .96; letter-spacing: .015em; text-wrap: balance; color: #f1f7f3;
}
.hl { color: #c5f0d5; text-shadow: none; }
.hero-sub {
  max-width: 600px; font-size: 1.05rem; line-height: 1.7;
  color: #c8d6cb; font-weight: 400; margin: 22px 0 0;
}
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  list-style: none; padding: 0; margin: 40px 0 0; display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px;
}
.hero-meta li {
  padding: 16px 18px; border-radius: 16px;
  background: rgba(8,16,11,.5); border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.hero-meta strong { display: block; font-size: 1.05rem; color: #d6efde; font-weight: 700; }
.hero-meta span { display: block; color: #a8b6ab; font-size: .86rem; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 64px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; z-index: 1; background: rgba(255,255,255,.02);
}
.hero-scroll span {
  width: 6px; height: 16px; border-radius: 999px; background: rgba(255,255,255,.55);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-5px); opacity: .25; }
  50% { transform: translateY(5px); opacity: .8; }
  100% { transform: translateY(-5px); opacity: .25; }
}
.promo-strip { position: relative; z-index: 2; margin-top: -14px; }
.promo-inner {
  background: linear-gradient(135deg, rgba(250,204,21,.12), rgba(34,197,94,.14));
  border: 1px solid rgba(255,255,255,.08); border-radius: 24px; box-shadow: var(--shadow);
  padding: 18px 22px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
}
.promo-badge {
  background: linear-gradient(135deg, #facc15, #fde68a); color: #111; padding: 10px 14px; border-radius: 999px;
}
.promo-text { margin: 0; color: #f7fbf7; }
.strike, .rate-strike { text-decoration: line-through; color: var(--danger); }
.promo-cta { color: var(--green-2); font-weight: 800; }
.weekday-block { padding: 56px 0 24px; }
.weekday-card {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(34,197,94,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(34,197,94,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  display: grid; grid-template-columns: 1.45fr .85fr; gap: 32px; align-items: center;
}
.weekday-title {
  margin: 12px 0 0; line-height: 1.1; letter-spacing: -.02em;
  font-size: clamp(1.6rem, 3.1vw, 2.3rem); text-wrap: balance;
}
.weekday-lead { margin: 14px 0 0; color: var(--muted); font-size: 1rem; }
.weekday-lead strong { color: #f1f7f3; }
.weekday-points { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; }
.weekday-points li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 14px 16px; border-radius: 18px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.weekday-points p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.weekday-points strong { color: #f1f7f3; font-weight: 800; }
.weekday-ico { font-size: 1.2rem; line-height: 1.5; }
.weekday-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.weekday-cta .btn-ghost { color: var(--green-2); }
.weekday-tag {
  display: grid; gap: 6px; padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.06));
  border: 1px solid rgba(34,197,94,.3);
  text-align: left;
}
.weekday-flag {
  justify-self: start; padding: 8px 12px; border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #fde68a); color: #121212;
  font-weight: 800; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}
.weekday-day { color: var(--green-2); font-weight: 800; font-size: .95rem; margin-top: 10px; }
.weekday-time { color: #d6efde; font-weight: 700; font-size: 1.05rem; }
.weekday-price { display: flex; align-items: end; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.weekday-price .cur { font-size: 1rem; color: var(--green-2); font-weight: 700; }
.weekday-price .num { font-size: clamp(2.2rem, 4vw, 3rem); line-height: .95; font-weight: 800; }
.weekday-price .per { color: var(--muted); font-weight: 600; }
.weekday-note { color: var(--muted-2); font-size: .82rem; margin-top: 4px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.feat {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.feat-lg { grid-column: span 2; }
.feat-img { aspect-ratio: 16/10; background: #0b1510; overflow: hidden; }
.feat-img img, .event-figure img, .loc-figure img, .gallery img { width: 100%; height: 100%; object-fit: cover; }
.feat-img--dark img { filter: saturate(.88) brightness(.9); }
.feat-body { padding: 20px 22px 24px; }
.feat-body h3 { margin: 8px 0 8px; font-size: 1.34rem; line-height: 1.2; }
.feat-body p { margin: 0; color: var(--muted); }
.gallery {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr); grid-auto-rows: 88px;
}
.g { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.g img { transition: transform .4s ease; }
.g:hover img { transform: scale(1.04); }
.g-1 { grid-column: span 7; grid-row: span 3; }
.g-2 { grid-column: span 5; grid-row: span 3; }
.g-3, .g-4, .g-5, .g-6, .g-7, .g-8 { grid-column: span 3; grid-row: span 2; }
.rate-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.rate, .pkg-card, .rules {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.rate { padding: 22px; position: relative; }
.rate header h3 { margin: 8px 0 4px; font-size: 1.32rem; }
.rate-time { color: var(--muted); margin: 0; }
.rate-price { margin: 20px 0 18px; display: flex; align-items: end; flex-wrap: wrap; gap: 8px; }
.rate-price .cur { font-size: 1rem; color: var(--green-2); font-weight: 700; }
.rate-price .num { font-size: clamp(2rem, 4vw, 3rem); line-height: .95; font-weight: 800; }
.rate-price .per { color: var(--muted); font-weight: 600; }
.rate-featured {
  background: linear-gradient(180deg, rgba(34,197,94,.16), rgba(34,197,94,.08));
  border-color: rgba(34,197,94,.28); transform: translateY(-8px);
}
.rate-flag, .event-badge {
  position: absolute; top: 16px; right: 16px; padding: 8px 12px; border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #fde68a); color: #121212; font-weight: 800; font-size: .76rem;
}
.rate-cta { color: var(--green-2); font-weight: 800; }
.pkg-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; margin-top: 22px; }
.pkg-card { padding: 26px; }
.pkg-card h3 { margin: 8px 0 8px; font-size: 1.5rem; }
.pkg-card p { color: var(--muted); margin: 0; }
.pkg-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 14px; }
.pkg-list li {
  display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02);
}
.pkg-list strong { white-space: nowrap; }
.check { color: var(--green-2); font-weight: 800; margin-right: 8px; }
.event-grid { display: grid; grid-template-columns: .98fr 1.02fr; gap: 28px; align-items: center; }
.event-figure, .loc-figure {
  position: relative; overflow: hidden; border-radius: 32px; min-height: 520px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.event-shade, .cta-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,12,8,.16), rgba(5,12,8,.8));
}
.event-overlay {
  position: absolute; inset: auto 24px 24px; padding: 22px; border-radius: 24px;
  background: rgba(7,17,11,.65); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px);
}
.event-overlay h3 { margin: 12px 0 6px; font-size: 1.7rem; }
.event-overlay p { margin: 0; color: #dce8de; }
.event-copy p { color: var(--muted); }
.event-stats { list-style: none; padding: 0; margin: 22px 0; display: flex; gap: 14px; flex-wrap: wrap; }
.event-stats li {
  min-width: 132px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.event-stats strong { display: block; font-size: 1.55rem; color: var(--green-2); }
.event-stats span { color: var(--muted); font-size: .92rem; }
.event-meta { margin-bottom: 24px; }
.loc-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.loc-copy { align-self: center; }
.loc-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.loc-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px 18px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.loc-ico { font-size: 1.2rem; }
.loc-list strong { display: block; margin-bottom: 4px; }
.loc-cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.loc-figure-pin {
  position: absolute; left: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.9); color: #101510; font-weight: 800;
}
.pin-dot { width: 12px; height: 12px; border-radius: 999px; background: #ef4444; box-shadow: 0 0 0 7px rgba(239,68,68,.16); }
.rules { padding: 28px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 26px; }
.rules-list { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 12px; }
.cta-final { position: relative; padding: 110px 0; overflow: clip; }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.cta-inner p { color: #dce8de; max-width: 620px; margin: 16px auto 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.foot { border-top: 1px solid var(--line); background: rgba(0,0,0,.18); padding: 42px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr .9fr; gap: 28px; }
.foot-brand p { color: var(--muted); max-width: 380px; }
.foot-col h4 { margin: 0 0 12px; font-size: 1rem; }
.foot-col { display: grid; align-content: start; gap: 10px; }
.foot-col a { color: var(--muted); }
.foot-col a:hover { color: #fff; }
.foot-base { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted-2); }
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 45;
  display: none; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 20px;
  background: linear-gradient(135deg, #1ac45b, #7ceea7); color: #041008; box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.sticky-cta-text { display: grid; flex: 1; min-width: 0; }
.sticky-cta-text em { font-style: normal; font-size: .82rem; opacity: .8; }
.sticky-cta-arrow { font-size: 1.5rem; line-height: 1; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1080px) {
  .topbar-inner, .section-head--row, .event-grid, .loc-grid, .rules, .foot-grid, .weekday-card { grid-template-columns: 1fr; }
  .nav { justify-self: start; }
  .hero-meta, .rate-grid, .feat-grid, .pkg-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feat-lg { grid-column: span 2; }
}
@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .topbar-inner { gap: 14px; min-height: 74px; }
  .brand-mark { width: 46px; height: 46px; border-radius: 16px; }
  .brand-text em { font-size: .74rem; }
  .nav { display: none; }
  .topbar-cta { display: none; }
  .hero { min-height: 620px; }
  .hero-inner { padding: 88px 0 44px; }
  .hero-title { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-meta, .rate-grid, .feat-grid, .pkg-grid { grid-template-columns: 1fr; }
  .feat-lg { grid-column: auto; }
  .promo-strip { margin-top: 14px; }
  .promo-inner { grid-template-columns: 1fr; text-align: left; }
  .weekday-block { padding: 36px 0 8px; }
  .weekday-card { padding: 24px 20px; gap: 22px; }
  .weekday-cta .btn-ghost { width: auto; }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 110px; }
  .g, .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8 { grid-column: auto; grid-row: span 1; }
  .event-figure, .loc-figure { min-height: 360px; }
  .rules { padding: 24px 18px; }
  .cta-final { padding: 96px 0 120px; }
  .btn, .btn-lg { width: 100%; }
  .loc-cta .btn { width: auto; }
  .cta-actions .btn { width: 100%; }
  .sticky-cta { display: flex; }
}
/* === FAQ === */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  padding: 6px 22px; transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(34,197,94,.28); background: linear-gradient(180deg, rgba(34,197,94,.08), rgba(255,255,255,.02)); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--green-2);
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 999px; background: rgba(34,197,94,.12); flex: 0 0 auto;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-body { padding: 0 0 18px; color: var(--muted); }
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin-bottom: 0; }

/* === Internal-link cards === */
.link-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.link-card {
  display: grid; gap: 10px; padding: 24px 24px 22px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.link-card:hover { transform: translateY(-2px); border-color: rgba(34,197,94,.3); background: linear-gradient(180deg, rgba(34,197,94,.08), rgba(255,255,255,.02)); }
.link-card h3 { margin: 4px 0 0; font-size: 1.2rem; line-height: 1.25; }
.link-card p { margin: 0; color: var(--muted); font-size: .97rem; }
.link-card .link-arrow { color: var(--green-2); font-weight: 800; font-size: .94rem; margin-top: 4px; }
.link-inline { color: var(--green-2); font-weight: 800; }
.link-inline:hover { text-decoration: underline; }
.hub-cta-row { margin: 24px 0 0; color: var(--muted); }

/* === Breadcrumbs === */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; color: var(--muted-2); font-size: .9rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green-2); }
.crumbs .sep { opacity: .5; }
.crumbs [aria-current="page"] { color: var(--text); }

/* === Page hero (lighter than homepage hero) === */
.page-hero {
  position: relative; overflow: clip;
  padding: 132px 0 56px;
  background:
    radial-gradient(ellipse at 75% 0%, rgba(34,197,94,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 80%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin: 12px 0 0; font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.02; letter-spacing: .015em;
  text-wrap: balance; max-width: 22ch;
}
.page-hero p.lead { margin: 18px 0 0; max-width: 64ch; color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.page-hero .hero-cta { margin-top: 28px; }

/* === Prose / article body === */
.prose-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 296px; gap: 44px; align-items: start; }
.prose {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 44px 44px; box-shadow: var(--shadow);
  font-size: 1.02rem;
}
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h2 {
  margin: 44px 0 14px; font-size: 1.78rem; line-height: 1.22; letter-spacing: -.012em;
  font-weight: 700; color: #ecf5ee;
}
.prose h2:first-child, .prose > h2:first-of-type { margin-top: 8px; }
.prose h3 {
  margin: 32px 0 10px; font-size: 1.26rem; line-height: 1.32; letter-spacing: -.005em;
  font-weight: 700; color: #e6efe8;
}
.prose p { margin: 0 0 18px; color: #d6e0d8; line-height: 1.78; }
.prose p + p { margin-top: 0; }
.prose ul, .prose ol { margin: 4px 0 22px; padding-left: 24px; color: #d6e0d8; }
.prose li { margin-bottom: 10px; line-height: 1.72; padding-left: 2px; }
.prose li::marker { color: var(--green-2); }
.prose li > p { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose h2 + p, .prose h3 + p { margin-top: 0; }
.prose a { color: var(--green-2); border-bottom: 1px dashed rgba(134,239,172,.5); }
.prose a:hover { border-bottom-color: var(--green-2); }
.prose blockquote {
  margin: 24px 0; padding: 16px 22px;
  border-left: 3px solid var(--green); background: rgba(34,197,94,.06);
  border-radius: 0 14px 14px 0; color: #dceee2; font-size: 1.02rem; line-height: 1.7;
}
.prose blockquote p { margin: 0 0 8px; }
.prose blockquote p:last-child { margin-bottom: 0; }
.prose figure { margin: 18px 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); }
.prose figcaption { padding: 10px 14px; color: var(--muted-2); font-size: .9rem; background: rgba(255,255,255,.03); }
.article-hero-figure {
  margin: 0 0 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.article-hero-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-hero-figure figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 12px 16px 14px;
  font-size: .88rem;
  line-height: 1.65;
  color: #c9d8cf;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
}
.article-hero-figure figcaption a {
  color: #8fe3aa;
  text-decoration-color: rgba(143,227,170,.45);
  text-underline-offset: 3px;
}
.article-hero-figure figcaption a:hover {
  color: #b7f5c8;
  text-decoration-color: rgba(183,245,200,.8);
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.article-meta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  color: var(--muted-2); font-size: .9rem; margin-top: 6px;
}
.article-meta .pill {
  padding: 4px 10px; border-radius: 999px; background: rgba(34,197,94,.12);
  color: var(--green-2); font-weight: 700; font-size: .8rem;
}

.aside {
  position: sticky; top: 100px;
  display: grid; gap: 18px;
}
.aside-card {
  padding: 22px 22px 24px; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(34,197,94,.08), rgba(255,255,255,.02));
}
.aside-card h4 {
  margin: 0 0 10px; font-size: 1.02rem; line-height: 1.3;
  letter-spacing: -.005em;
}
.aside-card p { margin: 0 0 16px; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.aside-list a {
  display: block; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.025);
  color: var(--text); font-size: .94rem; line-height: 1.5;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.aside-list a:hover { border-color: rgba(34,197,94,.3); background: rgba(34,197,94,.06); color: var(--green-2); }

/* === Article hub === */
.hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.hub-card {
  display: grid; grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow); transition: transform .22s ease, border-color .22s ease;
}
.hub-card:hover { transform: translateY(-3px); border-color: rgba(34,197,94,.3); }
.hub-card .hub-img { aspect-ratio: 16/10; overflow: hidden; background: #0b1510; }
.hub-card .hub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hub-card:hover .hub-img img { transform: scale(1.04); }
.hub-card-body { padding: 18px 22px 6px; display: grid; gap: 8px; }
.hub-card h3 { margin: 4px 0 0; font-size: 1.16rem; line-height: 1.3; }
.hub-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.hub-card-foot { padding: 0 22px 20px; display: flex; justify-content: space-between; align-items: center; }
.hub-card .read-more { color: var(--green-2); font-weight: 800; font-size: .92rem; }
.hub-card .hub-date { color: var(--muted-2); font-size: .82rem; }

/* === Article hub editorial layout === */
.page-hero--editorial { padding: 132px 0 64px; }
.page-hero--editorial::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.35), transparent);
}
.hub-stats {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px;
  max-width: 640px;
}
.hub-stats li {
  padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.hub-stats strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; line-height: 1; color: var(--green-2); letter-spacing: .02em;
}
.hub-stats span { display: block; color: var(--muted); font-size: .82rem; margin-top: 6px; }
.topic-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0;
  padding: 0;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--text); font-size: .86rem; font-weight: 600; line-height: 1;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.chip:hover { border-color: rgba(34,197,94,.32); background: rgba(34,197,94,.08); color: var(--green-2); }
.chip-dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.14);
}
.editorial-feature {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(255,255,255,.02));
  overflow: hidden; box-shadow: var(--shadow);
}
.editorial-feature-img {
  position: relative; min-height: 360px; overflow: hidden; background: #0b1510;
}
.editorial-feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; filter: saturate(.92);
}
.editorial-feature:hover .editorial-feature-img img { transform: scale(1.03); }
.editorial-flag {
  position: absolute; top: 18px; left: 18px;
  padding: 8px 14px; border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #fde68a);
  color: #121212; font-weight: 800; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.editorial-feature-body {
  padding: 36px 38px; display: grid; align-content: center; gap: 14px;
}
.editorial-feature-body h3 {
  margin: 4px 0 0; font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; letter-spacing: .015em;
}
.editorial-feature-body h3 a { color: inherit; }
.editorial-feature-body h3 a:hover { color: var(--green-2); }
.editorial-feature-lede { margin: 0; color: #d6e0d8; font-size: 1.04rem; line-height: 1.65; }
.editorial-feature-meta {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  color: var(--muted-2); font-size: .86rem;
}
.editorial-feature-meta li {
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.editorial-feature-cta {
  margin-top: 8px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}

/* === Related articles strip === */
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.related-card {
  padding: 20px 22px 22px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.related-card:hover { border-color: rgba(34,197,94,.28); background: rgba(34,197,94,.05); transform: translateY(-2px); }
.related-card .eyebrow { color: var(--green-2); font-size: .68rem; }
.related-card h4 { margin: 10px 0 0; font-size: 1.04rem; line-height: 1.4; letter-spacing: -.005em; }
.related-card a { color: var(--text); }
.related-card a:hover { color: var(--green-2); }

/* === Generic info table for landing pages === */
.info-table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.info-table th, .info-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.info-table th { background: rgba(34,197,94,.08); font-weight: 700; color: var(--text); font-size: .9rem; }
.info-table tr:last-child td { border-bottom: 0; }
.info-table td { color: var(--muted); }
.info-table strong { color: var(--text); }

/* === Mobile === */
@media (max-width: 1080px) {
  .prose-wrap { grid-template-columns: 1fr; }
  .aside { position: static; }
  .hub-grid, .related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .link-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .editorial-feature { grid-template-columns: 1fr; }
  .editorial-feature-img { min-height: 0; aspect-ratio: 16/9; }
  .editorial-feature-body { padding: 28px 28px 30px; }
}
@media (max-width: 760px) {
  .page-hero { padding: 100px 0 36px; }
  .page-hero--editorial { padding: 100px 0 44px; }
  .prose { padding: 24px 22px; }
  .hub-grid, .related-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 4px 16px; }
  .faq-item summary { font-size: 1rem; }
  .hub-stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .hub-stats strong { font-size: 1.4rem; }
  .topic-chips {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px;
    margin-left: -4px; margin-right: -4px; padding-left: 4px; padding-right: 4px;
    scrollbar-width: none;
  }
  .topic-chips::-webkit-scrollbar { display: none; }
  .chip { white-space: nowrap; flex: 0 0 auto; }
  .editorial-feature-body { padding: 22px 20px 24px; }
  .editorial-feature-body h3 { font-size: 1.6rem; }
  .editorial-flag { top: 12px; left: 12px; padding: 6px 10px; font-size: .68rem; }
  .editorial-feature-cta { gap: 12px; }
  .editorial-feature-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible, .btn, .g img, .hero-scroll span { transition: none; animation: none; }
}
