/* ==========================================================================
   INDIA CONSTRUCTION FESTIVAL — Home (v2)
   Navy + gold, photo-led corporate-editorial direction
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root{
  --navy:        #0B1B2E;
  --navy-2:      #102542;
  --navy-3:      #16304F;
  --gold:        #D8AA4E;
  --gold-bright: #F0C877;
  --ink:         #0A1220;
  --paper:       #F7F5F0;
  --muted:       #A9B4C4;
  --white:       #FFFFFF;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --ease: cubic-bezier(.19,1,.22,1);
  --rule-light: 1px solid rgba(255,255,255,0.12);
}

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

body{
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; margin:0; color:var(--navy); letter-spacing:-0.01em; }
p{ max-width:60ch; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:var(--gold); color:var(--navy); }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.container-icf{
  width:100%; max-width:1320px; margin:0 auto;
  padding-left:clamp(1.25rem,4vw,3.5rem);
  padding-right:clamp(1.25rem,4vw,3.5rem);
}

.section{ padding-top:clamp(3.5rem,7vw,6.5rem); padding-bottom:clamp(3.5rem,7vw,6.5rem); position:relative; }
.section-navy{ background:var(--navy); color:var(--white); }
.section-navy p{ color: var(--muted); }
.section-navy h1,.section-navy h2,.section-navy h3,.section-navy h4{ color:var(--white); }
.section-paper{ background:var(--paper); }
.section-paper p{ color:#5B6472; }
.section-paper .eyebrow{ color:#A9791F; }
.section-paper .eyebrow::before{ background:#A9791F; }

.eyebrow{
  display:flex; align-items:center; gap:0.7rem;
  font-size:0.72rem; font-weight:600; letter-spacing:0.16em;
  color:var(--gold); margin-bottom:1rem;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold); }
.eyebrow.center{ justify-content:center; }
.eyebrow.center::before{ display:none; }

.section-head{ max-width:50rem; }
.section-head h2{ font-size:clamp(2rem,4vw,3.1rem); line-height:1.12; }
.section-head p.lede{ margin-top:1rem; color:var(--muted); font-size:1.02rem; }
.section-navy .section-head p.lede{ color:var(--muted); }
.section-paper .section-head p.lede{ color:#5B6472; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-icf{
  display:inline-flex; align-items:center; gap:0.55rem;
  font-family:var(--font-body); font-weight:600; font-size:0.82rem;
  letter-spacing:0.03em;
  padding:0.9rem 1.7rem;
  border:1.5px solid var(--gold);
  background:transparent; color:var(--white);
  position:relative; overflow:hidden; cursor:pointer;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
}
.btn-icf::before{
  content:""; position:absolute; inset:0; background:var(--gold);
  transform:scaleX(0); transform-origin:left; transition:transform 0.45s var(--ease); z-index:-1;
}
.btn-icf:hover::before{ transform:scaleX(1); }
.btn-icf:hover{ color:var(--navy); }
.btn-icf-solid{ background:var(--gold); color:var(--navy); }
.btn-icf-solid::before{ background:var(--gold-bright); }
.btn-icf-solid:hover{ color:var(--navy); }
.btn-icf svg{ width:14px; height:14px; transition:transform 0.3s var(--ease); }
.btn-icf:hover svg{ transform:translateX(3px); }
.btn-row{ display:flex; flex-wrap:wrap; gap:0.9rem; }

.btn-link-gold{
  display:inline-flex; align-items:center; gap:0.5rem;
  font-size:0.84rem; font-weight:600; color:var(--gold-bright);
  position:relative;
}
.btn-link-gold svg{ width:13px; height:13px; transition:transform 0.3s var(--ease); }
.btn-link-gold:hover svg{ transform:translateX(4px); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.icf-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(11,27,46,0.65);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0.4rem 0;
}
.icf-nav.scrolled{ background:rgba(10,18,32,0.96); }
.icf-nav .container-icf{ display:flex; align-items:center; justify-content:space-between; height:76px; }

.icf-brand{ display:flex; align-items:center; gap:0.7rem; }
.icf-brand .mark{ width:34px; height:34px; flex-shrink:0; }
.icf-brand .word{
  font-family:var(--font-display); font-weight:700; font-size:0.92rem;
  letter-spacing:0.03em; line-height:1.18; color:var(--white); text-transform:uppercase;
}

.icf-links{ display:flex; align-items:center; gap:clamp(1rem,2vw,2rem); list-style:none; margin:0; padding:0; }
.icf-links a:not(.btn-icf-solid){
  font-size:0.82rem; font-weight:500; letter-spacing:0.05em; text-transform:uppercase;
  color:rgba(255,255,255,0.82); position:relative; padding:0.3rem 0;
}
.icf-links a:not(.btn-icf-solid)::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:var(--gold);
  transition:width 0.3s var(--ease);
}
.icf-links a.active:not(.btn-icf-solid),
.icf-links a:not(.btn-icf-solid):hover{ color:var(--white); }
.icf-links a.active:not(.btn-icf-solid)::after,
.icf-links a:not(.btn-icf-solid):hover::after{ width:100%; }

.icf-search{
  width:38px; height:38px; border:1px solid rgba(255,255,255,0.25);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--white); background:transparent; cursor:pointer;
  transition:border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.icf-search:hover{ border-color:var(--gold); background:rgba(216,170,78,0.12); }
.icf-search svg{ width:15px; height:15px; }

.icf-nav-toggle{
  display:none; background:none; border:1px solid rgba(255,255,255,0.3);
  color:var(--white); width:40px; height:40px; align-items:center; justify-content:center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  min-height:100svh;
  display:flex; align-items:center;
  padding-top:96px; padding-bottom:3rem;
  color:var(--white);
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
}
.hero-bg img, .hero-bg video{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg, rgba(8,16,28,0.94) 0%, rgba(8,16,28,0.72) 38%, rgba(8,16,28,0.35) 62%, rgba(8,16,28,0.55) 100%),
    linear-gradient(0deg, rgba(6,12,22,0.55) 0%, transparent 40%);
}
.hero-content{ position:relative; z-index:2; width:100%; }

.hero-grid{ display:grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem,4vw,4rem); align-items:start;padding: 60px 0px; }

.hero-edition{
  display:inline-flex; align-items:center; gap:0.8rem;
  font-size:0.8rem; font-weight:600; letter-spacing:0.18em; color:var(--gold-bright);
  margin-bottom:1.4rem;
}
.hero-edition::after{ content:""; width:40px; height:1px; background:var(--gold-bright); opacity:0.6; }

.hero h1{
  font-size:clamp(2.6rem,5.6vw,4.6rem);
  line-height:1.04;
  color:var(--white);
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:-0.01em;
}
.hero h1 .gold{ color:var(--gold); }
.hero .tagline{
  font-family:var(--font-body); font-weight:600; font-size:clamp(1.1rem,1.8vw,1.5rem);
  color:var(--white); margin-top:1rem;
}
.hero .desc{
  margin-top:1.2rem; max-width:42rem; color:rgba(255,255,255,0.78); font-size:1rem;
}
.hero-meta{
  display:flex; flex-wrap:wrap; gap:1.4rem 2.2rem; margin-top:1.8rem;
  font-size:0.92rem; font-weight:500; color:var(--white);
}
.hero-meta span{ display:flex; align-items:center; gap:0.55rem; }
.hero-meta svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; }
.hero-ctas{ margin-top:2rem; }

/* registration card */
.reg-card{
  background:rgba(16,37,66,0.88);
  border:1px solid rgba(216,170,78,0.35);
  backdrop-filter:blur(6px);
  padding:2.1rem;
  animation: card-in 1s var(--ease) both;
  animation-delay: 0.3s;
}
@keyframes card-in{
  from{ opacity:0; transform:translateY(24px); }
  to{ opacity:1; transform:none; }
}
.reg-card h3{
  font-family:var(--font-display); color:var(--white); font-size:1.35rem; margin-bottom:0.5rem;
}
.reg-card p{ color:var(--muted); font-size:0.86rem; margin-bottom:1.4rem; }

.field-row{
  display:grid; grid-template-columns:1fr 1fr; gap:0 0.8rem;
}
.field{
  position:relative; margin-bottom:1rem;
}
.field svg{
  position:absolute; left:1rem; top:50%; transform:translateY(-50%);
  width:15px; height:15px; color:var(--gold); pointer-events:none;
  z-index: 2;
}
.field .form-control, .field .form-select{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:8px; color:var(--white); padding:0.85rem 1rem 0.85rem 2.7rem; font-size:0.9rem;
  font-family:var(--font-body);
  width:100%;
}
.field .form-control:focus, .field .form-select:focus{
  background:rgba(255,255,255,0.08); border-color:var(--gold); box-shadow:0 0 0 3px rgba(216,170,78,0.15); color:var(--white);
}
.field .form-control::placeholder{ color:rgba(255,255,255,0.45); }
.field select{ appearance:none; -webkit-appearance:none; }
.field.has-select::after{
  content:"";
  position:absolute; right:1rem; top:50%; transform:translateY(-40%);
  width:8px; height:8px; border-right:1.5px solid rgba(255,255,255,0.5); border-bottom:1.5px solid rgba(255,255,255,0.5);
  rotate:45deg; pointer-events:none;
}
.field select option{ color:var(--navy); }
.reg-card .btn-icf-solid{ width:100%; justify-content:center; margin-top:0.4rem; }
.reg-card .form-note{
  display:flex; align-items:center; gap:0.5rem; justify-content:center;
  font-size:0.74rem; color:var(--muted); margin-top:1rem;
}
.reg-card .form-note svg{ width:12px; height:12px; }
.reg-card .invalid-feedback{ color:#E8A98F; font-size:0.72rem; margin-top:-0.6rem; margin-bottom:0.6rem; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }

/* ==========================================================================
   PARTNER STRIP
   ========================================================================== */
.partner-strip{ background:var(--white); padding:2.2rem 0; border-bottom:1px solid rgba(11,27,46,0.08); }
.partner-strip .container-icf{
  display:flex; flex-wrap:wrap; align-items:center; gap:2.2rem 2.8rem;
}
.partner-strip .p-label{
  font-size:0.74rem; font-weight:700; letter-spacing:0.1em; color:var(--navy);
  writing-mode: horizontal-tb;
}
.p-group{ display:flex; flex-direction:column; gap:0.5rem; }
.p-group .p-tag{ font-size:0.65rem; font-weight:600; letter-spacing:0.08em; color:#8891A0; text-align:center; }
.p-group .p-logos{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }
.logo-mark{
  display:inline-flex; align-items:center; gap:0.4rem;
  font-family:var(--font-display); font-weight:700; font-size:1.1rem; color:var(--navy);
  padding:0.3rem 0.2rem; opacity:0.88; filter:grayscale(15%);
  transition: opacity 0.3s var(--ease);
}
.logo-mark:hover{ opacity:1; }
.logo-mark .dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); }
.logo-mark small{ font-family:var(--font-body); font-weight:500; font-size:0.6rem; display:block; color:#8891A0; letter-spacing:0.06em; }

/* ==========================================================================
   PLATFORMS (numbered image cards)
   ========================================================================== */
.platform-layout{ display:grid; grid-template-columns: 0.85fr 2fr; gap:clamp(1.5rem,3vw,3rem); align-items:center; }
.platform-copy .btn-icf{ margin-top:1.6rem; }

.platform-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.platform-card{
  position:relative; overflow:hidden;
  aspect-ratio: 3/4;
  background:var(--navy-2);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:1.6rem;
  transition: transform 0.5s var(--ease);
}
.platform-card:hover{ transform:translateY(-6px); }
.platform-card .p-visual{
  position:absolute; inset:0; z-index:0;
}
.platform-card .p-visual svg,
.platform-card .p-visual img{ width:100%; height:100%; object-fit:cover; display:block; }
.platform-card .p-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(0deg, rgba(9,18,32,0.96) 10%, rgba(9,18,32,0.55) 55%, rgba(9,18,32,0.25) 100%);
}
.platform-card .p-content{ position:relative; z-index:2; }
.platform-card .p-num{
  font-family:var(--font-display); font-size:1.4rem; font-weight:700; color:var(--gold); display:block; margin-bottom:0.6rem;
}
.platform-card .p-tag{
  display:inline-block; font-size:0.65rem; font-weight:700; letter-spacing:0.1em; color:var(--gold-bright);
  margin-bottom:0.5rem;
}
.platform-card h3{ color:var(--white); font-size:1.3rem; margin-bottom:0.55rem; line-height:1.18; }
.platform-card p{ color:rgba(255,255,255,0.72); font-size:0.84rem; margin-bottom:0.9rem;min-height: 130px; }

@media (max-width:900px){
  .platform-layout{ grid-template-columns:1fr; }
  .platform-cards{ grid-template-columns:1fr; }
}

/* ==========================================================================
   SHARED CENTERED SECTION HEAD
   ========================================================================== */
.section-head-center{ max-width:40rem; margin:0 auto 3rem; text-align:center; }
.section-head-center h2{ font-size:clamp(1.6rem,3vw,2.2rem); }
.section-rule{ width:64px; height:2px; margin:1rem auto 0; background:linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-cta{ text-align:center; margin-top:2.8rem; }

/* ==========================================================================
   SPEAKERS
   ========================================================================== */
.speaker-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:2rem 1.6rem; }
.speaker-card{ text-align:center; }
.speaker-photo{
  position:relative; overflow:hidden; border-radius:16px; margin-bottom:1rem;
  aspect-ratio:1/1.05; background:var(--navy-2);
  box-shadow:0 14px 28px -18px rgba(11,27,46,0.35);
}
.speaker-photo img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s var(--ease); }
.speaker-card:hover .speaker-photo img{ transform:scale(1.07); }
.speaker-card h3{ font-size:1rem; margin-bottom:0.15rem; }
.speaker-card .role{ font-size:0.8rem; margin:0; max-width:none; }
@media (max-width:900px){ .speaker-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:420px){ .speaker-grid{ grid-template-columns:1fr; max-width:260px; margin:0 auto; } }

/* ==========================================================================
   PARTNERS (logo showcase)
   ========================================================================== */
.partners-section .section-head-center{ margin-bottom:2.6rem; }
.partner-logo-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
.partner-logo-tile{
  background:var(--white); border:1px solid rgba(11,27,46,0.08); border-radius:14px; min-height:104px;
  display:flex; align-items:center; justify-content:center; padding:1.2rem;
  box-shadow:0 10px 22px -16px rgba(11,27,46,0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.partner-logo-tile img{ max-width:100%; max-height:120px; width:auto; object-fit:contain; /*filter:grayscale(45%); opacity:0.82;*/ transition:filter 0.35s var(--ease), opacity 0.35s var(--ease); }
.partner-logo-tile:hover{ transform:translateY(-6px); border-color:rgba(216,170,78,0.45); box-shadow:0 18px 30px -16px rgba(11,27,46,0.28); }
.partner-logo-tile:hover img{ filter:grayscale(0%); opacity:1; }
@media (max-width:900px){ .partner-logo-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .partner-logo-grid{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   STATS (on skyline photo)
   ========================================================================== */
.stats-section{ position:relative; overflow:hidden; color:var(--white); background:linear-gradient(135deg, #0E2038 0%, #0A1830 55%, #0C1A2E 100%); }
.stats-bg{ position:absolute; inset:0; z-index:0; }
.stats-bg::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(216,170,78,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 82%, rgba(216,170,78,0.09) 0%, transparent 50%);
}
.stats-overlay{ display:none; }
.stats-content{ position:relative; z-index:2; text-align:center; }
.stats-content .eyebrow{ margin-bottom:0.5rem; justify-content:center; }
.stats-content h2{ color:var(--white); font-size:clamp(1.6rem,3vw,2.2rem); margin-bottom:0.9rem; }
.stats-rule{ width:64px; height:2px; margin:0 auto 2.8rem; background:linear-gradient(90deg, transparent, var(--gold), transparent); }

.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.stat-item{
  position:relative;
  display:flex; flex-direction:column; align-items:center; gap:0.9rem;
  padding: 2.2rem 1.4rem 1.9rem;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(216,170,78,0.2);
  border-radius:18px;
  overflow:hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-item::before{
  content:""; position:absolute; top:0; left:50%; translate:-50% 0;
  width:0%; height:2px; background:var(--gold-bright);
  transition: width 0.4s var(--ease);
}
.stat-item:hover{
  transform:translateY(-8px);
  border-color:rgba(216,170,78,0.55);
  background:linear-gradient(180deg, rgba(216,170,78,0.09), rgba(255,255,255,0.02));
  box-shadow:0 18px 36px -18px rgba(0,0,0,0.55);
}
.stat-item:hover::before{ width:70%; }
.stat-icon{
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(216,170,78,0.12);
  border:1px solid rgba(216,170,78,0.4);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.stat-item:hover .stat-icon{ background:rgba(216,170,78,0.22); transform:scale(1.06); }
.stat-item svg{ width:26px; height:26px; color:var(--gold-bright); }
.stat-item .stat-num{
  font-family:var(--font-display); font-size:clamp(2rem,4vw,2.6rem); font-weight:700; color:var(--white);
  letter-spacing:-0.01em;
}
.stat-item .stat-label{ font-size:0.84rem; color:var(--muted); max-width:16ch; line-height:1.35; }
@media (max-width:800px){ .stat-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .stat-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   WHY ATTEND
   ========================================================================== */
.why-layout{ display:grid; grid-template-columns:0.85fr 2fr; gap:clamp(1.5rem,3vw,3rem); align-items:start; }
.why-copy .btn-icf{ margin-top:1.4rem; } 
.why-copy h2{font-size: 3.2rem;line-height: 65px;text-transform: uppercase;}
.why-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.why-card{
  border:1px solid rgba(255,255,255,0.14);
  padding:2rem 1.6rem; text-align:center;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.why-card:hover{ border-color:var(--gold); background:rgba(216,170,78,0.05); transform:translateY(-4px); }
.why-card .icon-ring{
  width:56px; height:56px; border-radius:50%; border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center; margin:0 auto 1.2rem;
}
.why-card svg{ width:22px; height:22px; color:var(--gold); }
.why-card h3{ color:var(--white); font-size:1.15rem; margin-bottom:0.7rem; }
.why-card p{ color:var(--muted); font-size:0.86rem; margin:0 auto; }
@media (max-width:900px){ .why-layout{ grid-template-columns:1fr; } .why-cards{ grid-template-columns:1fr; } }

/* ==========================================================================
   CLOSING CTA (photo banner)
   ========================================================================== */
.cta-banner{ position:relative; overflow:hidden; padding:clamp(3.5rem,8vw,6rem) 0; }
.cta-bg{ position:absolute; inset:0; z-index:0; }
.cta-bg img{ width:100%; height:100%; object-fit:cover; }
.cta-overlay{ position:absolute; inset:0; z-index:1; background:linear-gradient(90deg, rgba(8,14,24,0.88), rgba(8,14,24,0.55)); }
.cta-content{ position:relative; z-index:2; text-align:center; color:var(--white); }
.cta-content h2{ color:var(--white); font-size:clamp(1.8rem,4vw,2.6rem); margin-bottom:1rem; }
.cta-meta-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:1.4rem 2.2rem; margin-bottom:2rem; font-size:0.92rem; }
.cta-meta-row span{ display:flex; align-items:center; gap:0.5rem; }
.cta-meta-row svg{ width:16px; height:16px; color:var(--gold); }
.cta-content .btn-row{ justify-content:center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.icf-footer{ background:var(--ink); color:rgba(255,255,255,0.6); padding:3.4rem 0 1.6rem; font-size:0.86rem; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2rem; padding-bottom:2.2rem; border-bottom:var(--rule-light); }
.foot-brand .icf-brand{ margin-bottom:1rem; }
.foot-col-label{ font-size:0.72rem; font-weight:700; letter-spacing:0.08em; color:var(--gold); margin-bottom:0.8rem; display:block; }
.foot-col p, .foot-col a{ color:rgba(255,255,255,0.65); font-size:0.86rem; display:block; margin-bottom:0.4rem; }
.foot-col a:hover{ color:var(--gold-bright); }
.foot-socials{ display:flex; gap:0.7rem; }
.foot-socials a{
  width:36px; height:36px; border:1px solid rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition:border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.foot-socials a:hover{ border-color:var(--gold); background:rgba(216,170,78,0.12); }
.foot-socials svg{ width:15px; height:15px; color:var(--white); }
.foot-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; padding-top:1.6rem; font-size:0.78rem; }
.foot-bottom-links{ display:flex; gap:1.4rem; }
.back-to-top{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center; color:var(--white);
  transition:border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.back-to-top:hover{ border-color:var(--gold); transform:translateY(-3px); }
.back-to-top svg{ width:14px; height:14px; }

@media (max-width:900px){
  .foot-grid{ grid-template-columns:1fr 1fr; row-gap:2rem; }
}
@media (max-width:560px){
  .foot-grid{ grid-template-columns:1fr; }
}

/* ==========================================================================
   RESPONSIVE NAV
   ========================================================================== */
@media (max-width:991px){
  .icf-nav-toggle{ display:flex; }
  .icf-links{
    position:fixed; top:76px; left:0; right:0; flex-direction:column; align-items:flex-start;
    background:rgba(10,18,32,0.98); padding:1.5rem clamp(1.25rem,4vw,3.5rem) 2rem; gap:1.1rem;
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity 0.25s var(--ease), transform 0.25s var(--ease);
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .icf-links.open{ opacity:1; transform:none; pointer-events:auto; }
  .icf-search{ display:none; }
}

@media (max-width:991px){
  .hero-grid{ grid-template-columns:1fr; }
}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }


/* ==========================================================================
   PAGE-SPECIFIC STYLES
   Each page below is scoped under its own body class (e.g. <body class="page-about">)
   so that pages can reuse the same component names without colliding.
   ========================================================================== */

/* -------------------- about.html -------------------- */
  /* ===== About page additions (extends the shared token system in styles.css) ===== */
  .page-about .hero.hero-slim{ min-height:72svh; padding-bottom:4rem; }
  .page-about .hero-single{ max-width:46rem;padding: 60px 0px; }

  /* organised / presented cards (shares visual language with the conclave "about-card") */
  .page-about .org-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; margin-top:2.8rem; }
  .page-about .org-card{
    background:var(--white); border:1px solid rgba(11,27,46,0.09);
    padding:2.3rem 2rem; transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .page-about .org-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -22px rgba(11,27,46,0.28); border-color:rgba(216,170,78,0.45); }
  .page-about .org-card .tag{ display:block; font-size:0.68rem; font-weight:700; letter-spacing:0.09em; color:#A9791F; margin-bottom:1rem; }
  .page-about .org-card .icon-ring{ width:52px; height:52px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; margin-bottom:1.3rem; }
  .page-about .org-card .icon-ring svg{ width:22px; height:22px; color:var(--gold); }
  .page-about .org-card h3{ font-size:1.18rem; margin-bottom:0.7rem; }
  .page-about .org-card p{ color:#5B6472; font-size:0.9rem; margin:0; }
  @media (max-width:860px){ .page-about .org-grid{ grid-template-columns:1fr; } }

  /* journey timeline */
  .page-about .journey-layout{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:clamp(1.8rem,4vw,3.5rem); align-items:start; }
  @media (max-width:900px){ .page-about .journey-layout{ grid-template-columns:1fr; } }
  .page-about .journey-track{ position:relative; margin-top:0.4rem; }
  .page-about .journey-track::before{ content:""; position:absolute; left:29px; top:4px; bottom:4px; width:2px; background:rgba(216,170,78,0.5); }
  .page-about .journey-item{ position:relative; padding-left:76px; margin-bottom:2.6rem; }
  .page-about .journey-item:last-child{ margin-bottom:0; }
  .page-about .journey-year{
    position:absolute; left:0; top:0; width:60px; height:60px; border-radius:50%;
    background:var(--navy-2); border:2px solid var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-weight:700; font-size:0.86rem; color:var(--gold-bright);
  }
  .page-about .journey-item h4{ font-size:1.05rem; margin-bottom:0.5rem; }
  .page-about .journey-item p{ color:#5B6472; font-size:0.88rem; margin:0; max-width:44ch; }
  @media (max-width:560px){
    .page-about .journey-track::before{ left:23px; }
    .page-about .journey-item{ padding-left:60px; }
    .page-about .journey-year{ width:46px; height:46px; font-size:0.68rem; }
  }

  /* closing statement */
  .page-about .statement-block{ max-width:50rem; margin:0 auto; text-align:center; }
  .page-about .statement-block h2{ font-size:clamp(1.9rem,4.2vw,2.9rem); line-height:1.28; }
  .page-about .statement-block p{ margin:1.5rem auto 0; }

/* -------------------- conclave.html -------------------- */
  /* ===== Conclave page additions (extends the shared token system in styles.css) ===== */
  .page-conclave .hero-organisers{
    display:flex; flex-wrap:wrap; gap:1.5rem 2.2rem;
    font-size:0.78rem; color:rgba(255,255,255,0.6); margin-bottom:1.7rem;
  }
  .page-conclave .hero-organisers strong{ color:rgba(255,255,255,0.92); font-weight:600; }

  .page-conclave .pillar-row{ display:flex; flex-wrap:wrap; gap:1.5rem 2.1rem; margin:1.8rem 0 0; }
  .page-conclave .pillar-item{ display:flex; align-items:center; gap:0.6rem; }
  .page-conclave .pillar-item svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; }
  .page-conclave .pillar-item span{ color:var(--white); font-weight:600; font-size:0.9rem; }

  /* about */
  .page-conclave .about-top{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:clamp(1.8rem,4vw,3.5rem); align-items:center; }
  .page-conclave .about-visual svg{ width:100%; height:auto; display:block; }
  @media (max-width:900px){ .page-conclave .about-top{ grid-template-columns:1fr; } .page-conclave .about-visual{ order:-1; max-width:320px; margin:0 auto; } }
  .page-conclave .about-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3.2rem; }
  .page-conclave .about-card{
    background:var(--white); border:1px solid rgba(11,27,46,0.09);
    padding:2.3rem 1.9rem; transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .page-conclave .about-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -22px rgba(11,27,46,0.28); border-color:rgba(216,170,78,0.45); }
  .page-conclave .about-card .icon-ring{ width:52px; height:52px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; margin-bottom:1.4rem; }
  .page-conclave .about-card .icon-ring svg{ width:22px; height:22px; color:var(--gold); }
  .page-conclave .about-card h3{ font-size:1.12rem; margin-bottom:0.65rem; }
  .page-conclave .about-card p{ color:#5B6472; font-size:0.9rem; margin:0; }
  @media (max-width:900px){ .page-conclave .about-grid{ grid-template-columns:1fr; } }

  /* snapshot table */
  .page-conclave .snap-table-wrap{ margin-top:2.8rem; border-top:1px solid rgba(255,255,255,0.12); }
  .page-conclave .snap-table{ width:100%; border-collapse:collapse; }
  .page-conclave .snap-table th{ text-align:left; font-size:0.7rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold); padding:1.05rem 0.6rem; border-bottom:1px solid rgba(255,255,255,0.14); font-weight:600; }
  .page-conclave .snap-table td{ padding:1.1rem 0.6rem; border-bottom:1px solid rgba(255,255,255,0.08); font-size:0.9rem; color:rgba(255,255,255,0.8); vertical-align:top; }
  .page-conclave .snap-table td strong{ color:var(--white); }
  .page-conclave .snap-table td.muted{ color:var(--muted); }
  @media (max-width:700px){ .page-conclave .snap-table th:nth-child(3), .page-conclave .snap-table td:nth-child(3){ display:none; } }

  /* quote */
  .page-conclave .quote-wrap{ max-width:44rem; margin:0 auto; }
  .page-conclave .quote-card{ background:linear-gradient(135deg, var(--navy-2), var(--navy)); border:1px solid rgba(216,170,78,0.25); padding:clamp(2.2rem,5vw,3.2rem); }
  .page-conclave .quote-card .qmark{ width:36px; height:27px; margin-bottom:1.5rem; display:block; }
  .page-conclave .quote-card p{ color:var(--white); font-size:1.22rem; font-weight:500; line-height:1.6; max-width:none; }
  .page-conclave .quote-card .who{ color:var(--gold); font-weight:600; font-size:0.92rem; margin-top:1.7rem; }
  .page-conclave .quote-card .role{ color:var(--muted); font-size:0.82rem; margin-top:0.2rem; max-width:none; }

  /* agenda — split layout: time column / details column */
  .page-conclave .agenda-list{ margin-top:3.2rem; border-top:1px solid rgba(11,27,46,0.1); }
  .page-conclave .agenda-row{
    display:grid; grid-template-columns:150px 1fr; gap:clamp(1.4rem,3vw,2.6rem);
    padding:1.9rem 0; border-bottom:1px solid rgba(11,27,46,0.1);
    align-items:baseline; transition:background 0.3s var(--ease);
  }
  .page-conclave .agenda-row:hover{ background:rgba(216,170,78,0.05); }
  .page-conclave .agenda-col-time{ display:flex; align-items:baseline; gap:0.5rem; }
  .page-conclave .agenda-col-time .time{ font-family:var(--font-display); font-size:1.7rem; font-weight:700; color:var(--navy); line-height:1; }
  .page-conclave .agenda-col-time .zone{ font-size:0.68rem; letter-spacing:0.08em; color:#A9791F; font-weight:700; }
  .page-conclave .agenda-col-body h4{ font-size:1.05rem; margin-bottom:0.4rem; }
  .page-conclave .agenda-col-body p{ color:#5B6472; font-size:0.88rem; margin:0; max-width:48ch; }
  @media (max-width:680px){
    .page-conclave .agenda-row{ grid-template-columns:74px 1fr; gap:1.1rem; padding:1.5rem 0; }
    .page-conclave .agenda-col-time .time{ font-size:1.2rem; }
    .page-conclave .agenda-col-time{ flex-direction:column; gap:0.15rem; }
  }

  /* audience — dark cards on the navy section */
  .page-conclave .audience-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:1.1rem; margin-top:3rem; }
  .page-conclave .audience-card{ text-align:center; padding:2rem 1.1rem; border:1px solid rgba(255,255,255,0.14); transition:transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease); }
  .page-conclave .audience-card:hover{ transform:translateY(-5px); border-color:var(--gold); background:rgba(216,170,78,0.06); }
  .page-conclave .audience-card .icon-ring{ width:52px; height:52px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; margin:0 auto 1.2rem; }
  .page-conclave .audience-card .icon-ring svg{ width:21px; height:21px; color:var(--gold); }
  .page-conclave .audience-card .role{ font-size:0.85rem; font-weight:600; color:var(--white); max-width:none; margin:0; }
  @media (max-width:900px){ .page-conclave .audience-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:480px){ .page-conclave .audience-grid{ grid-template-columns:1fr; max-width:280px; margin-left:auto; margin-right:auto; } }

/* -------------------- partners.html -------------------- */
  /* ===== Partners page additions (extends the shared token system in styles.css) ===== */
  .page-partners .hero.hero-slim{ min-height:70svh; padding-bottom:4rem; }
  .page-partners .hero-single{ max-width:46rem;padding: 60px 0px; }

  /* spotlight tier: Presenting Partner / Powered By */
  .page-partners .feature-tier{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; margin-top:2.8rem; }
  .page-partners .feature-card{
    background:var(--white); border:1px solid rgba(11,27,46,0.09);
    padding:2.5rem 2rem; text-align:center;
    transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .page-partners .feature-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -22px rgba(11,27,46,0.28); border-color:rgba(216,170,78,0.45); }
  .page-partners .feature-card .tag{ display:block; font-size:0.7rem; font-weight:700; letter-spacing:0.1em; color:#A9791F; margin-bottom:1.1rem; }
  .page-partners .feature-card .icon-ring{ width:56px; height:56px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; margin:0 auto 1.3rem; }
  .page-partners .feature-card .icon-ring svg{ width:24px; height:24px; color:var(--gold); }
  .page-partners .feature-card h3{ font-size:1.35rem; margin:0; }
  @media (max-width:700px){ .page-partners .feature-tier{ grid-template-columns:1fr; } }

  /* gold / media tiers */
  .page-partners .tier-block{ margin-top:3rem; text-align:center; padding-top:2.6rem; border-top:1px solid rgba(11,27,46,0.08); }
  .page-partners .tier-block .tier-label{ font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#A9791F; margin-bottom:1.2rem; }
  .page-partners .tier-block .p-logos{ justify-content:center; }

  /* sponsorship contact cards */
  .page-partners .contact-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; margin-top:2.8rem; }
  .page-partners .contact-card{
    background:var(--white); border:1px solid rgba(11,27,46,0.09);
    padding:2.3rem 2rem; transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .page-partners .contact-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -22px rgba(11,27,46,0.28); border-color:rgba(216,170,78,0.45); }
  .page-partners .contact-card .icon-ring{ width:52px; height:52px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; margin-bottom:1.3rem; }
  .page-partners .contact-card .icon-ring svg{ width:22px; height:22px; color:var(--gold); }
  .page-partners .contact-card h3{ font-size:1.12rem; margin-bottom:1rem;color: #000;text-transform: uppercase; }
  .page-partners .contact-card .line{ display:flex; align-items:center; gap:0.65rem; color:#3B4657; font-size:0.9rem; margin-bottom:0.6rem; }
  .page-partners .contact-card .line:last-child{ margin-bottom:0; }
  .page-partners .contact-card .line svg{ width:15px; height:15px; color:var(--gold); flex-shrink:0; }
  .page-partners .contact-card a.line:hover{ color:var(--navy); }
  /* past partners badge cloud */
  .page-partners .badge-cloud{ display:flex; flex-wrap:wrap; justify-content:center; gap:0.65rem; margin-top:2.8rem; }
  .page-partners .badge-chip{
    display:inline-block; border:1px solid rgba(11,27,46,0.14); border-radius:999px;
    padding:0.55rem 1.15rem; font-size:0.83rem; font-weight:600; color:var(--navy);
    background:var(--white);
    transition:border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
  }
  .page-partners .badge-chip:hover{ border-color:var(--gold); background:rgba(216,170,78,0.07); transform:translateY(-3px); }

/* -------------------- speakers.html -------------------- */
  /* ===== Speakers page additions ===== */
  .page-speakers .hero.hero-slim{ min-height:70svh; padding-bottom:4rem; }
  .page-speakers .hero-single{ max-width:46rem;padding: 60px 0px; }

  /* speak-cta card */
  .page-speakers .speak-cta{
    display:grid; grid-template-columns:1.2fr 0.8fr; gap:clamp(1.8rem,4vw,3rem); align-items:center;
    background:linear-gradient(135deg, var(--navy-2), var(--navy)); border:1px solid rgba(216,170,78,0.25);
    padding:clamp(2.2rem,5vw,3.2rem);
  }
  .page-speakers .speak-cta h3{ color:var(--white); font-size:1.5rem; margin-bottom:0.9rem; }
  .page-speakers .speak-cta p{ color:var(--muted); font-size:0.94rem; margin:0; }
  .page-speakers .speak-cta .contact-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.16); padding:1.8rem 1.7rem; }
  .page-speakers .speak-cta .contact-card .name{ color:var(--white); font-weight:700; font-size:1.02rem; margin-bottom:0.9rem; }
  .page-speakers .speak-cta .contact-card .line{ display:flex; align-items:center; gap:0.6rem; color:rgba(255,255,255,0.78); font-size:0.88rem; margin-bottom:0.55rem; }
  .page-speakers .speak-cta .contact-card .line:last-child{ margin-bottom:0; }
  .page-speakers .speak-cta .contact-card .line svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; }
  .page-speakers .speak-cta .contact-card a.line:hover{ color:var(--gold-bright); }
  @media (max-width:800px){ .page-speakers .speak-cta{ grid-template-columns:1fr; } }

/* -------------------- contact.html -------------------- */
  /* ===== Contact page additions ===== */
  .page-contact .hero.hero-slim{ min-height:64svh; padding-bottom:3.5rem; }
  .page-contact .hero-single{ max-width:44rem; padding: 60px 0px;}

  /* contact cards (reach the right team) */
  .page-contact .contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2.8rem; }
  .page-contact .contact-card{
    background:var(--white); border:1px solid rgba(11,27,46,0.09);
    padding:2.2rem 1.9rem; transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .page-contact .contact-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -22px rgba(11,27,46,0.28); border-color:rgba(216,170,78,0.45); }
  .page-contact .contact-card .icon-ring{ width:50px; height:50px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; }
  .page-contact .contact-card .icon-ring svg{ width:21px; height:21px; color:var(--gold); }
  .page-contact .contact-card .tag{ display:block; font-size:0.68rem; font-weight:700; letter-spacing:0.09em; color:#A9791F; margin-bottom:0.5rem; }
  .page-contact .contact-card h3{ font-size:1.05rem; margin-bottom:1rem; }
  .page-contact .contact-card .line{ display:flex; align-items:center; gap:0.6rem; color:#3B4657; font-size:0.88rem; margin-bottom:0.55rem; }
  .page-contact .contact-card .line:last-child{ margin-bottom:0; }
  .page-contact .contact-card .line svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; }
  .page-contact .contact-card a.line:hover{ color:var(--navy); }
  @media (max-width:900px){ .page-contact .contact-grid{ grid-template-columns:1fr; } }

  /* venue map */
  .page-contact .map-embed{ width:100%; margin-top:2.8rem; line-height:0; }
  .page-contact .map-embed iframe{ display:block; width:100%; height:460px; }
  .page-contact .map-cta{ text-align:center; padding:2.2rem 0; }
  @media (max-width:600px){ .page-contact .map-embed iframe{ height:340px; } }

/* -------------------- pricing.html -------------------- */
  /* ===== Pricing page additions ===== */
  .page-pricing .hero.hero-slim{ min-height:64svh; padding-bottom:3.5rem; }
  .page-pricing .hero-single{ max-width:46rem;padding: 60px 0px; }

  .page-pricing .pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; margin-top:2.8rem; align-items:stretch; }
  .page-pricing .price-card{
    background:var(--white); border:1px solid rgba(11,27,46,0.09);
    padding:2.5rem 2.1rem; display:flex; flex-direction:column; position:relative;
    transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }
  .page-pricing .price-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -22px rgba(11,27,46,0.28); }
  .page-pricing .price-card h3{ font-size:1.22rem; margin-bottom:0.5rem; }
  .page-pricing .price-card .tier-desc{ color:#5B6472; font-size:0.86rem; margin-bottom:1.7rem; }
  .page-pricing .price-card .price{ margin-bottom:1.9rem; }
  .page-pricing .price-card .price .amount{ font-family:var(--font-display); font-weight:800; font-size:2rem; color:var(--navy); display:block; line-height:1.1; }
  .page-pricing .price-card .price .period{ font-size:0.78rem; color:#8891A0; }
  .page-pricing .price-features{ list-style:none; padding:0; margin:0 0 2.1rem; flex:1; }
  .page-pricing .price-features li{ display:flex; gap:0.6rem; align-items:flex-start; font-size:0.87rem; color:#3B4657; margin-bottom:0.85rem; line-height:1.45; }
  .page-pricing .price-features li svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; margin-top:0.15rem; }
  .page-pricing .price-card .btn-icf{ width:100%; justify-content:center; margin-top:auto; }

  .page-pricing .price-card.featured{ background:var(--navy-2); border:1px solid var(--gold); }
  .page-pricing .price-card.featured h3{ color:var(--white); }
  .page-pricing .price-card.featured .tier-desc{ color:var(--muted); }
  .page-pricing .price-card.featured .price .amount{ color:var(--white); }
  .page-pricing .price-card.featured .price .period{ color:var(--muted); }
  .page-pricing .price-card.featured .price-features li{ color:rgba(255,255,255,0.82); }
  .page-pricing .price-card.featured .ribbon{
    position:absolute; top:-14px; left:50%; transform:translateX(-50%);
    background:var(--gold); color:var(--navy); font-size:0.68rem; font-weight:700;
    letter-spacing:0.07em; text-transform:uppercase; padding:0.42rem 1.1rem; border-radius:999px;
  }
  @media (max-width:900px){ .page-pricing .pricing-grid{ grid-template-columns:1fr; } }

  .page-pricing .price-note{ max-width:42rem; margin:2.6rem auto 0; text-align:center; color:#5B6472; font-size:0.86rem; }
  .page-pricing .price-note a{ color:#A9791F; font-weight:600; text-decoration:underline; }

/* -------------------- thank-you.html -------------------- */
  /* ===== Thank You page additions ===== */
  .page-thankyou .thankyou-section{
    position:relative; overflow:hidden;
    min-height:100svh; display:flex; align-items:center; justify-content:center;
    padding:9rem 0 4rem;
    background:
      radial-gradient(ellipse at 20% 15%, rgba(216,170,78,0.10) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 85%, rgba(216,170,78,0.08) 0%, transparent 50%),
      var(--navy);
  }
  .page-thankyou .thankyou-confetti{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
  .page-thankyou .thankyou-card{
    position:relative; z-index:1; max-width:38rem; margin:0 auto; text-align:center;
    /*background:var(--navy-2); border:1px solid rgba(216,170,78,0.3);*/
    padding:clamp(2.6rem,6vw,4rem) clamp(1.8rem,5vw,3.2rem);
  }

  .page-thankyou .thankyou-icon{ width:76px; height:76px; margin:0 auto 1.8rem; }
  .page-thankyou .thankyou-icon svg{ width:100%; height:100%; }
  .page-thankyou .tick-circle{ fill:none; stroke:var(--gold); stroke-width:2.6; stroke-dasharray:170; stroke-dashoffset:170; animation:tick-circle 0.8s var(--ease) forwards; }
  .page-thankyou .tick-check{ fill:none; stroke:var(--gold-bright); stroke-width:4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:40; stroke-dashoffset:40; animation:tick-check 0.5s var(--ease) 0.7s forwards; }
  @keyframes tick-circle{ to{ stroke-dashoffset:0; } }
  @keyframes tick-check{ to{ stroke-dashoffset:0; } }

  .page-thankyou .thankyou-eyebrow{ display:inline-flex; align-items:center; gap:0.7rem; font-size:0.72rem; font-weight:600; letter-spacing:0.16em; color:var(--gold); margin-bottom:1.1rem; text-transform:uppercase; }
  .page-thankyou .thankyou-eyebrow::before, .page-thankyou .thankyou-eyebrow::after{ content:""; width:22px; height:1px; background:var(--gold); opacity:0.6; }
  .page-thankyou .thankyou-card h1{ color:var(--white); font-size:clamp(1.7rem,4vw,2.5rem); line-height:1.2; margin-bottom:1.1rem; }
  .page-thankyou .thankyou-card p.sub{ color:var(--muted); font-size:0.98rem; line-height:1.7; max-width:34rem; margin:0 auto; }

  .page-thankyou .thankyou-details{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem 1.6rem; margin:2.2rem 0 2.4rem; }
  .page-thankyou .thankyou-details .hero-fact{
    display:flex; align-items:center; gap:0.55rem;
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.14); border-radius:8px;
    padding:0.7rem 1.1rem; color:var(--white); font-size:0.88rem; font-weight:500;
  }
  .page-thankyou .thankyou-details .hero-fact svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; }

  .page-thankyou .thankyou-actions{ display:flex; flex-wrap:wrap; justify-content:center; gap:0.9rem; }
  .page-thankyou .thankyou-actions .btn-icf svg{ width:14px; height:14px; }

  /* reveal stagger to match the reference timing */
  .page-thankyou .delay-1{ transition-delay:0.1s; }
  .page-thankyou .delay-2{ transition-delay:0.25s; }
  .page-thankyou .delay-3{ transition-delay:0.4s; }
  .page-thankyou .delay-4{ transition-delay:0.55s; }
