/* =========================================================
   RED CARPET VIP — Global Design System
   Prototype UI/UX build — no external frameworks.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* --- brand palette (from logo: black / crimson / gold) --- */
  --black:        #0a0a0d;
  --black-2:      #121217;
  --black-3:      #1a1a21;
  --black-4:      #232329;
  --line:         rgba(212,175,55,0.16);
  --line-soft:    rgba(255,255,255,0.08);

  --red-900:      #4a0510;
  --red-700:      #6e0a17;
  --red:          #8e0e1f;
  --red-500:      #a91429;
  --red-400:      #c81e3a;
  --red-300:      #e13a54;

  --gold-900:     #8a6a1e;
  --gold-700:     #a8842a;
  --gold:         #d4af37;
  --gold-400:     #e6c860;
  --gold-300:     #f3d77a;
  --gold-100:     #f8ecc8;

  --cream:        #f6efe0;
  --white:        #ffffff;
  --ink:          #ece7dc;
  --muted:        #b9b3a6;
  --muted-2:      #837c6e;

  --success:      #3fae67;
  --warn:         #d99a2b;
  --danger:       #d64545;
  --info:         #3f8ecf;

  /* gradients */
  --grad-gold: linear-gradient(120deg, #a8842a 0%, #e6c860 28%, #fdf3cf 50%, #d4af37 72%, #8a6a1e 100%);
  --grad-gold-soft: linear-gradient(120deg, var(--gold-700), var(--gold-400));
  --grad-red: linear-gradient(135deg, var(--red-700) 0%, var(--red) 45%, var(--red-400) 100%);
  --grad-dark: linear-gradient(180deg, rgba(10,10,13,0) 0%, rgba(10,10,13,0.7) 55%, #0a0a0d 100%);
  --grad-radial: radial-gradient(60% 60% at 50% 30%, rgba(142,14,31,0.28), rgba(10,10,13,0) 70%);

  /* type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 40px -12px rgba(0,0,0,0.55);
  --shadow-gold: 0 8px 30px -8px rgba(212,175,55,0.35);
  --ease: cubic-bezier(.22,.9,.28,1);
}

/* ---------------------------------------------------------
   Reset
   --------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }
input, select, textarea, button{ font: inherit; color: inherit; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .2px; }
p{ margin: 0 0 1em; color: var(--muted); }
svg{ display:block; width:20px; height:20px; flex-shrink:0; }

::selection{ background: var(--red-500); color: var(--white); }

/* scrollbar (webkit) */
::-webkit-scrollbar{ width: 10px; height:10px; }
::-webkit-scrollbar-track{ background: var(--black-2); }
::-webkit-scrollbar-thumb{ background: var(--black-4); border-radius: 10px; border: 2px solid var(--black-2); }
::-webkit-scrollbar-thumb:hover{ background: var(--gold-900); }

/* ---------------------------------------------------------
   Utility layout
   --------------------------------------------------------- */
.container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-wide{ max-width: 1440px; margin:0 auto; padding: 0 28px; }
.section{ padding: 110px 0; position: relative; }
.section-tight{ padding: 70px 0; }
.grid{ display:grid; gap: 28px; }
.flex{ display:flex; }
.flex-center{ display:flex; align-items:center; justify-content:center; }
.flex-between{ display:flex; align-items:center; justify-content:space-between; }
.gap-8{gap:8px;} .gap-12{gap:12px;} .gap-16{gap:16px;} .gap-24{gap:24px;}
.text-center{ text-align:center; }
.mt-0{margin-top:0;} .mb-0{margin-bottom:0;}
.muted{ color: var(--muted); }
.hidden{ display:none !important; }
.desktop-only{ }
.mobile-only{ display:none; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size:12.5px;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:''; width: 26px; height: 1.5px; background: var(--grad-gold);
}
.eyebrow.center{ justify-content:center; }

.section-head{ max-width: 720px; margin: 0 0 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(30px, 4vw, 46px); color: var(--white); }
.section-head p{ font-size: 17px; }

.gold-text{
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.serif-italic{ font-style: italic; font-weight: 500; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14.5px; letter-spacing:.3px;
  border: 1px solid transparent; cursor:pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; }
.btn-primary{
  background: var(--grad-gold); color: #241a03;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(212,175,55,.55); }
.btn-red{
  background: var(--grad-red); color: var(--white);
  box-shadow: 0 10px 28px -10px rgba(142,14,31,.7);
}
.btn-red:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(142,14,31,.85); }
.btn-outline{
  background: transparent; color: var(--cream);
  border-color: rgba(246,239,224,.28);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-300); transform: translateY(-2px); }
.btn-ghost{
  background: rgba(255,255,255,.05); color: var(--cream); border-color: var(--line-soft);
}
.btn-ghost:hover{ background: rgba(255,255,255,.09); }
.btn-sm{ padding: 10px 20px; font-size: 13px; }
.btn-lg{ padding: 18px 38px; font-size: 15.5px; }
.btn-block{ width:100%; }
.btn-icon{ width: 42px; height:42px; padding:0; border-radius:50%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; transform:none !important; }

.link-arrow{ display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--gold-300); font-size:14px; }
.link-arrow svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
.link-arrow:hover svg{ transform: translateX(5px); }

/* ---------------------------------------------------------
   Site header / nav
   --------------------------------------------------------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  padding: 12px 0;
  background: rgba(10,10,13,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.8);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height: 42px; width:auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img{ height: 34px; }
.brand-word{ font-family: var(--font-display); font-size: 19px; font-weight:700; color:var(--white); letter-spacing:.3px; }
.brand-word span{ color: var(--gold-300); }

.nav-main{ display:flex; align-items:center; gap: 6px; }
.nav-main a{
  padding: 10px 16px; font-size: 14px; font-weight:600; color: var(--ink);
  border-radius: var(--radius-pill); position:relative;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-main a:hover{ color: var(--gold-300); background: rgba(212,175,55,.08); }
.nav-main a.active{ color: var(--gold-300); }
.nav-actions{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none; width:44px; height:44px; border-radius:50%; border:1px solid var(--line-soft);
  background: rgba(255,255,255,.04); align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle svg{ width:20px; height:20px; }

/* mobile drawer */
.mobile-drawer{
  position: fixed; inset:0; z-index: 900; visibility:hidden;
}
.mobile-drawer .backdrop{
  position:absolute; inset:0; background: rgba(0,0,0,.6); opacity:0; transition: opacity .4s var(--ease);
}
.mobile-drawer .panel{
  position:absolute; top:0; right:0; bottom:0; width: min(340px, 84vw);
  background: var(--black-2); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .45s var(--ease);
  padding: 26px 26px 40px; display:flex; flex-direction:column; gap: 6px; overflow-y:auto;
}
.mobile-drawer.open{ visibility:visible; }
.mobile-drawer.open .backdrop{ opacity:1; }
.mobile-drawer.open .panel{ transform: translateX(0); }
.mobile-drawer .drawer-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 18px; }
.mobile-drawer a{ padding: 13px 6px; font-weight:600; font-size:15.5px; border-bottom:1px solid var(--line-soft); color: var(--ink); }
.mobile-drawer a:hover{ color: var(--gold-300); }
.mobile-drawer .drawer-actions{ margin-top: 20px; display:flex; flex-direction:column; gap:10px; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  position: relative; min-height: 100vh; display:flex; align-items:center;
  overflow:hidden; padding-top: 110px;
  background: var(--black);
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  filter: saturate(1.1) contrast(1.05) brightness(.92);
  transform-origin: 60% 40%;
  animation: heroKenBurns 24s ease-out forwards;
}
@keyframes heroKenBurns{
  from{ transform: scale(1.14); }
  to{ transform: scale(1); }
}
@media (prefers-reduced-motion: reduce){
  .hero-media img{ animation: none; }
}
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(60% 55% at 50% 20%, rgba(142,14,31,.2), transparent 70%),
    linear-gradient(180deg, rgba(8,8,10,.3) 0%, rgba(8,8,10,.22) 32%, rgba(8,8,10,.78) 84%, #0a0a0d 100%),
    linear-gradient(100deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.35) 42%, transparent 62%, rgba(8,8,10,.4) 100%);
}
.hero-content{ position:relative; z-index:2; max-width: 860px; }
.hero-content h1{
  font-size: clamp(38px, 6vw, 74px); color: var(--white); margin-bottom: 26px;
}
.hero-content h1 em{ font-style: italic; font-weight: 600; }
.hero-content .lede{ font-size: 18.5px; max-width: 620px; color: var(--ink); opacity:.85; }
.hero-cta{ display:flex; gap:16px; margin-top: 36px; flex-wrap:wrap; }
.hero-scroll{
  position:absolute; left:50%; bottom:34px; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px; z-index:2;
  color: var(--muted); font-size:11px; letter-spacing:2px; text-transform:uppercase;
  animation: floatY 2.6s ease-in-out infinite;
}
.hero-scroll .line{ width:1px; height:34px; background: linear-gradient(var(--gold), transparent); }
@keyframes floatY{ 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

.hero-stats{
  position:relative; z-index:2; margin-top: 64px;
  display:grid; grid-template-columns: repeat(4,auto); gap: 46px;
}
.hero-stats .stat b{
  display:block; font-family: var(--font-display); font-size: 34px; color: var(--gold-300);
}
.hero-stats .stat span{ font-size: 12.5px; color: var(--muted); letter-spacing:.4px; }

/* Ticker */
.ticker-wrap{
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--black-2); overflow:hidden; padding: 18px 0;
}
.ticker{ display:flex; gap: 60px; width:max-content; animation: ticker 32s linear infinite; }
.ticker span{ font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--muted); white-space:nowrap; display:flex; align-items:center; gap:14px; }
.ticker span::after{ content:'✦'; color: var(--gold); font-size:11px; }
@keyframes ticker{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------------------------------------------------------
   Curtain intro (page-load reveal, homepage only)
   --------------------------------------------------------- */
.curtain{ position:fixed; inset:0; z-index:3000; display:flex; pointer-events:none; visibility:hidden; }
body.curtain-armed .curtain{ visibility:visible; }
.curtain .panel{
  flex:1; background: var(--black); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.curtain .panel::before{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(212,175,55,.05), transparent 40%), var(--black);
}
.curtain .panel.left{ border-right: 1px solid rgba(212,175,55,.18); }
.curtain .panel.right{ border-left: 1px solid rgba(212,175,55,.18); }
.curtain .mark{ position:relative; z-index:1; opacity:0; transition: opacity .5s ease; }
.curtain .panel.left .mark{ transform: translateX(14px); }
.curtain .panel.right .mark{ transform: translateX(-14px); }
.curtain .mark img{ height:46px; }
body.curtain-play .curtain .mark{ opacity:1; }
body.curtain-play .curtain .panel.left{ animation: curtainOpenLeft 1s cubic-bezier(.76,0,.24,1) forwards; animation-delay: .55s; }
body.curtain-play .curtain .panel.right{ animation: curtainOpenRight 1s cubic-bezier(.76,0,.24,1) forwards; animation-delay: .55s; }
@keyframes curtainOpenLeft{ to{ transform: translateX(-100%); } }
@keyframes curtainOpenRight{ to{ transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce){
  .curtain{ display:none; }
}

/* ---------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------- */
.reveal{ opacity:0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-blur{ opacity:0; filter: blur(16px); transform: translateY(22px); transition: opacity 1.1s var(--ease), filter 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal-blur.in{ opacity:1; filter: blur(0); transform: translateY(0); }
.reveal-scale{ opacity:0; transform: scale(.94); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-scale.in{ opacity:1; transform: scale(1); }
.reveal-left{ opacity:0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.in{ opacity:1; transform: translateX(0); }
.reveal-right{ opacity:0; transform: translateX(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right.in{ opacity:1; transform: translateX(0); }
.stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------------------------------------------------------
   Cards
   --------------------------------------------------------- */
.card{
  background: linear-gradient(180deg, var(--black-3), var(--black-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover{ transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-soft); }

.sector-grid{ grid-template-columns: repeat(4, 1fr); }
.sector-card{
  padding: 30px 24px; text-align:left; cursor:pointer;
  display:flex; flex-direction:column; gap:16px;
}
.sector-card .ic{
  width: 52px; height:52px; border-radius: 14px;
  background: rgba(212,175,55,.1); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-300);
}
.sector-card .ic svg{ width:24px; height:24px; }
.sector-card h4{ color: var(--white); font-size:18px; margin:0; }
.sector-card p{ font-size: 13.5px; margin:0; }
.sector-card .count{ margin-top:auto; font-size:12px; color: var(--gold-300); font-weight:700; letter-spacing:.4px; text-transform:uppercase; }

.stakeholder-grid{ grid-template-columns: repeat(3,1fr); }
.stakeholder-card{ padding: 38px 32px; position:relative; overflow:hidden; }
.stakeholder-card .tag{
  display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:1.6px; text-transform:uppercase;
  color: var(--gold-300); margin-bottom: 18px;
}
.stakeholder-card h3{ color:var(--white); font-size: 25px; margin-bottom:14px; }
.stakeholder-card ul{ margin: 20px 0 26px; display:flex; flex-direction:column; gap:10px; }
.stakeholder-card ul li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--ink); opacity:.9; }
.stakeholder-card ul li svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color: var(--gold); }

/* merchant thumbnail placeholder gradients (stand in for real photography — see media guide) */
.thumb.grad-g1{ background: linear-gradient(135deg,#3a0812,#8e0e1f 55%,#d4af37); }
.thumb.grad-g2{ background: linear-gradient(135deg,#1a1a21,#3f8ecf 60%,#0a0a0d); }
.thumb.grad-g3{ background: linear-gradient(135deg,#123018,#3fae67 55%,#0a0a0d); }
.thumb.grad-g4{ background: linear-gradient(135deg,#1a1a21,#4a4a55 55%,#8e0e1f); }
.thumb.grad-g5{ background: linear-gradient(135deg,#0d1f2e,#3f8ecf 55%,#d4af37); }
.thumb.grad-g6{ background: linear-gradient(135deg,#3a0812,#a8842a 55%,#1a1a21); }
.thumb.grad-g7{ background: linear-gradient(135deg,#2a1a08,#d4af37 55%,#0a0a0d); }
.thumb.grad-g8{ background: linear-gradient(135deg,#0d2016,#3fae67 55%,#123018); }
.thumb{ position:relative; }
.thumb::after{
  content:''; position:absolute; inset:0;
  background: radial-gradient(80% 80% at 50% 120%, rgba(0,0,0,.45), transparent 60%);
}

/* merchant / offer cards */
.merchant-grid{ grid-template-columns: repeat(3, 1fr); }
.merchant-card{ overflow:hidden; cursor:pointer; }
.merchant-card .thumb{
  height: 190px; position:relative; overflow:hidden;
}
.merchant-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.merchant-card:hover .thumb img{ transform: scale(1.08); }
.merchant-card .thumb .badge-row{ position:absolute; top:12px; left:12px; right:12px; display:flex; justify-content:space-between; }
.merchant-card .body{ padding: 20px 22px 22px; }
.merchant-card .sector{ font-size:11.5px; color: var(--gold-300); font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; }
.merchant-card h4{ color:var(--white); font-size:19px; margin-bottom:6px; }
.merchant-card .loc{ font-size:13px; color:var(--muted); display:flex; align-items:center; gap:6px; margin-bottom:14px; }
.merchant-card .loc svg{ width:14px; height:14px; }
.merchant-card .meta-row{ display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid var(--line-soft); }
.merchant-card .rating{ display:flex; align-items:center; gap:6px; font-size:13.5px; font-weight:700; color: var(--white); }
.merchant-card .rating svg{ width:15px; height:15px; color: var(--gold); }
.merchant-card .perk{ font-size:13px; font-weight:700; color: var(--gold-300); }

/* badges / pills / chips */
.badge{
  display:inline-flex; align-items:center; gap:6px; padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight:800; letter-spacing:.6px; text-transform:uppercase;
}
.badge-gold{ background: rgba(212,175,55,.14); color: var(--gold-300); border:1px solid rgba(212,175,55,.3); }
.badge-red{ background: rgba(142,14,31,.22); color: #ff8a95; border:1px solid rgba(200,30,58,.4); }
.badge-green{ background: rgba(63,174,103,.15); color: #6fd394; border:1px solid rgba(63,174,103,.35); }
.badge-muted{ background: rgba(255,255,255,.08); color: var(--ink); border:1px solid var(--line-soft); }
.badge-info{ background: rgba(63,142,207,.15); color:#7ec1f2; border:1px solid rgba(63,142,207,.35); }
.badge-warn{ background: rgba(217,154,43,.15); color:#f0b654; border:1px solid rgba(217,154,43,.35); }

.chip{
  padding: 9px 18px; border-radius: var(--radius-pill); border:1px solid var(--line-soft);
  background: rgba(255,255,255,.04); font-size: 13.5px; font-weight:600; cursor:pointer;
  transition: all .3s var(--ease); color: var(--ink);
}
.chip:hover{ border-color: var(--gold); color: var(--gold-300); }
.chip.active{ background: var(--grad-gold); color:#241a03; border-color:transparent; }

/* ---------------------------------------------------------
   Pricing / tier cards
   --------------------------------------------------------- */
.tier-grid{ grid-template-columns: repeat(3, 1fr); align-items:stretch; }
.tier-card{
  padding: 40px 34px; display:flex; flex-direction:column; position:relative;
}
.tier-card.featured{
  border: 1px solid var(--gold-700);
  background: linear-gradient(180deg, rgba(212,175,55,.09), var(--black-2) 60%);
  transform: scale(1.035);
  box-shadow: 0 30px 60px -24px rgba(212,175,55,.25);
}
.tier-card .most-popular{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: var(--grad-gold); color:#241a03; font-size:11px; font-weight:800;
  padding:7px 18px; border-radius: var(--radius-pill); letter-spacing:1px; text-transform:uppercase;
  white-space:nowrap;
}
.tier-card .tier-name{ font-family:var(--font-display); font-size:24px; color:var(--white); margin-bottom:6px; }
.tier-card .tier-sub{ font-size:13.5px; color:var(--muted); margin-bottom:24px; }
.tier-card .tier-price{ font-family:var(--font-display); font-size:44px; color: var(--gold-300); margin-bottom:2px; }
.tier-card .tier-price span{ font-size:14px; color:var(--muted); font-family:var(--font-body); font-weight:600; }
.tier-card .tier-price small{ display:block; font-size: 12px; color: var(--muted-2); font-family: var(--font-body); margin-top:4px;}
.tier-card ul{ margin: 28px 0 30px; display:flex; flex-direction:column; gap:13px; flex:1; }
.tier-card ul li{ display:flex; gap:10px; font-size:14px; align-items:flex-start; color: var(--ink); }
.tier-card ul li svg{ width:17px; height:17px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.tier-card ul li.off{ opacity:.4; text-decoration: line-through; }

/* ---------------------------------------------------------
   Steps / process
   --------------------------------------------------------- */
.steps-row{ grid-template-columns: repeat(4,1fr); counter-reset: step; }
.step-card{ padding: 34px 26px; position:relative; }
.step-card .num{
  font-family: var(--font-display); font-size:15px; color: var(--gold-300);
  width:40px; height:40px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.step-card .num svg{ width:18px; height:18px; }
.step-card h4{ color:var(--white); font-size:17.5px; margin-bottom:10px; }
.step-card p{ font-size:13.8px; margin:0; }
.step-connector{ position:absolute; top:54px; right:-14px; width:28px; height:1px; background: linear-gradient(90deg, var(--gold-700), transparent); display:none; }

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonial-card{ padding: 34px 30px; }
.testimonial-card .stars{ display:flex; gap:4px; margin-bottom:18px; color: var(--gold); }
.testimonial-card .stars svg{ width:16px; height:16px; }
.testimonial-card p.quote{ font-family: var(--font-display); font-style:italic; font-size:17px; color: var(--ink); margin-bottom: 22px; }
.testimonial-card .who{ display:flex; align-items:center; gap:12px; }
.testimonial-card .avatar{
  width:44px; height:44px; border-radius:50%; background: var(--grad-red);
  display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--white); font-size:15px;
}
.testimonial-card .who b{ display:block; color:var(--white); font-size:14px; }
.testimonial-card .who span{ font-size:12.5px; color:var(--muted); }

/* ---------------------------------------------------------
   CTA band
   --------------------------------------------------------- */
.cta-band{
  border-radius: var(--radius-lg); padding: 64px 60px; position:relative; overflow:hidden;
  background: linear-gradient(120deg, var(--red-900), var(--black-2) 60%);
  border: 1px solid var(--line);
}
.cta-band::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(50% 90% at 90% 0%, rgba(212,175,55,.18), transparent 60%);
}
.cta-band-inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap: 40px; flex-wrap:wrap; }
.cta-band h3{ font-size: clamp(24px,3vw,34px); color:var(--white); max-width:520px; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer{ background: var(--black-2); border-top: 1px solid var(--line); padding: 76px 0 30px; }
.footer-grid{ grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; margin-bottom: 60px; }
.footer-brand p{ font-size:13.8px; max-width: 280px; margin: 18px 0 22px; }
.footer-col h5{ color: var(--white); font-size:13px; letter-spacing:1px; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:var(--muted); transition: color .3s; }
.footer-col a:hover{ color: var(--gold-300); }
.social-row{ display:flex; gap:10px; margin-top:22px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:center; transition: all .3s;
}
.social-row a:hover{ border-color: var(--gold); background: rgba(212,175,55,.08); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  font-size:12.8px; color: var(--muted-2);
}
.footer-bottom .legal-links{ display:flex; gap:22px; }

/* ---------------------------------------------------------
   Forms (shared)
   --------------------------------------------------------- */
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size:13px; font-weight:700; color: var(--ink); margin-bottom:9px; letter-spacing:.2px; }
.field .hint{ font-size:12px; color: var(--muted-2); margin-top:6px; }
.input, select.input, textarea.input{
  width:100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid var(--line-soft); color: var(--white);
  transition: border-color .3s, background .3s;
}
.input:focus, select.input:focus, textarea.input:focus{
  outline:none; border-color: var(--gold-700); background: rgba(255,255,255,.06);
}
.input::placeholder{ color: var(--muted-2); }
textarea.input{ resize: vertical; min-height: 110px; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--muted); }
.checkbox-row input{ margin-top:3px; accent-color: var(--gold); }
.select-wrap{ position:relative; }
.select-wrap::after{
  content:''; position:absolute; right:16px; top:50%; width:9px; height:9px;
  border-right:2px solid var(--muted); border-bottom:2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg); pointer-events:none;
}

/* Role tabs (used in login/signup) */
.role-tabs{ display:flex; gap:10px; margin-bottom:30px; background: rgba(255,255,255,.03); padding:6px; border-radius: var(--radius-pill); border:1px solid var(--line-soft); }
.role-tabs button{
  flex:1; padding: 12px 10px; border-radius: var(--radius-pill); border:none; background:transparent;
  color: var(--muted); font-weight:700; font-size:13.5px; cursor:pointer; transition: all .3s;
}
.role-tabs button.active{ background: var(--grad-gold); color:#241a03; }

/* ---------------------------------------------------------
   Modal
   --------------------------------------------------------- */
.modal-overlay{
  position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center;
  background: rgba(6,6,8,.72); backdrop-filter: blur(6px); opacity:0; visibility:hidden;
  transition: opacity .35s var(--ease); padding: 24px;
}
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal{
  width: 100%; max-width: 520px; max-height: 86vh; overflow-y:auto;
  background: var(--black-3); border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; transform: translateY(24px) scale(.98); transition: transform .4s var(--ease);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7);
}
.modal-overlay.open .modal{ transform: translateY(0) scale(1); }
.modal-head{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:22px; }
.modal-head h3{ color:var(--white); font-size:22px; margin:0; }
.modal-close{ width:34px; height:34px; border-radius:50%; border:1px solid var(--line-soft); background:transparent; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; }
.modal-close svg{ width:15px; height:15px; }

/* toast */
.toast-stack{ position:fixed; bottom: 26px; right: 26px; z-index:1200; display:flex; flex-direction:column; gap:10px; }
.toast{
  min-width: 280px; max-width: 360px; padding: 15px 18px; border-radius: 12px;
  background: var(--black-3); border:1px solid var(--line); box-shadow: var(--shadow-soft);
  display:flex; gap:12px; align-items:flex-start; transform: translateX(40px); opacity:0;
  transition: all .4s var(--ease);
}
.toast.show{ transform: translateX(0); opacity:1; }
.toast .ic{ width:22px; height:22px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; background: rgba(63,174,103,.18); color:#6fd394; }
.toast .ic svg{ width:12px; height:12px; }
.toast b{ display:block; color:var(--white); font-size:13.5px; margin-bottom:2px; }
.toast p{ margin:0; font-size:12.5px; }

/* ---------------------------------------------------------
   Misc decorative
   --------------------------------------------------------- */
.divider-orn{ display:flex; align-items:center; justify-content:center; gap:14px; margin: 0 auto 22px; color: var(--gold); }
.divider-orn::before, .divider-orn::after{ content:''; width:52px; height:1px; background: linear-gradient(90deg, transparent, var(--gold-700)); }
.divider-orn::after{ background: linear-gradient(90deg, var(--gold-700), transparent); }

.bg-noise{ position:relative; }
.marquee-track{ display:flex; }

/* ---------------------------------------------------------
   Chapter scroll — pinned scrollytelling section
   --------------------------------------------------------- */
.chapter-scroll{ background: var(--black-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); position:relative; }
.chapter-track-outer{ height: calc(var(--chapters, 3) * 100vh); position:relative; }
.chapter-sticky{ position:sticky; top:0; height:100vh; display:flex; flex-direction:column; justify-content:center; overflow:hidden; padding-bottom:90px; }
.chapter-inner{ display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center; width:100%; }
.chapter-visual{
  position:relative; height:min(52vh, 440px); border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--line); background: var(--black-3);
}
.chapter-bg{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; animation: chapterFade .7s var(--ease); }
.chapter-bg .chapter-num{
  font-family:var(--font-display); font-size:min(22vw, 260px); line-height:1; font-weight:700;
  color:rgba(255,255,255,.06); -webkit-text-stroke: 1.5px rgba(212,175,55,.4);
}
.chapter-bg .chapter-ic{ position:absolute; bottom:28px; right:28px; color:rgba(255,255,255,.5); }
.chapter-bg .chapter-ic svg{ width:34px; height:34px; }
.chapter-copy{ animation: chapterFade .7s var(--ease); }
.chapter-copy .tag{
  display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:1.6px; text-transform:uppercase;
  color: var(--gold-300); margin-bottom: 16px;
}
.chapter-copy h3{ color:var(--white); font-size: clamp(24px,2.6vw,32px); margin-bottom:18px; }
.chapter-copy ul{ display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.chapter-copy ul li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--ink); opacity:.92; }
.chapter-copy ul li svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color:var(--gold); }
@keyframes chapterFade{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:none;} }

.chapter-index{ position:absolute; left:0; right:0; bottom:36px; display:flex; justify-content:center; gap:6px; z-index:2; padding:0 24px; }
.chapter-index button{
  display:flex; align-items:center; gap:9px; padding:9px 16px 9px 12px; border-radius: var(--radius-pill);
  border:1px solid var(--line-soft); background: rgba(255,255,255,.03); color:var(--muted);
  font-size:12.5px; font-weight:700; cursor:pointer; transition: all .3s var(--ease); white-space:nowrap;
}
.chapter-index button .cn{
  width:20px; height:20px; border-radius:50%; border:1px solid currentColor; display:flex; align-items:center; justify-content:center;
  font-size:10px; flex-shrink:0;
}
.chapter-index button.active{ color:var(--gold-300); border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.08); }
.chapter-progress{ position:absolute; left:0; right:0; bottom:0; height:2px; background: rgba(255,255,255,.06); z-index:2; }
.chapter-progress-fill{ height:100%; background: var(--grad-gold); width:0%; }

.chapter-mobile-list{ display:none; }

@media (max-width: 900px){
  .chapter-track-outer{ height:auto; }
  .chapter-sticky{ display:none; }
  .chapter-mobile-list{ display:flex; flex-direction:column; gap:20px; padding: 70px 0; }
}

.page-hero{
  padding: 168px 0 80px; position:relative; overflow:hidden;
  background: radial-gradient(80% 60% at 50% -10%, rgba(142,14,31,.28), transparent 60%), var(--black);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ text-align:center; font-size: clamp(32px,5vw,56px); color:var(--white); }
.page-hero .lede{ text-align:center; max-width:640px; margin: 0 auto; font-size:16.5px; }
.breadcrumb{ display:flex; justify-content:center; gap:8px; font-size:12.5px; color:var(--muted-2); margin-bottom:20px; }
.breadcrumb a:hover{ color: var(--gold-300); }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1080px){
  .nav-main{ display:none; }
  .nav-toggle{ display:flex; }
  .sector-grid{ grid-template-columns: repeat(2,1fr); }
  .stakeholder-grid{ grid-template-columns: 1fr; }
  .merchant-grid{ grid-template-columns: repeat(2,1fr); }
  .tier-grid{ grid-template-columns: 1fr; max-width:440px; margin:0 auto; }
  .tier-card.featured{ transform:none; }
  .steps-row{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .desktop-only{ display:none; }
  .mobile-only{ display:block; }
}
@media (max-width: 680px){
  .section{ padding: 70px 0; }
  .sector-grid, .merchant-grid, .steps-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap:34px; }
  .field-row{ grid-template-columns: 1fr; }
  .cta-band{ padding: 40px 26px; }
  .cta-band-inner{ flex-direction:column; align-items:flex-start; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
}
