:root {
  --red: #C0392B;
  --dark-red: #922B21;
  --black: #080808;
  --near-black: #111111;
  --white: #FFFFFF;
  --off-white: #F0EFED;
  --gray: #888888;
  --light-gray: #1A1A1A;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 20px 48px; background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent); transition: background 0.3s; }
nav.scrolled { background: rgba(8,8,8,0.97); border-bottom: 1px solid rgba(192,57,43,0.3); }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 3px; color: var(--white); text-decoration: none; }
.nav-logo .logo-pete { color: var(--white); }
.nav-logo .logo-titan { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--off-white); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 10px 24px !important; }
.nav-cta:hover { background: var(--dark-red) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 25px; height: 2px; background: var(--white); transition: 0.3s; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../assets/images/hero.jpeg'); background-size: cover; background-position: center top; animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 45%, rgba(8,8,8,0.2) 100%); }
.hero-red-line { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.hero-content { position: relative; z-index: 2; padding: 0 48px; max-width: 780px; animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--red); }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 9vw, 120px); line-height: 0.92; letter-spacing: 2px; color: var(--white); margin-bottom: 24px; }
.hero-title .accent { color: var(--red); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 520px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 44px; }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--red); line-height: 1; }
.hero-stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.hero-scroll span { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent); }

/* BUTTONS */
.btn-primary { background: var(--red); color: var(--white); padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.2s; border: 2px solid var(--red); }
.btn-primary:hover { background: transparent; color: var(--red); }
.btn-secondary { background: transparent; color: var(--white); padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--white); }

/* PROOF BAR */
.proof-bar { background: var(--red); padding: 16px 48px; display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.proof-item { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 12px; }
.proof-item::before { content: '●'; font-size: 6px; opacity: 0.6; }
.proof-item:first-child::before { display: none; }

/* SECTIONS */
section { padding: 120px 48px; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::after { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 24px; }

/* STORY */
.story { background: var(--near-black); display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.story-image { position: relative; overflow: hidden; min-height: 700px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(20%); transition: filter 0.5s; }
.story-image:hover img { filter: grayscale(0%); }
.story-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--near-black)); }
.story-content { padding: 100px 72px 100px 64px; display: flex; flex-direction: column; justify-content: center; }
.story-body { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.story-body strong { color: var(--white); font-weight: 700; }
.story-quote { border-left: 3px solid var(--red); padding: 20px 24px; margin: 32px 0; background: rgba(192,57,43,0.08); }
.story-quote p { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; font-style: italic; color: var(--white); line-height: 1.4; }

/* STATS */
.stats-section { background: var(--black); text-align: center; padding: 100px 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; background: var(--light-gray); }
.stat-card { background: var(--near-black); padding: 52px 32px; text-align: center; transition: background 0.2s; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s; }
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:hover { background: var(--light-gray); }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat-desc { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

/* VIDEO */
.video-section { background: var(--near-black); padding: 120px 48px; text-align: center; }
.video-placeholder { max-width: 800px; margin: 60px auto 0; background: var(--black); border: 1px solid rgba(192,57,43,0.3); aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; transition: border-color 0.2s; position: relative; overflow: hidden; }
.video-placeholder::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/images/tulum.jpeg'); background-size: cover; background-position: center; opacity: 0.25; }
.video-placeholder:hover { border-color: var(--red); }
.play-btn { width: 80px; height: 80px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: transform 0.2s; }
.video-placeholder:hover .play-btn { transform: scale(1.1); }
.play-btn::after { content: ''; width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid white; margin-left: 4px; }
.video-label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }

/* PDF */
.pdf-section { background: var(--near-black); display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.pdf-image { position: relative; overflow: hidden; min-height: 600px; }
.pdf-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%) brightness(0.7); }
.pdf-image-overlay { position: absolute; inset: 0; background: linear-gradient(to left, transparent 40%, var(--near-black)); }
.pdf-content { padding: 100px 72px; display: flex; flex-direction: column; justify-content: center; }
.pdf-mockup { background: linear-gradient(135deg, var(--near-black), #1a0a09); border: 1px solid rgba(192,57,43,0.4); padding: 32px; margin-bottom: 40px; position: relative; }
.pdf-mockup::before { content: 'FREE DOWNLOAD'; position: absolute; top: -12px; left: 24px; background: var(--red); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; padding: 4px 12px; }
.pdf-mockup-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--white); letter-spacing: 2px; margin-bottom: 8px; }
.pdf-mockup-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); }
.pdf-body { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.pdf-form { display: flex; flex-direction: column; gap: 12px; }
.pdf-form input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-bottom: 2px solid var(--red); color: var(--white); padding: 16px 20px; font-family: 'Barlow', sans-serif; font-size: 15px; outline: none; transition: all 0.2s; }
.pdf-form input::placeholder { color: rgba(255,255,255,0.35); }
.pdf-form input:focus { background: rgba(255,255,255,0.09); border-bottom-color: var(--white); }
.pdf-form button { background: var(--red); color: var(--white); border: none; padding: 18px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.pdf-form button:hover { background: var(--dark-red); }
.pdf-disclaimer { font-size: 12px; color: var(--gray); margin-top: 12px; line-height: 1.5; }

/* CONSULTING */
.consulting { background: var(--black); padding: 120px 48px; text-align: center; }
.consulting-inner { max-width: 900px; margin: 0 auto; }
.consulting-body { font-size: 19px; line-height: 1.7; color: rgba(255,255,255,0.75); margin: 32px 0 56px; }
.consulting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; background: var(--light-gray); }
.consulting-card { background: var(--near-black); padding: 48px 32px; text-align: left; transition: background 0.2s; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s; }
.consulting-card.visible { opacity: 1; transform: translateY(0); }
.consulting-card:hover { background: var(--light-gray); }
.consulting-icon { font-size: 32px; margin-bottom: 16px; }
.consulting-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--white); margin-bottom: 12px; }
.consulting-card-body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.65); }
.consulting-price { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 20px; }
.consulting-cta-block { background: var(--near-black); border: 1px solid rgba(192,57,43,0.3); padding: 56px 64px; position: relative; }
.consulting-cta-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.consulting-cta-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 2px; margin-bottom: 16px; }
.consulting-cta-body { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.6; }

/* SHOP */
.shop { background: var(--near-black); padding: 120px 48px; }
.shop-header { text-align: center; margin-bottom: 80px; }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; max-width: 1100px; margin: 0 auto; }
.product-card { background: var(--black); overflow: hidden; transition: transform 0.3s; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: translateY(-4px); }
.product-image { position: relative; height: 420px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.85); }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-badge { position: absolute; top: 20px; left: 20px; background: var(--red); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; }
.product-info { padding: 36px 40px; }
.product-name { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 1px; color: var(--white); margin-bottom: 8px; }
.product-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.product-desc { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.spec-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); border: 1px solid rgba(255,255,255,0.1); padding: 4px 10px; }
.product-price-row { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--white); letter-spacing: 1px; }
.product-note { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* PROOF */
.proof-section { background: var(--black); padding: 120px 48px; }
.proof-header { text-align: center; margin-bottom: 80px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; max-width: 1100px; margin: 0 auto; }
.proof-card { position: relative; overflow: hidden; min-height: 500px; }
.proof-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.proof-card:hover img { transform: scale(1.04); }
.proof-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 60%); }

/* PHILOSOPHY */
.philosophy { background: var(--red); padding: 100px 48px; text-align: center; }
.philosophy-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.1; letter-spacing: 2px; color: var(--white); max-width: 900px; margin: 0 auto 24px; }
.philosophy-attr { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* FOOTER */
footer { background: #050505; padding: 72px 48px 40px; border-top: 1px solid rgba(192,57,43,0.2); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 3px; color: var(--white); margin-bottom: 16px; }
.footer-brand-name span { color: var(--red); }
.footer-tagline { font-size: 15px; color: var(--gray); line-height: 1.6; max-width: 320px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); color: var(--gray); text-decoration: none; font-size: 14px; font-family: 'Bebas Neue', sans-serif; font-weight: 700; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-copy span { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-stats { gap: 24px; }
  .proof-bar { gap: 20px; padding: 16px 24px; }
  .story { grid-template-columns: 1fr; }
  .story-image { min-height: 400px; }
  .story-content { padding: 60px 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pdf-section { grid-template-columns: 1fr; }
  .pdf-image { min-height: 300px; }
  .pdf-content { padding: 60px 32px; }
  .consulting-grid { grid-template-columns: 1fr; }
  .consulting-cta-block { padding: 40px 24px; }
  .shop-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* CREDENTIALS */
.consulting-credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 32px 0 48px; }
.credential-item { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.8); border-left: 2px solid var(--red); padding: 8px 16px; background: rgba(192,57,43,0.06); }
@media (max-width: 900px) { .consulting-credentials { grid-template-columns: 1fr; } }

/* METABOLIC ASSASSINS BLOCK */
.consulting-assassins { background: var(--black); border: 1px solid rgba(255,255,255,0.08); padding: 64px 64px; text-align: center; margin-top: 48px; position: relative; overflow: hidden; }
.consulting-assassins::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent, #FF2D2D, transparent); }
.consulting-assassins-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 3px; color: var(--white); margin-bottom: 16px; }
.consulting-assassins-body { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 700px; margin: 0 auto 24px; }
.ma-bullets { max-width: 600px; margin: 0 auto 32px; text-align: left; }
.ma-bullet { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ma-bullet-icon { color: #FF2D2D; margin-right: 12px; font-size: 10px; }
.ma-who { font-size: 16px; color: var(--white); font-weight: 700; line-height: 1.6; max-width: 600px; margin: 32px auto 24px; }
.ma-founders { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 600px; margin: 0 auto 36px; }
.btn-ma-waitlist { display: inline-block; background: #FF2D2D; color: var(--white); border: none; padding: 18px 48px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.2s; }
.btn-ma-waitlist:hover { background: #cc2424; }
@media (max-width: 900px) { .consulting-assassins { padding: 48px 24px; } .consulting-assassins-title { font-size: 36px; } }

/* COMING SOON BADGE */
.coming-soon-badge { display: inline-block; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); border: 2px solid var(--red); padding: 14px 40px; text-align: center; margin-top: 8px; }

/* PRODUCT PLACEHOLDER */
.product-placeholder { height: 280px; background: #0a0a0a; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.product-placeholder-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 8px; }
.product-placeholder-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; }

/* MA WATERMARK */
.ma-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Bebas Neue', sans-serif; font-size: 180px; font-weight: 400; letter-spacing: 8px; color: rgba(255,45,45,0.04); pointer-events: none; z-index: 0; }
.consulting-assassins > *:not(.ma-watermark) { position: relative; z-index: 1; }

/* WAITLIST PAGE */
.waitlist-page { background: var(--black); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 80px; text-align: center; }
.waitlist-content { max-width: 640px; }
.waitlist-check { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #FF2D2D; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #FF2D2D; margin: 0 auto 32px; }
.waitlist-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 8vw, 80px); line-height: 0.95; letter-spacing: 2px; color: var(--white); margin-bottom: 24px; }
.waitlist-body { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 48px; }
.waitlist-countdown { background: var(--near-black); border: 1px solid rgba(255,45,45,0.2); padding: 40px; margin-bottom: 48px; }
.countdown-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: #FF2D2D; margin-bottom: 24px; }
.countdown-timer { display: flex; justify-content: center; gap: 24px; }
.countdown-block { text-align: center; }
.countdown-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--white); line-height: 1; }
.countdown-unit { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }
.waitlist-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.waitlist-socials { display: flex; justify-content: center; gap: 24px; }
.waitlist-socials a { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #FF2D2D; text-decoration: none; transition: color 0.2s; }
.waitlist-socials a:hover { color: var(--white); }
