
  
  
  
  
  

  /* ── HERO ── */
  #deck-hero {
    min-height: 100vh;
    display: flex; align-items: flex-start;
    padding: 140px 60px 80px;
    position: relative;
    overflow: hidden;
    gap: 60px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-money {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
    filter: grayscale(1) sepia(0.3);
    animation: fadeIn 2s ease 0.3s forwards;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.04; }
  }
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
  }
  .hero-content { position: relative; flex: 1; max-width: 560px; }
  .hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 120px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  h1 em { color: var(--gold); font-style: normal; }
  .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(240,237,232,0.85);
    max-width: 500px;
    margin-bottom: 56px;
    opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  }
  .hero-stat-row {
    display: flex; gap: 64px;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
  }
  .hero-stat { text-align: center; }
  .hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--gold); line-height: 1; }
  .hero-stat-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 6px; line-height: 1.5; }

  /* Buttons */
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--bg);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-block;
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }
  .btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    padding: 12px 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-phone:hover { background: var(--gold2); transform: translateY(-2px); }
  .phone-icon { height: 24px; width: auto; filter: invert(1); }

  /* Hero CTA */
  .hero-cta {
    display: flex; gap: 20px; align-items: center;
    margin-top: 40px;
    opacity: 0; animation: fadeUp 0.8s 1s forwards;
  }

  /* Hero center (cameron) */
  .hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
  }
  .hero-cameron-img {
    width: 344px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 16px;
  }
  .hero-cameron-info { text-align: center; }
  .hero-cameron-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 4px;
  }
  .hero-cameron-name span { color: var(--gold); }
  .hero-cameron-role {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
  }
  .hero-cameron-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-cameron-bio a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .hero-cameron-bio a:hover { border-color: var(--gold); }

  /* Hero aside (logo + quote, far right — matches index format) */
  .hero-aside {
    position: absolute;
    right: 60px;
    top: 50%;
    max-width: 420px;
    text-align: right;
  }
  .hero-aside-logo { display: block; }
  .hero-quote { text-align: right; }
  .hero-quote-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .hero-quote-attr {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -8px;
  }

  /* ── TICKER ── */
  .ticker-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; background: var(--bg); }
  .ticker { display: flex; animation: ticker 28s linear infinite; white-space: nowrap; }
  .ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 4px; color: var(--muted); padding: 0 40px; display: flex; align-items: center; gap: 40px; flex-shrink: 0; }
  .ticker-item::after { content: "✦"; color: var(--gold); font-size: 10px; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTIONS ── */
  section { padding: 96px 60px; }
  .section-tag { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .section-tag::after  { content: ''; width: 32px; height: 1px; background: var(--gold); }
  h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,5.5vw,68px); line-height: 1; letter-spacing: 2px; margin-bottom: 20px; }
  h2 em { color: var(--gold); font-style: normal; }

  /* ── INTRO ── */
  .intro-section { background: var(--bg2); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .intro-text p { color: rgba(240,237,232,0.8); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
  .stat-card { background: var(--bg3); padding: 36px 28px; transition: background 0.3s; }
  .stat-card:hover { background: #1c1c1c; }
  .stat-card .num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: var(--gold); line-height: 1; }
  .stat-card .label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 8px; line-height: 1.5; }

  /* ── PILLARS ── */
  .pillar { background: var(--bg); }
  .pillar.alt { background: var(--bg2); }
  .pillar-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 56px; }
  .pillar-header-top { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 10px; }
  /* Light gray pillar numbers */
  .pillar-number { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: #5a5a5a; line-height: 1; letter-spacing: 2px; flex-shrink: 0; }
  .pillar-icon img { height: 64px; width: 64px; object-fit: contain; opacity: 0.9; flex-shrink: 0; }
  .pillar-tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 12px; }
  .pillar-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .pillar-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .pillar-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px,4.5vw,54px); letter-spacing: 2px; color: var(--white); line-height: 1.05; }
  /* Free for a limited time line */
  .pillar-free-note { font-family: 'DM Sans', sans-serif; font-size: 20px; font-style: italic; color: var(--gold); opacity: 0.85; margin-top: 14px; }
  .mobile-break { display: none; }

  /* ── ITEMS GRID ── */
  .items-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
  .item-card { background: var(--bg3); padding: 36px 32px; position: relative; overflow: hidden; transition: background 0.3s; }
  .pillar.alt .item-card { background: var(--bg); }
  .item-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .item-card:hover { background: #1a1a1a; }
  .item-card:hover::before { transform: scaleX(1); }
  .item-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1px; color: var(--gold); margin-bottom: 10px; line-height: 1.1; }
  .item-card p { color: rgba(240,237,232,0.72); font-size: 14px; line-height: 1.75; }

  /* ── CALLOUT ── */
  .callout { background: var(--gold); padding: 72px 60px; font-weight: 600; position: relative; overflow: hidden; }
  .callout h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px,3.8vw,48px); color: var(--bg); letter-spacing: 2px; line-height: 1.05; margin-bottom: 14px; }
  .callout p { font-size: 16px; line-height: 1.7; color: rgba(10,10,10,0.9); max-width: 900px; font-weight: 600; }
  .callout-ribbon {
    position: absolute;
    bottom: 20px;
    right: -40px;
    background: var(--bg);
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 60px;
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }

  /* ── TOOLS ── */
  .tools-section { background: var(--bg2); }
  .tools-header { margin-bottom: 56px; text-align: center; }
  .tools-header .section-tag { justify-content: center; }
  .tools-header p { color: rgba(240,237,232,0.65); font-size: 16px; line-height: 1.7; margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .tools-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); }
  .tool-pill.tool-pill-mobile-only { display: none; }
  .tool-pill { background: var(--bg3); padding: 26px 20px; transition: background 0.3s; position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .tool-pill::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
  .tool-pill:hover { background: #1a1a1a; }
  .tool-pill:hover::before { transform: scaleX(1); }
  .tool-name { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 1px; color: var(--white); margin-bottom: 5px; line-height: 1.1; text-align: center; font-weight: 400; }
  .tool-role { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-align: center; font-weight: 700; }

  /* ── CLOSING ── */
  .closing { min-height: 55vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 120px 40px; position: relative; overflow: hidden; background: var(--bg); }
  .closing-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
  .closing-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 80px 80px; opacity: 0.2; pointer-events: none; }
  .closing h2 { position: relative; font-size: clamp(40px,6vw,76px); }
  .closing p { font-size: 17px; line-height: 1.85; color: rgba(240,237,232,0.65); max-width: 580px; margin: 22px auto 52px; position: relative; }
  .closing-logo { position: relative; margin-top: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; color: var(--white); }
  .closing-logo span { color: var(--gold); }
.closing-line { width: 56px; height: 2px; background: var(--gold); margin: 36px auto 0; position: relative; }

  /* ── DIVIDER ── */
  .line-divider { width: 100%; height: 1px; background: var(--border); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes slideFromRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; animation: revealFallback 0.65s ease 0.25s forwards; }
  @keyframes revealFallback { to { opacity: 1; transform: none; } }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }
  .reveal-delay-4 { transition-delay: 0.32s; }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    section { padding: 56px 20px; }
    #deck-hero { padding: 125px 20px 40px; min-height: auto; flex-direction: column; align-items: center; gap: 40px; }
    #deck-hero h1 { text-align: center; }
    .hero-tag { justify-content: center; }
    .hero-sub { text-align: center; }
    .hero-stat-row { justify-content: center; flex-wrap: wrap; gap: 24px; }
    .hero-aside { display: none; }
    .hero-aside-logo { display: none; }
    .hero-cameron-img { width: 225px; margin: 0 auto; }
    .hero-cameron-bio a { font-weight: 400; }
    h1 { font-size: clamp(44px,13vw,68px); }
    .hero-sub { font-size: 15px; margin-bottom: 36px; }
    .hero-stat-row { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .hero-stat-num { font-size: 40px; }
    .hero-stat-label { font-size: 8px; }
    /* Intro — stack, center everything */
    .intro-section { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .intro-text h2 { text-align: center; }
    .intro-text .section-tag { justify-content: center; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .stat-card .num { font-size: 48px; }
    /* Pillar */
    .pillar-header { margin-bottom: 36px; }
    .pillar-number { font-size: 52px; }
    .pillar-icon img { height: 44px; width: 44px; }
    .pillar-title { font-size: clamp(24px,7vw,38px); }
    .pillar-free-note { font-size: 13px; }
    .mobile-break { display: inline; }
    /* Cards — single col, centered text */
    .items-grid { grid-template-columns: 1fr; }
    .item-card { padding: 28px 20px; text-align: center; }
    /* Callout */
    .callout { padding: 48px 20px 60px; text-align: center; }
    .callout h2 { font-size: clamp(24px,7vw,36px); }
    .callout-ribbon { right: -20px; bottom: 12px; font-size: 9px; padding: 8px 40px; }
    .hero-cta { display: none; }
    .btn-primary, .btn-ghost { text-align: center; }
    /* Tools */
    .tools-grid { grid-template-columns: repeat(2,1fr); }
    .tool-pill.tool-pill-mobile-only { display: flex; }
    .tools-header h2 { font-size: 36px; }
    /* Force all h2 and section-tag centered */
    h2 { text-align: center; }
    .section-tag { justify-content: center; }
    .closing { padding: 72px 20px; }
  }
  @media (max-width: 480px) {
    .stat-grid { grid-template-columns: 1fr; }
    .hero-stat-row { gap: 16px; }
    .tools-grid { grid-template-columns: 1fr 1fr; }
  }
