/* =============================================================
   book.html — page-specific styles
   ============================================================= */

/* ── CANONICAL CSS VARIABLES ── */
    :root {
      --bg: #0b0514;
      --bg-alt: #130a24;
      --accent: #00e5ff;
      --accent2: #d946ef;
      --accent3: #a855f7;
      --pink: #ffaa00;
      --gold: #2dd4bf;
      --text: #f8fafc;
      --text-muted: #cbd5e1;
      --text-dim: #64748b;
      --border: rgba(217, 70, 239, 0.15);
      --glow: rgba(0, 229, 255, 0.12);
      --font-heading: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

    /* ── @PROPERTY DECLARATIONS ── */
    @property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
    @property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
    @property --shimmer-pos { syntax: '<percentage>'; initial-value: -100%; inherits: false; }

    /* ── KEYFRAMES ── */
    @keyframes borderSpin { to { --border-angle: 360deg; } }
    @keyframes shimmer { to { --shimmer-pos: 200%; } }
    @keyframes glow-pulse {
      0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 12px rgba(0,229,255,0.3)); }
      50% { opacity: 1; filter: drop-shadow(0 0 20px rgba(0,229,255,0.5)); }
    }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

    /* ── BASE RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 300;
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }
    a { color: inherit; }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    /* ── BUTTONS ── */
    .btn-conic {
      position: relative;
      padding: 14px 32px;
      border-radius: 12px;
      font-size: 0.84rem;
      font-weight: 500;
      color: white;
      background: var(--bg);
      z-index: 1;
      overflow: hidden;
      cursor: pointer;
      border: none;
      font-family: inherit;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .btn-conic::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 14px;
      background: conic-gradient(from var(--border-angle), var(--accent), var(--pink), var(--gold), var(--accent3), var(--accent));
      z-index: -2;
      animation: borderSpin 3s linear infinite;
    }
    .btn-conic::after {
      content: '';
      position: absolute;
      inset: 2px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(11,5,20,0.95));
      z-index: -1;
    }
    .btn-conic:hover { transform: translateY(-2px); transition: transform 0.2s; }

    .btn-ghost {
      padding: 14px 28px;
      border-radius: 12px;
      font-size: 0.84rem;
      font-weight: 400;
      color: var(--text-muted);
      border: 1px solid var(--border);
      background: rgba(217,70,239,0.04);
      backdrop-filter: blur(8px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      cursor: pointer;
      text-decoration: none;
      font-family: inherit;
    }
    .btn-ghost:hover {
      color: var(--text);
      border-color: rgba(217,70,239,0.3);
      box-shadow: 0 0 24px rgba(217,70,239,0.15);
      transform: translateY(-2px);
    }

    /* ── SECTION HEADER PATTERNS ── */
    .eyebrow {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .eyebrow::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--accent);
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 16px;
      color: var(--text);
      font-family: var(--font-heading);
      font-weight: 200;
      letter-spacing: -0.04em;
      line-height: 1.15;
    }
    .section-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      max-width: 520px;
      font-weight: 300;
      line-height: 1.7;
    }
    .text-gradient {
      background: linear-gradient(135deg, var(--accent), var(--accent2), var(--pink));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 200;
    }

    /* ── BOOK PAGE ── */
    .book-page { padding: 12rem 0 4rem; }

    .book-page__header {
      text-align: center;
      margin-bottom: 4rem;
      animation: fadeUp 0.7s ease both;
    }
    .book-page__header .eyebrow {
      justify-content: center;
    }
    .book-page__header .eyebrow::before { display: none; }
    .book-page__header h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 200;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin: 16px 0;
    }
    .book-page__header p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── HEADER NUDGE LINK ── */
    .book-page__nudge {
      margin-top: 20px;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      color: var(--text-dim);
    }
    .book-page__nudge a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px dashed rgba(0, 229, 255, 0.4);
      padding-bottom: 1px;
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .book-page__nudge a:hover {
      color: var(--accent2);
      border-bottom-color: var(--accent2);
    }

    /* ── VSL PREVIEW SECTION ── */
    .book-page__vsl {
      max-width: 640px;
      margin: 0 auto 4rem;
      text-align: center;
      animation: fadeUp 0.7s 0.05s ease both;
    }
    .book-page__vsl .eyebrow {
      justify-content: center;
    }
    .book-page__vsl .eyebrow::before { display: none; }
    .book-page__vsl-title {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3.4vw, 2.2rem);
      font-weight: 200;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 8px 0 18px;
    }
    .book-page__vsl-lead {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto 32px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── SHOWCASE CTA (mirrors home.css) ── */
    .showcase-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }
    .showcase-cta__thumb {
      position: relative;
      display: block;
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
      aspect-ratio: 16 / 9;
      border-radius: 14px;
      overflow: hidden;
      padding: 2px;
      box-sizing: border-box;
      background: conic-gradient(from var(--angle, 0deg), var(--accent), var(--accent2), var(--accent3), var(--accent2), var(--accent));
      box-shadow: 0 16px 48px -16px rgba(168, 85, 247, 0.4), 0 0 24px rgba(0, 229, 255, 0.1);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: pointer;
      text-decoration: none;
    }
    .showcase-cta__thumb:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 64px -16px rgba(168, 85, 247, 0.55), 0 0 32px rgba(0, 229, 255, 0.18);
    }
    .showcase-cta__btn { align-self: center; }
    .showcase-cta__placeholder {
      position: absolute;
      inset: 2px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 4px;
      padding: 18px 20px;
      border-radius: 12px;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 229, 255, 0.10), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(217, 70, 239, 0.10), transparent 55%),
        linear-gradient(135deg, var(--bg-alt) 0%, #1a0e2e 100%);
    }
    .showcase-cta__placeholder-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      color: var(--accent);
    }
    .showcase-cta__placeholder-title {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 200;
      color: var(--text);
      line-height: 1.2;
    }
    .showcase-cta__play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
      transition: transform 0.25s ease;
    }
    .showcase-cta__thumb:hover .showcase-cta__play { transform: translate(-50%, -50%) scale(1.08); }
    .showcase-cta__live {
      position: absolute;
      top: 12px;
      right: 12px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 9px;
      background: rgba(11, 5, 20, 0.7);
      border: 1px solid rgba(0, 229, 255, 0.4);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--accent);
      backdrop-filter: blur(6px);
    }
    .showcase-cta__live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
      animation: pulse-dot 1.6s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.2); }
    }

    /* ── VSL MODAL ── */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }
    .vsl-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .vsl-modal.is-open { display: flex; animation: fadeUp 0.25s ease both; }
    .vsl-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 2, 11, 0.85);
      backdrop-filter: blur(8px);
      cursor: pointer;
    }
    .vsl-modal__panel {
      position: relative;
      width: 100%;
      max-width: 960px;
      aspect-ratio: 16 / 9;
      background: var(--bg-alt);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 32px 96px -16px rgba(0, 0, 0, 0.7), 0 0 48px rgba(168, 85, 247, 0.2);
      border: 1px solid var(--border);
    }
    .vsl-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(11, 5, 20, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: var(--text);
      font-size: 1.5rem;
      font-weight: 300;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .vsl-modal__close:hover {
      background: rgba(217, 70, 239, 0.25);
      border-color: rgba(217, 70, 239, 0.5);
      transform: scale(1.05);
    }
    .vsl-modal__video, .vsl-modal__video iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .book-page__embed {
      max-width: 700px;
      margin: 0 auto 4rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 16px;
      backdrop-filter: blur(16px);
      overflow: hidden;
      min-height: 500px;
      animation: fadeUp 0.7s 0.1s ease both;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }
    .book-page__embed::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent2), transparent);
      border-radius: 16px 16px 0 0;
    }
    .book-page__placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
      text-align: center;
      min-height: 500px;
    }
    .book-page__placeholder-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }
    .book-page__placeholder h3 {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }
    .book-page__placeholder p {
      font-size: 0.84rem;
      color: var(--text-muted);
    }
    .calendly-inline-widget { min-height: 700px; }

    .book-page__info {
      max-width: 700px;
      margin: 0 auto;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .book-info-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 16px;
      backdrop-filter: blur(16px);
      padding: 2.5rem;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }
    .book-info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: 16px 16px 0 0;
    }
    .book-info-card:hover {
      border-color: rgba(217,70,239,0.3);
      transform: translateY(-3px);
    }
    .book-info-card:hover::before { opacity: 1; }
    .book-info-card h3 {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: -0.02em;
      margin-bottom: 1.5rem;
    }
    .book-page__expect-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .book-page__expect-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .book-page__expect-item .step-num {
      font-family: var(--font-mono);
      font-weight: 400;
      font-size: 0.95rem;
      color: var(--accent);
      flex-shrink: 0;
      min-width: 1.75rem;
    }

    
    
    
    
    
    
    
    
    
    
    
    
    

    @media (max-width: 1024px) {
    }
    @media (max-width: 768px) {
      .book-page { padding: 8rem 0 4rem; }
      .book-page__vsl { margin-bottom: 3rem; }
      .showcase-cta { gap: 12px; }
      .vsl-modal { padding: 16px; }
    }
    @media (max-width: 480px) {
    }
  