:root{
  --bg:#0b0b0b;
  --text:#f2f0ea;
  --accent-gold:#c8a96b;
  --accent-crimson:#a1122a;
  --bg-soft:#161012;
  --bg-gradient:radial-gradient(circle at 20% 0%,rgba(200,169,107,.16) 0%,rgba(11,11,11,.92) 70%);
  --ink:var(--text);
  --muted:#d0c7bb;
  --muted-strong:#b4a598;
  --accent:var(--accent-gold);
  --accent-soft:rgba(200,169,107,.16);
  --accent-strong:var(--accent-crimson);
  --panel:rgba(28,18,20,.82);
  --panel-solid:#1b1115;
  --shadow:0 24px 60px rgba(0,0,0,.5);
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:12px;
  --transition:all .2s ease;
}
*,
*::before,
*::after{
  box-sizing:border-box;
}
html,body{
  height:100%;
  scrollbar-width:none;
}
body{
  margin:0;
  background:linear-gradient(200deg,#15050a 0%,#0a0407 45%,#060308 100%);
  color:var(--text);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.55;
  min-height:100%;
}
body::-webkit-scrollbar{
  width:0;
  height:0;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(1100px 1100px at 18% -18%, rgba(161,18,42,.32), transparent 46%),
    radial-gradient(900px 920px at 82% 118%, rgba(161,18,42,.22), transparent 52%),
    radial-gradient(1600px 1600px at 50% 120%, rgba(56,20,24,.45), transparent 70%);
  background-repeat:no-repeat;
  background-size:cover;
  z-index:-3;
}
a{
  color:inherit;
  text-decoration:none;
}
img{
  max-width:100%;
  display:block;
}
header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(18,9,15,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(200,169,107,.22);
  box-shadow:0 12px 32px rgba(8,4,8,.55);
}
.nav-inner{
  max-width:1160px;
  margin:0 auto;
  padding:clamp(16px,3vw,24px) clamp(16px,5vw,48px);
  display:flex;
  align-items:center;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--accent);
}
.brand-logo{
  width:38px;
  height:38px;
  object-fit:contain;
  filter:drop-shadow(0 12px 28px rgba(200,169,107,.32));
  opacity:.85;
}
nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:var(--muted);
  font-size:14px;
}
nav a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  position:relative;
  transition:var(--transition);
}
nav a:hover,
nav a:focus{
  color:var(--ink);
}
nav a::after{
  content:"";
  position:absolute;
  inset:auto 0 -8px 0;
  height:2px;
  border-radius:999px;
  background:var(--accent);
  opacity:0;
  transform:scaleX(.4);
  transition:var(--transition);
}
nav a:hover::after,
nav a:focus::after{
  opacity:1;
  transform:scaleX(1);
}
.nav-toggle{
  display:none;
  margin-left:auto;
  border:1px solid rgba(200,169,107,.4);
  background:rgba(161,18,42,.06);
  color:var(--accent);
  border-radius:var(--radius-sm);
  padding:8px 12px;
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  transition:var(--transition);
}
.nav-toggle:hover{
  background:rgba(161,18,42,.14);
}
.audience-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:auto;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
  color:var(--muted);
}
.audience-toggle-label{
  opacity:.7;
}
.audience-toggle a{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(200,169,107,.28);
  color:var(--muted);
  background:rgba(26,20,24,.6);
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:var(--transition);
}
.audience-toggle a:hover{
  color:var(--ink);
  border-color:rgba(200,169,107,.5);
}
.audience-toggle a.is-active{
  color:#160b0f;
  background:var(--accent);
  border-color:transparent;
  box-shadow:0 10px 26px rgba(200,169,107,.28);
}
.cta{
  background:linear-gradient(115deg,rgba(200,169,107,.94) 0%,rgba(161,18,42,.4) 100%);
  color:#1a0e12;
  font-weight:600;
  padding:10px 18px;
  border-radius:var(--radius-sm);
  box-shadow:0 16px 32px rgba(200,169,107,.35);
  font-size:14px;
  transition:var(--transition);
  display:inline-flex;
  align-items:center;
  gap:8px;
  line-height:1;
}
.cta:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 42px rgba(200,169,107,.45);
}
.cta-secondary{
  border:1px solid rgba(200,169,107,.45);
  padding:10px 18px;
  border-radius:var(--radius-sm);
  color:var(--accent);
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:var(--transition);
}
.cta-secondary:hover{
  border-color:rgba(200,169,107,.75);
  color:#f6ead8;
}
main{
  max-width:1160px;
  margin:0 auto;
  padding:clamp(48px,8vw,96px) clamp(20px,6vw,64px) clamp(96px,10vw,160px);
  display:grid;
  gap:120px;
}
body.pitchdeck main{
  max-width:none;
  padding:0;
  margin:0;
  display:block;
  gap:0;
}
section{
  display:grid;
  gap:28px;
  position:relative;
}
body:not(.pitchdeck) main > section{
  display:grid;
  gap:28px;
  position:relative;
}
body:not(.pitchdeck) main > section::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-40px;
  width:220px;
  height:220px;
  background-image:url("decor/magic-suit.png");
  background-size:contain;
  background-repeat:no-repeat;
  opacity:.16;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.35));
  pointer-events:none;
  z-index:-1;
}
body:not(.pitchdeck) main > section:nth-of-type(2)::before{
  background-image:url("decor/poker-chips.png");
}
body:not(.pitchdeck) main > section:nth-of-type(3)::before{
  background-image:url("decor/spade.png");
}
body:not(.pitchdeck) main > section:nth-of-type(4)::before{
  background-image:url("decor/roulette.png");
}
body:not(.pitchdeck) main > section:nth-of-type(5)::before{
  background-image:url("decor/dice-cube.png");
}
.section-header{
  display:grid;
  gap:12px;
}
.section-header h2{
  margin:0;
  font-size:clamp(32px,4vw,44px);
  font-weight:600;
  letter-spacing:.2px;
}
.section-header p{
  margin:0;
  color:var(--muted);
  max-width:720px;
}
.hero{
  display:grid;
  gap:24px;
  padding-top:48px;
}
.hero h1{
  font-family:"Playfair Display","Times New Roman",serif;
  font-size:clamp(48px,6vw,72px);
  line-height:1.04;
  margin:0;
}
.hero p{
  color:var(--muted);
  font-size:clamp(16px,2vw,18px);
  max-width:720px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(200,169,107,.32);
  background:var(--accent-soft);
  color:var(--accent);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
  width:max-content;
}
.feature-grid{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.feature-card{
  background:linear-gradient(160deg,rgba(37,19,26,.9) 0%,rgba(24,12,17,.78) 100%);
  border:1px solid rgba(200,169,107,.2);
  border-radius:var(--radius-md);
  padding:22px;
  display:grid;
  gap:12px;
  box-shadow:var(--shadow);
}
.feature-card h3{
  margin:0;
  font-size:18px;
  color:var(--accent);
}
.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.stats-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}
.stat-card{
  background:linear-gradient(150deg,rgba(38,18,24,.88) 0%,rgba(22,11,16,.78) 100%);
  border:1px solid rgba(200,169,107,.24);
  border-radius:var(--radius-md);
  padding:20px;
  display:grid;
  gap:6px;
  text-align:left;
}
.stat-card span:first-child{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.6px;
}
.stat-card strong{
  font-size:26px;
  color:var(--accent);
  line-height:1.1;
}
.stat-card small{
  color:var(--muted);
}
.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.step{
  background:linear-gradient(155deg,rgba(37,19,26,.88) 0%,rgba(20,10,15,.78) 100%);
  border:1px solid rgba(200,169,107,.2);
  border-radius:var(--radius-md);
  padding:20px;
  display:grid;
  gap:10px;
  box-shadow:var(--shadow);
}
.step-number{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(161,18,42,.14);
  border:1px solid rgba(161,18,42,.45);
  color:var(--accent);
  display:grid;
  place-items:center;
  font-weight:700;
}
.step p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.list{
  display:grid;
  gap:12px;
  color:var(--muted);
  font-size:15px;
}
.list div,
.list p{
  margin:0;
}
.table{
  display:grid;
  gap:10px;
  background:linear-gradient(150deg,rgba(37,18,25,.86) 0%,rgba(20,9,15,.78) 100%);
  border:1px solid rgba(200,169,107,.24);
  border-radius:var(--radius-md);
  padding:20px;
}
.table-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  color:var(--muted);
  font-size:15px;
}
.table-row strong,
.table-row span:last-child{
  color:var(--ink);
}
.table-grid{
  display:grid;
  gap:12px;
}
.table-grid ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
  color:var(--muted);
}
.table-grid li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  background:rgba(161,18,42,.08);
  border:1px solid rgba(161,18,42,.16);
  border-radius:var(--radius-sm);
  padding:10px 14px;
  font-size:14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 16px;
  border-radius:999px;
  background:linear-gradient(120deg,rgba(200,169,107,.34) 0%,rgba(161,18,42,.18) 100%);
  border:1px solid rgba(200,169,107,.42);
  color:#f6e9d7;
  font-size:13px;
  font-weight:600;
  width:max-content;
}
.faq{
  display:grid;
  gap:16px;
}
.faq-item{
  background:linear-gradient(150deg,rgba(37,19,25,.88) 0%,rgba(22,11,16,.76) 100%);
  border:1px solid rgba(200,169,107,.2);
  border-radius:var(--radius-md);
  padding:20px;
  display:grid;
  gap:10px;
  box-shadow:var(--shadow);
}
.faq-item strong{
  font-size:16px;
  color:var(--accent);
}
.faq-item p{
  margin:0;
  color:var(--muted);
}
.timeline{
  display:grid;
  gap:16px;
}
.timeline-step{
  background:linear-gradient(150deg,rgba(38,19,25,.86) 0%,rgba(22,11,16,.78) 100%);
  border:1px solid rgba(200,169,107,.2);
  border-radius:var(--radius-md);
  padding:20px;
  display:grid;
  gap:6px;
}
.timeline-step strong{
  color:var(--accent);
  font-size:16px;
}
.timeline-step span{
  color:var(--muted-strong);
  font-size:14px;
}
.timeline-step p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
footer{
  padding:56px 24px 80px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* Pitch deck layout */
body.pitchdeck{
  background:var(--bg);
}
body.pitchdeck .deck-header{
  position:sticky;
  top:0;
  z-index:40;
  display:flex;
  align-items:center;
  background:rgba(18,9,15,.95);
  border-bottom:1px solid rgba(200,169,107,.22);
  box-shadow:0 14px 34px rgba(8,4,8,.55);
}
body.pitchdeck .deck-header .deck-nav{
  width:100%;
  margin:0;
  padding:16px clamp(28px,6vw,72px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:clamp(24px,6vw,48px);
}
.deck-progress-wrap{
  flex:1;
  display:grid;
  gap:8px;
}
.deck-progress-label{
  font-size:11px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:var(--muted);
  background:none;
  border:0;
  padding:0;
  text-align:left;
  cursor:pointer;
}
.deck-progress-label:hover,
.deck-progress-label:focus{
  color:var(--ink);
}
.deck-progress{
  height:4px;
  background:rgba(200,169,107,.2);
  border-radius:999px;
  overflow:hidden;
}
.deck-progress-bar{
  height:100%;
  background:linear-gradient(90deg,var(--accent-gold) 0%,var(--accent-crimson) 100%);
  width:100%;
  transition:width .3s ease;
}
.deck-arrows{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--accent);
  font-size:18px;
  letter-spacing:1px;
}
.deck-arrows button{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(200,169,107,.32);
  background:rgba(26,18,24,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:inherit;
  cursor:pointer;
  transition:var(--transition);
}
.deck-arrows button:hover{
  border-color:rgba(200,169,107,.5);
  background:rgba(200,169,107,.18);
}
.deck-arrows button svg{
  width:14px;
  height:14px;
  stroke:var(--accent);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:var(--transition);
}
.deck-arrows button:hover svg{
  stroke:var(--ink);
}
.deck-stage{
  position:relative;
  width:100%;
  min-height:calc(100vh - 96px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:clamp(40px,6vw,60px);
  padding:clamp(56px,6vw,80px) clamp(16px,4vw,32px) clamp(68px,8vw,112px);
}
.deck-stage::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-4;
  background:
    radial-gradient(1200px 1200px at 18% -12%, rgba(161,18,42,.28), transparent 50%),
    radial-gradient(1100px 1100px at 82% 120%, rgba(161,18,42,.22), transparent 55%);
  pointer-events:none;
}
.deck-stage::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-5;
  background:radial-gradient(1600px 1600px at 50% 120%, rgba(18,6,10,.6), transparent 68%);
  pointer-events:none;
}
.deck-stage .symbol-grid{
  position:fixed;
  inset:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(3,1fr);
  place-items:center;
  pointer-events:none;
  z-index:-1;
  gap:clamp(28px,7vw,72px);
}
.deck-stage .symbol-grid img{
  width:min(18vw,160px);
  filter:brightness(0) invert(1) drop-shadow(0 0 24px rgba(200,169,107,.16));
  opacity:.08;
}
.deck-stage .symbol-grid img.is-secondary{
  opacity:.05;
}
.deck{
  position:relative;
  z-index:1;
  width:min(1500px,100%);
  min-height:540px;
  background:
    radial-gradient(circle at 12% -20%,rgba(161,18,42,.25) 0%,transparent 45%),
    radial-gradient(circle at 88% 120%,rgba(161,18,42,.18) 0%,transparent 52%),
    linear-gradient(155deg,rgba(46,18,20,.92) 0%,rgba(18,8,12,.96) 38%,rgba(9,5,9,.98) 100%);
  border-radius:var(--radius-lg);
  border:1px solid rgba(200,169,107,.18);
  box-shadow:var(--shadow);
  padding:clamp(80px,6vw,100px) clamp(32px,4.5vw,60px) clamp(40px,4.5vw,52px);
  display:flex;
  flex-direction:column;
  gap:clamp(18px,2.6vw,26px);
  position:relative;
  overflow:hidden;
  --decor-a:url("decor/magic.png");
  --decor-b:url("decor/poker-chips.png");
}
.deck::before,
.deck::after{
  content:"";
  position:absolute;
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.08;
  pointer-events:none;
  filter:brightness(0) invert(1);
}
.deck::before{
  top:-60px;
  right:-10px;
  width:240px;
  height:240px;
  background-image:var(--decor-a);
}
.deck::after{
  bottom:-70px;
  left:-60px;
  width:220px;
  height:220px;
  background-image:var(--decor-b);
}
.deck--spade{
  --decor-a:url("decor/spade.png");
  --decor-b:url("decor/dice-cube.png");
}
.deck--dice{
  --decor-a:url("decor/dice-cube.png");
  --decor-b:url("decor/magic.png");
}
.deck--roulette{
  --decor-a:url("decor/roulette.png");
  --decor-b:url("decor/magic-suit.png");
}
.deck--cards{
  --decor-a:url("decor/card-suit1.png");
  --decor-b:url("decor/poker-chips.png");
}
.deck--chips{
  --decor-a:url("decor/poker-chips.png");
  --decor-b:url("decor/magic.png");
}
.deck--cover{
  --decor-a:url("decor/card-suit1.png");
  --decor-b:url("decor/roulette.png");
}
.deck--heart{
  --decor-a:url("decor/magic-suit.png");
  --decor-b:url("decor/spade.png");
}
.deck-tag{
  position:absolute;
  top:24px;
  left:18px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:6px 18px 6px 50px;
  border-radius:999px;
  background:rgba(200,169,107,.12);
  border:1px solid rgba(200,169,107,.3);
  color:var(--accent);
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.7px;
  width:max-content;
  z-index:2;
}
.deck-tag__index{
  font-size:11px;
  font-weight:700;
  letter-spacing:1.1px;
  color:#f8e9d6;
  text-shadow:0 0 12px rgba(13,6,9,.45);
}
.deck-tag--cover{
  background:rgba(200,169,107,.24);
  border-color:rgba(200,169,107,.42);
  color:var(--accent);
}
.deck-tag::before{
  content:"";
  position:absolute;
  top:50%;
  left:18px;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  background-image:var(--decor-a);
  background-repeat:no-repeat;
  background-size:contain;
  opacity:.55;
  filter:brightness(0) invert(1);
}
.deck h1,
.deck h2,
.deck h3{
  color:var(--accent-gold);
}
.deck h2{
  margin:0;
  font-size:clamp(34px,4.6vw,46px);
  letter-spacing:.2px;
}
.deck p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.chart-note{
  margin:8px 0 0;
  font-size:13px;
  color:rgba(242,240,234,.68);
  text-align:center;
}
.deck-card--full{
  margin-top:18px;
}
.deck-list--inline{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  padding-left:0;
}
.deck-list--inline li{
  list-style:none;
}
.chart-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
}
.problem-text-col{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
}
.deck-grid{
  display:grid;
  gap:18px;
}
.deck-column{
  display:grid;
  gap:18px;
}
.deck-grid--market{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  align-items:start;
}
.deck-cols-2{
  grid-template-columns:1.05fr .95fr;
  align-items:start;
}
.deck-cols-2--balanced{
  grid-template-columns:55% 45%;
  gap:24px;
  align-items:center;
}
.deck-cards{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.deck-card{
  background:linear-gradient(160deg,rgba(37,19,26,.96) 0%,rgba(22,11,16,.9) 100%);
  border:1px solid rgba(200,169,107,.24);
  border-radius:var(--radius-md);
  padding:20px;
  display:grid;
  gap:10px;
}
.deck-card--teza{
  border-color:rgba(200,169,107,.34);
  background:linear-gradient(160deg,rgba(46,27,32,.92) 0%,rgba(28,14,20,.86) 100%);
}
.deck-card--highlight{
  border-style:dashed;
  border-color:rgba(200,169,107,.38);
  background:linear-gradient(160deg,rgba(46,27,32,.9) 0%,rgba(30,16,22,.82) 100%);
}
.deck-card--compact{
  gap:8px;
  padding:18px;
}
.ops-phase-grid{
  display:grid;
  gap:16px;
  margin-top:12px;
}
@media(min-width:900px){
  .ops-phase-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
.ops-phase-card{
  gap:12px;
}
.ops-phase-list li{
  margin-bottom:4px;
}
.ops-phase-list strong{
  color:var(--ink);
}
.ops-standard-card{
  gap:18px;
}
.ops-standard-grid{
  display:grid;
  gap:18px;
}
@media(min-width:900px){
  .ops-standard-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
.ops-standard-card h4{
  margin:0;
  font-size:16px;
  color:var(--accent-gold);
  font-weight:600;
}
.ops-standard-card ul{
  margin-top:6px;
}
.ops-standard-card .deck-list li{
  margin-bottom:6px;
}
.response-table{
  width:100%;
  border-collapse:collapse;
  margin:24px 0;
  font-size:15px;
  border:1px solid rgba(200,169,107,.24);
  border-radius:18px;
  overflow:hidden;
}
.response-table thead th{
  text-transform:uppercase;
  letter-spacing:.6px;
  font-size:12px;
  color:rgba(242,240,234,.75);
  padding:10px 14px;
  text-align:left;
  border-bottom:1px solid rgba(200,169,107,.24);
}
.response-table tbody td{
  padding:12px 14px;
  vertical-align:top;
  border-bottom:1px solid rgba(200,169,107,.12);
  color:var(--muted);
}
.response-table tbody tr:last-child td{
  border-bottom:0;
}
.response-table .response-arrow{
  width:32px;
  text-align:center;
  color:rgba(200,169,107,.6);
}
.mini-table{
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
  font-size:14px;
}
.mini-table thead th{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.5px;
  color:rgba(242,240,234,.7);
  padding:6px 10px;
  border-bottom:1px solid rgba(200,169,107,.24);
  text-align:left;
}
.mini-table tbody td{
  padding:8px 10px;
  border-bottom:1px solid rgba(200,169,107,.16);
  color:var(--muted);
}
.mini-table tbody tr:last-child td{
  border-bottom:0;
}
.deck-card h3{
  margin:0;
  color:var(--accent);
  font-size:18px;
}
.deck-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.deck-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0 0 0 18px;
  color:var(--muted);
  font-size:15px;
}
.deck-list li{
  margin:0;
}
.deck-cover{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.cover-copy{
  display:grid;
  gap:20px;
  max-width:560px;
}
.cover-headline{
  font-family:"Playfair Display","Times New Roman",serif;
  font-size:clamp(52px,6vw,74px);
  line-height:1.04;
  margin:0;
}
.cover-subheadline{
  font-size:clamp(18px,2.4vw,22px);
  color:var(--muted);
  margin:0;
}
.cover-one-liner{
  margin:0;
  font-size:clamp(18px,2.6vw,24px);
  color:var(--ink);
}
.cover-meta{
  display:grid;
  gap:6px;
  color:#f4e9d8;
  font-size:14px;
}
.cover-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}
.cover-visual{
  position:relative;
  flex:1 1 480px;
  min-width:320px;
  max-width:640px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(6,2,6,.55);
  border:1px solid rgba(200,169,107,.32);
}
.cover-visual__placeholder{
  display:grid;
  place-items:center;
  gap:6px;
  min-height:360px;
  padding:40px 32px;
  text-align:center;
  background:repeating-linear-gradient(135deg,rgba(200,169,107,.08) 0 12px,rgba(10,5,8,.88) 12px 24px);
  color:rgba(242,240,234,.75);
  font-size:14px;
  letter-spacing:.02em;
}
.cover-visual__placeholder strong{
  font-size:16px;
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.cover-visual__placeholder code{
  font-family:"Fira Code","Source Code Pro",monospace;
  font-size:13px;
  background:rgba(10,5,8,.68);
  padding:2px 6px;
  border-radius:6px;
  border:1px solid rgba(200,169,107,.28);
  color:var(--accent);
}
.cover-visual__image{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.94) brightness(.94);
}
.cover-visual__logo{
  position:absolute;
  inset:auto 24px 24px auto;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:16px;
  background:rgba(10,5,8,.78);
  border:1px solid rgba(200,169,107,.32);
  box-shadow:0 18px 44px rgba(4,2,4,.6);
  font-weight:600;
  font-size:14px;
}
.cover-visual__logo img{
  width:46px;
  height:46px;
  filter:drop-shadow(0 10px 26px rgba(200,169,107,.32));
}
.cover-visual__logo span{
  color:var(--muted);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.summary-visual{
  position:relative;
  margin:8px 0 0;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(200,169,107,.28);
  box-shadow:0 24px 60px rgba(4,2,6,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  max-height:400px;
}
.summary-visual__placeholder{
  display:grid;
  place-items:center;
  gap:6px;
  padding:32px;
  min-height:220px;
  text-align:center;
  background:repeating-linear-gradient(135deg,rgba(161,18,42,.06) 0 12px,rgba(14,6,10,.88) 12px 24px);
  color:rgba(242,240,234,.78);
  font-size:14px;
}
.summary-visual__placeholder strong{
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--ink);
}
.summary-visual__placeholder code{
  font-family:"Fira Code","Source Code Pro",monospace;
  font-size:13px;
  background:rgba(10,5,8,.68);
  padding:2px 6px;
  border-radius:6px;
  border:1px solid rgba(200,169,107,.28);
  color:var(--accent);
}
.summary-visual img{
  width:100%;
  display:block;
  object-fit:cover;
  filter:saturate(.96) brightness(.95);
}
.cover-logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin:18px 0 6px;
}
.cover-logo img{
  width:52px;
  height:52px;
  filter:drop-shadow(0 10px 26px rgba(200,169,107,.32));
}
.cover-logo span{
  font-size:15px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(242,240,234,.72);
}
.deck-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  font-size:13px;
  color:var(--muted);
}
.deck-note{
  margin-top:10px;
  font-size:13px;
  color:rgba(242,240,234,.72);
}
.deck-note--sources{
  margin-top:18px;
  font-size:12px;
  color:rgba(242,240,234,.62);
}
.deck-foot .pill{
  background:rgba(161,18,42,.16);
  border-color:rgba(161,18,42,.45);
  color:#f4d0d9;
}
.team-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.team-card{
  background:linear-gradient(160deg,rgba(37,19,26,.96) 0%,rgba(22,11,16,.88) 100%);
  border:1px solid rgba(200,169,107,.24);
  border-radius:var(--radius-md);
  padding:20px;
  display:grid;
  gap:8px;
}
.team-card strong{
  color:var(--accent);
}
.team-card span{
  color:var(--muted);
  font-size:14px;
}
.team-profile-grid{
  display:grid;
  gap:20px;
}
@media(min-width:900px){
  .team-profile-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
.team-profile{
  background:linear-gradient(160deg,rgba(37,19,26,.96) 0%,rgba(22,11,16,.88) 100%);
  border:1px solid rgba(200,169,107,.26);
  border-radius:var(--radius-lg);
  padding:32px;
  display:grid;
  gap:16px;
  min-height:220px;
  box-shadow:0 18px 42px rgba(5,3,6,.32);
}
.team-profile__content{
  display:grid;
  gap:10px;
}
.team-profile__name{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(242,240,234,.68);
  font-weight:600;
}
.team-profile__name::first-letter{
  font-size:30px;
  font-weight:700;
  color:var(--accent);
  letter-spacing:.04em;
  padding-right:6px;
}
.team-profile__role{
  margin:0;
  font-size:20px;
  line-height:1.3;
  color:var(--accent);
}
.team-profile__content p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.team-profile__icons{
  display:flex;
  gap:10px;
  margin-top:4px;
}
.team-profile__icon{
  width:40px;
  height:40px;
  border-radius:999px;
  background:rgba(233,214,174,.12);
  border:1px solid rgba(233,214,174,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-size:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.team-profile__icon i{
  font-size:20px;
}
@media(max-width:640px){
  .team-profile{
    padding:28px;
    min-height:0;
  }
}
.deck-mini-grid{
  display:grid;
  gap:12px;
}
.deck-mini-grid--stats{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.deck-figure{
  margin:24px 0;
  display:flex;
  justify-content:center;
}
.deck-figure img{
  max-width:100%;
  border-radius:var(--radius-md);
  border:1px solid rgba(200,169,107,.18);
  box-shadow:var(--shadow);
}
.deck-mini-grid > div{
  background:linear-gradient(160deg,rgba(37,19,26,.94) 0%,rgba(22,11,16,.85) 100%);
  border:1px solid rgba(200,169,107,.24);
  border-radius:var(--radius-sm);
  padding:12px 16px;
  display:grid;
  gap:6px;
  color:var(--muted);
  font-size:14px;
}
.chart{
  width:100%;
  height:320px;
  max-width:900px;
  margin:12px auto;
}
.chart--sm{
  height:280px;
  max-width:720px;
}
.chart--compact{
  height:240px;
  max-width:100%;
  margin-top:8px;
}
.chart--tall{
  height:320px;
}
.chart--taller{
  height:360px;
}
.deck-mini-grid strong{
  color:var(--ink);
}
.cols--revenue{
  gap:18px;
}
@media(min-width:900px){
  .cols--revenue{
    grid-template-columns:1.05fr .95fr;
    align-items:stretch;
  }
}
.revenue-stacks{
  display:grid;
  gap:16px;
}
@media(min-width:900px){
  .revenue-stacks{
    height:100%;
    grid-template-rows:repeat(2,1fr);
  }
}
.revenue-stacks .deck-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.revenue-chart-card{
  height:100%;
  display:flex;
  flex-direction:column;
}
.revenue-chart-card .chart{
  flex:1;
}
.deck-note--muted{
  color:rgba(242,240,234,.62);
}
.cols--forecast{
  gap:18px;
}
@media(min-width:900px){
  .cols--forecast{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }
}
.forecast-left{
  display:grid;
  gap:16px;
}
@media(min-width:900px){
  .forecast-left{
    height:100%;
    grid-template-rows:repeat(2,1fr);
  }
}
.forecast-left .deck-card{
  height:100%;
  display:flex;
  flex-direction:column;
}
.forecast-chart-card{
  height:100%;
  display:flex;
  flex-direction:column;
}
.forecast-chart-card .chart{
  flex:1;
}
.bg-pattern{
  background-size:56px 56px;
  opacity:.08;
}
.slide{
  max-width:900px;
  margin:0 auto;
}
.slide h1,
.slide h2,
.slide h3,
.accent{
  color:var(--accent-gold);
}
.cols{
  display:grid;
  gap:16px;
}
@media(min-width:900px){
  .cols{
    grid-template-columns:1fr 1fr;
  }
}
.pillars-grid{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.pillars-grid--four{
  grid-template-columns:repeat(4,minmax(220px,1fr));
}
@media(max-width:1080px){
  .pillars-grid--four{
    grid-template-columns:repeat(2,minmax(220px,1fr));
  }
}
@media(max-width:640px){
  .pillars-grid--four{
    grid-template-columns:1fr;
  }
}
.icon-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  margin:16px 0;
}
.icon-grid figure{
  background:linear-gradient(160deg,rgba(37,19,26,.9) 0%,rgba(18,10,14,.82) 100%);
  border:1px solid rgba(200,169,107,.22);
  border-radius:var(--radius-sm);
  padding:18px 16px;
  display:grid;
  gap:10px;
  text-align:center;
  align-items:center;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
}
.icon-grid img{
  width:48px;
  height:48px;
  margin:0 auto;
}
.icon-grid figcaption{
  color:var(--muted);
  font-size:14px;
}
.icon-grid figcaption strong{
  display:block;
  color:var(--ink);
  font-size:15px;
  margin-bottom:6px;
}
.pillar-card{
  background:linear-gradient(160deg,rgba(37,19,26,.94) 0%,rgba(22,11,16,.85) 100%);
  border:1px solid rgba(200,169,107,.24);
  border-radius:var(--radius-sm);
  padding:20px 18px;
  display:grid;
  gap:12px;
  text-align:left;
}
.pillar-card .pillar-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(200,169,107,.12);
  border:1px solid rgba(200,169,107,.24);
  box-shadow:0 10px 22px rgba(0,0,0,.35);
  color:var(--gold);
}
.pillar-card .pillar-icon .icon{
  font-size:24px;
  margin:0;
  color:inherit;
  line-height:1;
}
.pillar-icon{
  width:48px;
  height:48px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  color:#f4d0d9;
  background:linear-gradient(160deg,rgba(200,169,107,.35) 0%,rgba(161,18,42,.65) 100%);
  box-shadow:0 6px 18px rgba(8,4,8,.45);
}
.journey-flow{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  counter-reset:journey;
}
.journey-horizon{
  display:grid;
  grid-template-columns:repeat(6,minmax(140px,1fr));
  gap:14px;
  margin-top:16px;
  position:relative;
  padding-bottom:32px;
  z-index:2;
}
.journey-horizon::after{
  content:none;
}
@media(max-width:1200px){
  .journey-horizon{
    grid-template-columns:repeat(3,minmax(160px,1fr));
  }
  .journey-card::before{
    content:none;
  }
}
@media(max-width:640px){
  .journey-horizon{
    grid-template-columns:repeat(2,minmax(150px,1fr));
  }
  .journey-card::before{
    content:none;
  }
}
.journey-card{
  background:linear-gradient(160deg,rgba(37,19,26,.94) 0%,rgba(22,11,16,.85) 100%);
  border:1px solid rgba(200,169,107,.22);
  border-radius:var(--radius-sm);
  padding:18px 16px;
  display:grid;
  gap:8px;
  align-content:flex-start;
  color:var(--muted);
  font-size:14px;
  position:relative;
  z-index:3;
}
.journey-card::before{
  content:"→";
  position:absolute;
  right:-18px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:rgba(200,169,107,.58);
}
.journey-card strong{
  color:var(--ink);
  font-size:15px;
}
.journey-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(200,169,107,.12);
  border:1px solid rgba(200,169,107,.24);
  box-shadow:0 10px 20px rgba(0,0,0,.35);
}
.journey-icon .icon{
  font-size:22px;
  margin:0;
  color:var(--gold);
}
.journey-curve{
  margin-top:12px;
  position:relative;
  background:linear-gradient(160deg,rgba(37,19,26,.85) 0%,rgba(20,10,14,.78) 100%);
  border:1px solid rgba(200,169,107,.2);
  border-radius:var(--radius-sm);
  padding:18px 20px 40px;
}
.journey-curve svg{
  width:100%;
  height:120px;
}
.journey-curve::after{
  content:none;
}
.journey-curve__label{
  font-size:13px;
  color:rgba(242,240,234,.72);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.journey-notes{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  font-size:13px;
  color:rgba(242,240,234,.68);
}
.journey-notes--full{
  margin-top:16px;
}
.journey-notes strong{
  color:var(--accent);
}

@media(max-width:900px){
  nav{
    display:none;
  }
  header.nav-open nav{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    gap:14px;
    padding-top:14px;
    border-top:1px solid rgba(200,169,107,.18);
  }
  .nav-toggle{
    display:inline-flex;
  }
  .audience-toggle{
    order:3;
    width:100%;
    justify-content:flex-start;
    padding-top:12px;
    border-top:1px solid rgba(200,169,107,.18);
  }
  .nav-inner{
    flex-wrap:wrap;
  }
  main{
    gap:80px;
  }
  .deck-cover{
    justify-content:center;
  }
  body.pitchdeck .deck-header .deck-nav{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
  .deck-progress-wrap{
    max-width:none;
    width:100%;
  }
  .deck-arrows{
    align-self:flex-end;
  }
}

@media(max-width:600px){
  .hero h1{
    font-size:clamp(38px,8vw,54px);
  }
  .section-header h2{
    font-size:clamp(28px,7vw,38px);
  }
  .deck{
    min-height:540px;
  }
  .deck-arrows button{
    width:32px;
    height:32px;
  }
  .deck-arrows button svg{
    width:12px;
    height:12px;
  }
  .deck-stage{
    padding:clamp(40px,8vw,64px) clamp(12px,6vw,24px) clamp(60px,12vw,90px);
    gap:clamp(36px,10vw,56px);
  }
  .deck-tag{
    top:14px;
    left:14px;
    padding:6px 14px 6px 42px;
  }
  .deck-tag::before{
    left:14px;
  }
}
.journey-card::before{
  content:"";
  position:absolute;
  top:50%;
  right:-26px;
  transform:translateY(-50%);
  width:44px;
  height:10px;
  background:rgba(200,169,107,.22);
  clip-path:polygon(0 42%,76% 42%,76% 0,100% 50%,76% 100%,76% 58%,0 58%);
  pointer-events:none;
}
.journey-card:last-child::before{
  display:none;
}
.journey-card::after{
  content:none;
}
@media(max-width:1200px){
  .journey-card::before{
    display:none;
  }
}
.journey-card:last-child::before{
  content:none;
}
