/* ============ Design tokens ============ */
:root{
  --navy: #0d1b34;
  --navy-2: #142a4d;
  --navy-3: #1b3560;
  --gold: #c9a24a;
  --gold-light: #e6c877;
  --gold-dark: #a9822f;
  --cream: #f3efe6;
  --cream-2: #ece5d6;
  --ink: #1c2331;
  --ink-soft: #4a5266;
  --zim-green: #1a7a3c;
  --zim-yellow: #f2c200;
  --zim-red: #c8102e;
  --white: #ffffff;
  --shadow: 0 20px 50px -20px rgba(13,27,52,0.35);
  --radius: 14px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
h1,h2,h3,h4,h5{font-family: var(--serif); margin:0 0 .5em; color: var(--navy); font-weight:700;}
p{margin:0 0 1em;}
ul{margin:0; padding:0; list-style:none;}
.container{max-width:1180px; margin:0 auto; padding:0 24px;}

/* ============ Buttons ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:.02em;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor:pointer;
  white-space:nowrap;
  flex-shrink:0;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 10px 25px -8px rgba(201,162,74,0.55);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(201,162,74,0.7); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-lg{ padding: 16px 34px; font-size:1rem; }
.btn-block{ display:flex; width:100%; margin-top:20px; }

/* ============ Topbar ============ */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: .78rem;
  letter-spacing:.03em;
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding: 8px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.dot{
  display:inline-block; width:7px; height:7px; border-radius:50%;
  background: var(--gold); margin-right:6px;
}
.topbar-contact{ color: var(--gold-light); }

/* ============ Header ============ */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(13,27,52,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 24px;
}
.header-brand-group{ display:flex; align-items:center; gap:12px; }
.brand-logo-img{ height:44px; width:auto; display:block; }
.footer-logo-img{ height:64px; width:auto; margin-bottom:16px; display:block; }
.brand-divider{ width:1px; height:44px; background: rgba(255,255,255,0.18); flex-shrink:0; }
.header-host{ display:flex; align-items:center; }
.header-host-label{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.header-host-logo{ height:46px; width:auto; }
.brand-wordmark{ display:flex; flex-direction:column; line-height:1.15; }
.brand-line1{ font-family: var(--serif); font-size:1.3rem; font-weight:700; white-space:nowrap; }
.brand-homeward{ color: var(--white); }
.brand-zimbabwe{ color: var(--gold-light); font-style:italic; font-weight:600; }
.brand-line2{
  font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  color: rgba(255,255,255,0.55); margin-top:2px; white-space:nowrap;
}
.main-nav{ display:flex; gap:16px; }
.main-nav a{
  color: rgba(255,255,255,0.85);
  font-size:.88rem; font-weight:500;
  white-space:nowrap;
  position:relative;
  padding: 6px 0;
}
.main-nav a:hover{ color: var(--gold-light); }
.header-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--white); display:block; }

/* ============ Hero ============ */
.hero{
  position:relative;
  background: radial-gradient(ellipse at 20% 0%, #1b3560 0%, var(--navy) 55%, #081222 100%);
  color: var(--white);
  padding: 100px 0 70px;
  overflow:hidden;
  text-align:center;
}
.hero-rings{
  position:absolute; inset:0;
  background-image:
    repeating-radial-gradient(circle at 88% 10%, transparent 0, transparent 40px, rgba(201,162,74,0.10) 41px, rgba(201,162,74,0.10) 42px),
    repeating-radial-gradient(circle at 5% 95%, transparent 0, transparent 34px, rgba(201,162,74,0.08) 35px, rgba(201,162,74,0.08) 36px);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:1; max-width:820px; }
.eyebrow{
  text-transform:uppercase; letter-spacing:.25em; font-size:.8rem;
  color: var(--gold-light); font-weight:600; margin-bottom:18px;
}
.hero-title{
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height:1.1;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-title-sub{
  display:inline-block;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  font-style: italic;
  color: var(--gold-light);
  font-weight:600;
}
.hero-edition{
  letter-spacing:.3em; font-size:.85rem; font-weight:600;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.hero-edition-divider{ color: var(--gold); }
.hero-dates{
  font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.2rem);
  color: var(--gold-light); margin-bottom: 10px; font-weight:600;
}
.hero-edition-secondary{
  margin-top:18px; padding-top:16px; border-top:1px solid rgba(255,255,255,0.14);
  font-size:.75rem; color: rgba(255,255,255,0.55);
}
.hero-dates-secondary{
  font-size: clamp(1.1rem,2vw,1.4rem); color: rgba(255,255,255,0.75); margin-bottom:0;
}
.hero-tagline{
  font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width:560px; margin: 34px auto 34px;
}
.hero-ctas{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; margin-bottom: 46px; }

.countdown{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.countdown-item{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 84px;
}
.countdown-num{
  display:block; font-family: var(--serif); font-size:1.8rem; font-weight:700; color: var(--gold-light);
}
.countdown-label{
  display:block; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,0.6); margin-top:4px;
}

/* ============ Stats bar ============ */
.stats-bar{ background: var(--cream-2); border-bottom: 1px solid rgba(13,27,52,0.06); }
.stats-inner{
  display:grid; grid-template-columns: repeat(4,1fr);
  padding: 30px 24px;
}
.stat{ text-align:center; border-right: 1px solid rgba(13,27,52,0.1); }
.stat:last-child{ border-right:none; }
.stat-num{
  display:block; font-family: var(--serif); font-size:1.9rem; font-weight:700; color: var(--navy);
}
.stat-label{
  display:block; font-size:.82rem; color: var(--ink-soft); text-transform:uppercase; letter-spacing:.05em; margin-top:4px;
}

/* ============ Section basics ============ */
.section{ padding: 90px 0; }
.section-cream{ background: var(--cream); }
.section-dark{ background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy{ background: linear-gradient(180deg, var(--navy-2), var(--navy)); color: rgba(255,255,255,0.85); }
.section-dark h2, .section-navy h2{ color: var(--white); }
.section-dark p, .section-navy p{ color: rgba(255,255,255,0.75); }

.section-head{ text-align:center; max-width:680px; margin: 0 auto 50px; }
.kicker{
  text-transform:uppercase; letter-spacing:.2em; font-size:.78rem; font-weight:700;
  color: var(--gold-dark); margin-bottom:10px;
}
.section-dark .kicker, .section-navy .kicker{ color: var(--gold-light); }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-sub{ color: var(--ink-soft); font-size:1.05rem; }

/* ============ Check lists ============ */
.check-list li{
  position:relative; padding-left: 30px; margin-bottom:12px; color: var(--ink-soft);
}
.check-list li::before{
  content:"✓"; position:absolute; left:0; top:0;
  color: var(--gold-dark); font-weight:700;
}
.check-list-light li{ color: rgba(255,255,255,0.8); }
.check-list-light li::before{ color: var(--gold-light); }
.check-list-lg li{ font-size:1.08rem; padding-left:34px; }

/* ============ Vision section ============ */
.vision-grid{ display:grid; grid-template-columns: 1.3fr 1fr; gap:50px; align-items:start; }
.vision-copy p{ color: rgba(255,255,255,0.78); }
.pull-quote{
  font-family: var(--serif); font-style:italic; font-size:1.25rem;
  color: var(--gold-light) !important; border-left:3px solid var(--gold); padding-left:20px; margin-top:24px;
}
.vision-cards{ display:flex; flex-direction:column; gap:22px; }
.vision-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.vision-card-label{
  display:block; font-family:var(--serif); font-style:italic; font-weight:600;
  color: var(--gold-light); font-size:1.2rem; margin-bottom:10px;
}
.vision-card p{ color: rgba(255,255,255,0.78); margin:0; }

/* ============ Why grid ============ */
.why-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:60px; }
.journey h3{ font-size:1.3rem; }
.timeline{ position:relative; padding-left:4px; }
.timeline li{
  position:relative; padding-bottom:28px; padding-left:34px; margin-left:5px; color: var(--ink-soft);
  border-left:2px solid var(--cream-2);
}
.timeline li:last-child{ border-color:transparent; padding-bottom:0; }
.timeline li::before{
  content:""; position:absolute; left:-7px; top:3px; width:12px; height:12px; border-radius:50%;
  background: var(--gold); border:2px solid var(--white); box-shadow:0 0 0 2px var(--gold-dark);
}

/* ============ Why Australia ============ */
.why-australia-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:50px; align-items:center; }
.rounded-photo{ border-radius: var(--radius); box-shadow: var(--shadow); width:100%; height:100%; object-fit:cover; }

/* ============ Summit grid ============ */
.summit-grid{ display:grid; grid-template-columns: 1.2fr 0.8fr; gap:40px; align-items:stretch; }
.summit-cards{ display:grid; grid-template-columns: repeat(2,1fr); gap:16px; }
.summit-card{
  background: var(--white); border:1px solid var(--cream-2); border-radius: var(--radius);
  padding: 22px; text-align:center;
  box-shadow: 0 12px 28px -18px rgba(13,27,52,0.25);
}
.summit-card strong{ display:block; font-family:var(--serif); font-size:1.5rem; color: var(--navy); margin-bottom:4px; }
.summit-card span{ font-size:.85rem; color: var(--ink-soft); }
.summit-photo{ min-height:260px; }

/* ============ Attend grid ============ */
.attend-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:50px; align-items:center; margin-bottom:50px; }
.attend-copy{ display:grid; grid-template-columns: 1fr 1fr; gap:36px; }
.attend-col h3{ color: var(--white); font-size:1.25rem; margin-bottom:18px; }
.exhibitor-profile{
  border-top:1px solid rgba(255,255,255,0.15); padding-top:36px; text-align:center; max-width:720px; margin:0 auto;
}
.exhibitor-profile h4{ color: var(--gold-light); }
.exhibitor-stats{
  font-family: var(--serif); font-weight:600; color: var(--white); font-size:1.1rem; margin-top:18px;
}

/* ============ Programme ============ */
.prog-tabs{ display:flex; justify-content:center; gap:12px; margin-bottom:50px; flex-wrap:wrap; }
.prog-tab{
  background: var(--white); border:1px solid var(--cream-2); color: var(--navy);
  padding: 12px 26px; border-radius:999px; font-weight:600; cursor:pointer; font-family:var(--sans); font-size:.92rem;
  transition: all .2s ease;
}
.prog-tab.active, .prog-tab:hover{
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.prog-panel{ display:none; }
.prog-panel.active{ display:block; animation: fadeIn .4s ease; }
@keyframes fadeIn{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }

.prog-block{
  display:grid; grid-template-columns: 1.2fr 0.8fr; gap:50px; align-items:center;
  margin-bottom: 56px;
}
.prog-block:last-child{ margin-bottom:0; }
.prog-block-reverse{ grid-template-columns: 0.8fr 1.2fr; }
.prog-block-reverse .prog-copy{ order:2; }
.prog-block-reverse img{ order:1; }
.prog-time{
  display:inline-block; font-weight:700; color: var(--gold-dark); text-transform:uppercase;
  letter-spacing:.08em; font-size:.82rem; margin-bottom:10px;
}
.prog-copy h3{ font-size:1.5rem; margin-bottom:14px; }
.prog-copy p strong{ color: var(--navy); }
.prog-note{ font-style:italic; color: var(--ink-soft); }
.prog-copy img{ width:100%; }

/* ============ Tier / sponsorship cards ============ */
.tier-tabs{ display:flex; justify-content:center; gap:10px; margin-bottom:44px; flex-wrap:wrap; }
.tier-tab{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.18); color: var(--white);
  padding:10px 20px; border-radius:14px; cursor:pointer; font-family:var(--sans); font-weight:600; font-size:.88rem;
  transition: all .2s ease;
}
.tier-tab span{ font-size:.74rem; font-weight:500; color: rgba(255,255,255,0.55); }
.tier-tab.active, .tier-tab:hover{ background: var(--gold); border-color: var(--gold); color: var(--navy); }
.tier-tab.active span, .tier-tab:hover span{ color: rgba(13,27,52,0.7); }

.tier-panel{ display:none; }
.tier-panel.active{ display:block; animation: fadeIn .4s ease; }

.tier-panel-inner{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 40px 44px;
  position:relative;
  max-width: 900px; margin: 0 auto;
}
.tier-featured{
  background: linear-gradient(160deg, rgba(201,162,74,0.16), rgba(255,255,255,0.03));
  border-color: var(--gold);
}
.tier-badge{
  position:absolute; top:-13px; left:44px;
  background: var(--gold); color: var(--navy);
  font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  padding: 5px 14px; border-radius: 999px;
}
.tier-panel-inner h3{ color: var(--white); font-size:1.5rem; margin-bottom:6px; }
.tier-panel-inner .kicker{ display:block; }
.tier-price{ font-family: var(--serif); color: var(--gold-light); font-size:1.7rem; font-weight:700; margin-bottom:20px; }
.tier-price-note{ font-family: var(--sans); font-size:.85rem; font-weight:500; color: rgba(255,255,255,0.55); margin-left:4px; }
.tier-panel-desc{ color: rgba(255,255,255,0.75); max-width:640px; margin-bottom:28px; }
.tier-list li{
  position:relative; padding-left:20px; margin-bottom:10px; font-size:.9rem; color: rgba(255,255,255,0.75);
}
.tier-list li::before{ content:"—"; position:absolute; left:0; color: var(--gold); }
.tier-list-columns{ column-count:2; column-gap:32px; }
.tier-list-columns li{ break-inside: avoid; }
.tier-panel-inner .multicity-grid{ margin-bottom:28px; }

/* ============ Multi-city / market-brand inner grid ============ */
.multicity-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:36px;
  background: rgba(255,255,255,0.03); border:1px solid rgba(201,162,74,0.25);
  border-radius: var(--radius); padding: 32px;
}
.multicity-cities h4, .multicity-includes-label{
  color: var(--gold-light); font-family: var(--serif); font-size:1.05rem; margin-bottom:14px; font-weight:600;
}
.multicity-price{ border-left:1px solid rgba(255,255,255,0.14); padding-left:36px; }
.multicity-includes-label{ margin-top:4px; }
.multicity-note{ font-style:italic; font-size:.85rem; color: rgba(255,255,255,0.55); margin-top:14px; }

/* ============ Investor Delegate panel (within tier tabs) ============ */
.delegate-panel-copy{ max-width:640px; margin-bottom:8px; }
.delegate-package-note{ font-style:italic; font-size:.9rem; color: rgba(255,255,255,0.55) !important; }
.delegate-package-visa{
  background: rgba(201,162,74,0.08); border:1px solid rgba(201,162,74,0.3);
  border-radius: 10px; padding:18px 22px; margin-bottom:20px;
}
.delegate-package-visa h4{
  font-family: var(--serif); color: var(--gold-light); font-size:1rem; font-weight:600; margin-bottom:6px;
}
.delegate-package-visa p{ font-size:.88rem; margin-bottom:0; color: rgba(255,255,255,0.75); }

/* ============ Platform grid ============ */
.platform-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.platform-card{
  background: var(--white); border:1px solid var(--cream-2); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 12px 28px -20px rgba(13,27,52,0.2);
}
.platform-card h4{ font-size:1.02rem; margin-bottom:8px; }
.platform-card p{ font-size:.88rem; color: var(--ink-soft); margin:0; }
.platform-card-accent{ background: var(--navy); }
.platform-card-accent h4, .platform-card-accent p{ color: var(--white); }
.platform-card-accent p{ color: rgba(255,255,255,0.75); }
.platform-closer{
  text-align:center; font-family: var(--serif); font-style:italic; font-size:1.3rem;
  color: var(--navy); margin-top:40px;
}

/* ============ Why partner / movement ============ */
.why-partner-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:50px; align-items:center; }
.movement-card{
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: var(--white); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow);
}
.movement-card h3{ color: var(--gold-light); font-style:italic; }
.movement-card p{ color: rgba(255,255,255,0.8); }
.movement-line{ font-weight:600; color: var(--white) !important; }

/* ============ CTA band ============ */
.cta-band{
  background: linear-gradient(135deg, var(--zim-green) 0%, var(--navy) 45%, var(--navy) 55%, var(--zim-red) 100%);
  position:relative;
  padding: 80px 0;
  text-align:center;
  color: var(--white);
}
.cta-inner h2{ color: var(--white); font-size: clamp(1.8rem,3vw,2.5rem); }
.cta-inner p{ color: rgba(255,255,255,0.85); max-width:540px; margin:0 auto 30px; }

/* ============ Footer ============ */
.site-footer{ background: #081020; color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; }
.footer-wordmark{ margin-bottom:18px; }
.footer-wordmark .brand-line1{ font-size:1.7rem; }
.footer-wordmark .brand-line2{ font-size:.68rem; }
.footer-edition{ color: var(--gold-light); font-size:.85rem; }
.footer-venue{ font-size:.82rem; color: rgba(255,255,255,0.5); margin-top:10px; line-height:1.5; }
.footer-col h5{ color: var(--white); text-transform:uppercase; letter-spacing:.1em; font-size:.8rem; margin-bottom:16px; }
.footer-col a{ display:block; margin-bottom:10px; font-size:.9rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover{ color: var(--gold-light); }
.footer-partners{
  display:flex; align-items:center; justify-content:center; gap:26px;
  flex-wrap:wrap; padding: 26px 24px; border-top:1px solid rgba(255,255,255,0.08);
}
.footer-partners-label{
  text-transform:uppercase; letter-spacing:.15em; font-size:.72rem; color: rgba(255,255,255,0.45);
}
.footer-partners-logos{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }
.footer-partners-logos img{
  height:48px; width:auto; background: rgba(255,255,255,0.92); padding:8px 14px; border-radius:8px;
}
.footer-partners-logos img.logo-on-dark{
  height:56px; background: none; padding:0; border-radius:0;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08); padding: 20px 24px; text-align:center; font-size:.8rem;
}

/* ============ Back to top ============ */
#backToTop{
  position:fixed; bottom:26px; right:26px; z-index:90;
  width:46px; height:46px; border-radius:50%;
  background: var(--navy); color: var(--gold-light); border:none; cursor:pointer;
  font-size:1.1rem; box-shadow: var(--shadow);
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: all .25s ease;
}
#backToTop.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* ============ Policy link + modal ============ */
.policy-link{
  color: var(--gold-dark); text-decoration:underline; cursor:pointer; font-weight:600;
}
.policy-link:hover{ color: var(--gold-light); }
.footer-col a.policy-link{ color: rgba(255,255,255,0.65); text-decoration:underline; }
.footer-col a.policy-link:hover{ color: var(--gold-light); }

.policy-modal-overlay{
  display:none; position:fixed; inset:0; z-index:200;
  background: rgba(8,16,32,0.72); backdrop-filter: blur(3px);
  align-items:center; justify-content:center; padding:24px;
}
.policy-modal-overlay.open{ display:flex; }
.policy-modal{
  position:relative; background: var(--cream); border-radius: var(--radius);
  max-width:640px; width:100%; max-height:82vh; overflow-y:auto;
  padding:44px 40px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
}
.policy-modal h3{ font-size:1.4rem; margin-bottom:20px; padding-right:20px; }
.policy-modal h4{
  font-size:1rem; color: var(--navy); margin:24px 0 10px; padding-top:16px;
  border-top:1px solid var(--cream-2);
}
.policy-modal h4:first-of-type{ border-top:none; padding-top:0; margin-top:20px; }
.policy-modal p{ color: var(--ink-soft); font-size:.95rem; margin-bottom:16px; }
.policy-modal ul{ margin-bottom:16px; }
.policy-modal li{
  position:relative; padding-left:20px; margin-bottom:10px; font-size:.95rem; color: var(--ink-soft);
}
.policy-modal li::before{ content:"—"; position:absolute; left:0; color: var(--gold-dark); }
.policy-modal li strong{ color: var(--navy); }
.policy-modal p:last-child{ margin-bottom:0; font-weight:600; color: var(--navy); }
.policy-modal-close{
  position:absolute; top:16px; right:18px; background:none; border:none; cursor:pointer;
  font-size:1.8rem; line-height:1; color: var(--ink-soft); padding:4px 8px;
}
.policy-modal-close:hover{ color: var(--navy); }

/* ============ FAQ accordion ============ */
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{
  border-bottom:1px solid var(--cream-2);
}
.faq-item:first-child{ border-top:1px solid var(--cream-2); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:none; cursor:pointer; text-align:left;
  padding:22px 4px; font-family:var(--serif); font-size:1.05rem; font-weight:600; color: var(--navy);
}
.faq-toggle-icon{
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  background: var(--cream-2); color: var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; line-height:1; transition: transform .25s ease, background .25s ease;
}
.faq-item.active .faq-toggle-icon{ background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer{
  max-height:0; overflow:hidden; transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-answer{ max-height:300px; padding-bottom:22px; }
.faq-answer p{ color: var(--ink-soft); font-size:.95rem; padding-right:48px; margin:0; }

/* ============ Scroll reveal ============ */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 980px){
  .vision-grid, .why-grid, .why-australia-grid, .summit-grid, .attend-grid, .why-partner-grid, .multicity-grid{
    grid-template-columns: 1fr;
  }
  .multicity-price{ border-left:none; padding-left:0; border-top:1px solid rgba(255,255,255,0.14); padding-top:26px; }
  .attend-copy{ grid-template-columns: 1fr; gap:26px; }
  .tier-panel-inner{ padding:34px 28px; }
  .tier-list-columns{ column-count:1; }
  .platform-grid{ grid-template-columns: repeat(2,1fr); }
  .prog-block, .prog-block-reverse{ grid-template-columns: 1fr; }
  .prog-block-reverse .prog-copy{ order:1; }
  .prog-block-reverse img{ order:2; }
}

@media (max-width: 760px){
  .topbar-inner{ justify-content:center; text-align:center; }
  .header-host-label{ display:none; }
  .header-brand-group{ gap:12px; }
  .brand-divider{ height:30px; }
  .header-host-logo{ height:26px; }
  .brand-line1{ font-size:1.15rem; }
  .main-nav{
    position:fixed; top:0; right:-100%; height:100vh; width:78%; max-width:320px;
    background: var(--navy); flex-direction:column; padding: 100px 30px; gap:26px;
    transition: right .3s ease; box-shadow: -20px 0 40px rgba(0,0,0,0.3);
  }
  .main-nav.open{ right:0; }
  .nav-toggle{ display:flex; }
  .header-actions .btn{ display:none; }
  .stats-inner{ grid-template-columns: repeat(2,1fr); gap:20px; }
  .stat{ border-right:none; border-bottom:1px solid rgba(13,27,52,0.1); padding-bottom:16px; }
  .tier-tabs{ gap:8px; }
  .tier-tab{ padding:8px 14px; font-size:.8rem; }
  .tier-panel-inner{ padding:28px 20px; }
  .tier-badge{ left:20px; }
  .platform-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero{ padding:80px 0 50px; }
}
