:root {
      --blue:      #4B6BF5;
      --blue-h:    #3B5AE0;
      --blue-pale: #EEF2FF;
      --yellow:    #F5C518;
      --yellow-h:  #E0B400;
      --ink:       #111827;
      --mid:       #6B7280;
      --light:     #9CA3AF;
      --rule:      #E5E7EB;
      --canvas:    #F9FAFB;
      --white:     #FFFFFF;
      --radius:    10px;
      --radius-pill: 100px;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--white);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }

    /* ─── PROMO BANNER ─── */
    .promo-banner {
      background: var(--ink); color: rgba(255,255,255,0.85);
      text-align: center; padding: 9px 24px;
      font-size: 13px; font-weight: 500;
    }
    .promo-banner a {
      color: var(--yellow); font-weight: 700; margin-left: 8px;
    }

    /* ─── HEADER ─── */
    .header {
      position: sticky; top: 0; z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--rule);
    }
    .header-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      height: 64px; display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
    }
    .logo {
      display: flex; align-items: center; gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 800;
      color: var(--ink); letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .logo-mark {
      width: 28px; height: 28px;
      background: var(--yellow);
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      transform: rotate(180deg);
    }
    .nav { display: flex; gap: 28px; list-style: none; }
    .nav a {
      font-size: 14px; font-weight: 500;
      color: var(--mid); transition: color 0.15s;
    }
    .nav a:hover { color: var(--ink); }
    .header-right { display: flex; gap: 10px; align-items: center; }
    .btn-login {
      padding: 8px 20px;
      border: 1.5px solid var(--rule); border-radius: var(--radius-pill);
      background: transparent; color: var(--ink);
      font-family: inherit; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: border-color 0.15s;
      display: flex; align-items: center; gap: 6px;
    }
    .btn-login:hover { border-color: var(--mid); }
    .btn-header-cta {
      padding: 9px 22px;
      background: var(--yellow); color: var(--ink);
      border: none; border-radius: var(--radius-pill);
      font-family: inherit; font-size: 14px; font-weight: 800;
      cursor: pointer; transition: background 0.15s;
    }
    .btn-header-cta:hover { background: var(--yellow-h); }

    /* ─── HERO ─── */
    .hero {
      padding: 64px 32px 72px;
      overflow: hidden;
      position: relative;
      background: var(--white);
      border-bottom: 1px solid var(--rule);
    }
    /* Concentric arc lines background — left side decoration */
    .hero::before {
      content: '';
      position: absolute;
      left: -120px; top: 50%;
      transform: translateY(-50%);
      width: 640px; height: 640px;
      background-image:
        radial-gradient(circle, transparent 200px, #e5e7eb 200px, #e5e7eb 201px, transparent 202px),
        radial-gradient(circle, transparent 270px, #e5e7eb 270px, #e5e7eb 271px, transparent 272px),
        radial-gradient(circle, transparent 340px, #e5e7eb 340px, #e5e7eb 341px, transparent 342px),
        radial-gradient(circle, transparent 410px, #e5e7eb 410px, #e5e7eb 411px, transparent 412px),
        radial-gradient(circle, transparent 480px, #e5e7eb 480px, #e5e7eb 481px, transparent 482px);
      opacity: 0.6;
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
      position: relative; z-index: 1;
    }
    .hero-left { max-width: 560px; }
    .hero-eyebrow {
      font-size: 14px; color: var(--mid); font-weight: 400;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 58px; font-weight: 900;
      line-height: 1.06; letter-spacing: -2px;
      color: var(--ink); margin-bottom: 22px;
    }
    .hero-sub {
      font-size: 16px; color: var(--mid);
      line-height: 1.7; max-width: 440px;
      margin-bottom: 36px;
    }
    /* CTA with bracket decorators */
    .hero-cta-row {
      display: flex; align-items: center; gap: 16px;
    }
    .cta-bracket {
      display: flex; flex-direction: column; gap: 5px;
      align-items: center;
    }
    .cta-bracket .br-line {
      width: 18px; height: 2px;
      background: var(--blue); border-radius: 2px;
    }
    .cta-bracket .br-arrow {
      width: 0; height: 0; border-style: solid;
    }
    .cta-bracket.left .br-arrow {
      border-width: 5px 8px 5px 0;
      border-color: transparent var(--blue) transparent transparent;
    }
    .cta-bracket.right .br-arrow {
      border-width: 5px 0 5px 8px;
      border-color: transparent transparent transparent var(--blue);
    }
    .btn-hero-pill {
      display: inline-block;
      padding: 16px 40px;
      background: var(--blue); color: white;
      border: none; border-radius: var(--radius-pill);
      font-family: inherit; font-size: 17px; font-weight: 800;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(75,107,245,0.3);
      transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    }
    .btn-hero-pill:hover {
      background: var(--blue-h);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(75,107,245,0.4);
    }
    .btn-outline-pill {
      display: inline-block;
      padding: 11px 28px;
      background: transparent; color: var(--ink);
      border: 1.5px solid var(--rule);
      border-radius: var(--radius-pill);
      font-family: inherit; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: border-color 0.15s;
    }
    .btn-outline-pill:hover { border-color: var(--mid); }

    /* ─── HERO VISUAL: yellow circle + covers ─── */
    .hero-right {
      display: flex; justify-content: flex-end; align-items: center;
    }
    .hero-visual {
      position: relative;
      width: 540px; height: 500px;
      flex-shrink: 0;
    }
    .hero-circle {
      position: absolute;
      width: 480px; height: 480px;
      background: var(--yellow);
      border-radius: 50%;
      right: 0; top: 50%;
      transform: translateY(-50%);
      z-index: 0;
    }
    .covers-grid {
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%);
      display: grid;
      grid-template-columns: repeat(5, 82px);
      grid-template-rows: repeat(3, 110px);
      gap: 8px;
      z-index: 1;
    }
    .ep-cover {
      width: 82px; height: 110px;
      border-radius: 8px;
      overflow: hidden;
      display: flex; flex-direction: column;
      justify-content: space-between;
      padding: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      position: relative;
      background-size: cover;
      background-position: center;
    }

    /* Cover color fallbacks (when image fails to load) */
    .cv-cream { background-color: #F5F0E8; }
    .cv-navy  { background-color: #0F2744; }
    .cv-red   { background-color: #8B1A1A; }
    .cv-dark  { background-color: #111827; }
    .cv-maroon{ background-color: #4A1942; }
    .cv-blue  { background-color: #1A3A6B; }
    .cv-slate { background-color: #334155; }
    .cv-green { background-color: #14532D; }
    .cv-white { background-color: #D1D5DB; }
    .cv-amber { background-color: #78350F; }
    .cv-indigo{ background-color: #312E81; }
    .cv-teal  { background-color: #134E4A; }
    .cv-rose  { background-color: #881337; }
    .cv-stone { background-color: #292524; }
    .cv-sky   { background-color: #0C4A6E; }

    /* ─── SECTION ─── */
    .section { padding: 64px 32px; }
    .section-inner { max-width: 1080px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 40px; }
    .section-eyebrow {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--blue); margin-bottom: 8px;
    }
    .section-title {
      font-family: 'Fraunces', serif;
      font-size: 30px; font-weight: 800;
      letter-spacing: -0.8px; color: var(--ink); margin-bottom: 8px;
    }
    .section-sub {
      font-size: 15px; color: var(--mid);
      max-width: 460px; margin: 0 auto; line-height: 1.65;
    }

    /* ─── CATEGORY PILLS ─── */
    .categories { border-bottom: 1px solid var(--rule); }
    .cat-inner {
      max-width: 1080px; margin: 0 auto; padding: 14px 32px;
      display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
    }
    .cat-inner::-webkit-scrollbar { display: none; }
    .cat-pill {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 7px 14px;
      border: 1px solid var(--rule);
      border-radius: 100px; background: var(--white);
      font-family: inherit; font-size: 13px; font-weight: 500;
      color: var(--mid); white-space: nowrap; cursor: pointer;
      transition: all 0.15s;
    }
    .cat-pill:hover, .cat-pill.active {
      border-color: var(--blue); color: var(--blue);
      background: var(--blue-pale);
    }

    /* ─── EPISODE GRID ─── */
    .ep-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .ep-card {
      display: flex; flex-direction: column; gap: 10px;
      text-decoration: none; color: inherit;
    }
    .ep-card:hover .ep-thumb { opacity: 0.82; }
    .ep-thumb {
      width: 100%; aspect-ratio: 16/9;
      border-radius: var(--radius);
      border: 1px solid var(--rule);
      position: relative; overflow: hidden;
      transition: opacity 0.15s;
    }
    .ep-badge {
      position: absolute;
      font-size: 10px; font-weight: 700;
      padding: 3px 8px; border-radius: var(--radius-pill);
    }
    .ep-badge--new {
      top: 8px; left: 8px;
      background: var(--blue); color: white;
      font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em;
    }
    .ep-badge--dur {
      bottom: 8px; right: 8px;
      background: rgba(0,0,0,0.65); color: white;
    }
    .ep-meta { display: flex; flex-direction: column; gap: 3px; }
    .ep-show {
      font-size: 11px; font-weight: 600; color: var(--mid);
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .ep-title {
      font-family: 'Fraunces', serif;
      font-size: 14px; font-weight: 700;
      color: var(--ink); line-height: 1.3;
    }

    /* ─── LOGOS STRIP ─── */
    .logos-section {
      border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
      padding: 22px 32px;
    }
    .logos-inner {
      max-width: 1080px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      gap: 8px; flex-wrap: wrap;
    }
    .logos-label {
      font-size: 12px; color: var(--light); font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      margin-right: 8px; white-space: nowrap;
    }
    .logos-list {
      display: flex; align-items: center; gap: 24px;
      flex-wrap: wrap; justify-content: center;
    }
    .logo-item {
      font-size: 13px; font-weight: 700; color: var(--light);
      text-transform: uppercase; letter-spacing: 0.05em;
    }

    /* ─── PRODUCT PREVIEW WINDOW ─── */
    .preview-section { background: var(--canvas); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
    .preview-inner { max-width: 860px; margin: 0 auto; padding: 64px 32px; }
    .preview-window {
      border: 1px solid var(--rule); border-radius: 12px;
      overflow: hidden; background: var(--white);
      box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    }
    .preview-titlebar {
      background: var(--canvas); border-bottom: 1px solid var(--rule);
      padding: 10px 16px; display: flex; align-items: center; gap: 6px;
    }
    .titlebar-dot { width: 10px; height: 10px; border-radius: 50%; }
    .titlebar-dot.red { background: #FF5F57; }
    .titlebar-dot.yellow { background: #FEBC2E; }
    .titlebar-dot.green { background: #28C840; }
    .titlebar-label { margin-left: 8px; font-size: 12px; color: var(--light); }
    .preview-content { padding: 32px 40px; }
    .preview-ep-meta { font-size: 11px; color: var(--light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.07em; }
    .preview-ep-title {
      font-family: 'Fraunces', serif;
      font-size: 22px; font-weight: 800;
      color: var(--ink); margin-bottom: 18px; line-height: 1.25;
    }
    .preview-divider { border: none; border-top: 1px solid var(--rule); margin-bottom: 18px; }
    .preview-takeaway {
      display: flex; gap: 14px; align-items: flex-start;
      margin-bottom: 14px; padding-bottom: 14px;
      border-bottom: 1px solid var(--rule);
    }
    .preview-takeaway:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .preview-num {
      font-size: 11px; font-weight: 800; color: var(--blue);
      background: var(--blue-pale);
      min-width: 22px; height: 22px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .preview-text { font-size: 14px; line-height: 1.6; color: var(--ink); }
    .preview-locked {
      display: flex; gap: 12px; align-items: center;
      padding: 12px 16px; background: var(--canvas);
      border: 1px dashed var(--rule); border-radius: var(--radius);
      margin-top: 4px;
    }
    .preview-locked p { font-size: 13px; color: var(--light); }
    .preview-locked a { margin-left: auto; flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--blue); }

    /* ─── VALUE GRID ─── */
    .value-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--rule);
      border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
    }
    .value-cell { background: var(--white); padding: 28px 24px; }
    .value-icon { font-size: 24px; margin-bottom: 12px; }
    .value-cell h3 {
      font-family: 'Fraunces', serif;
      font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 7px;
    }
    .value-cell p { font-size: 14px; color: var(--mid); line-height: 1.65; }

    /* ─── TESTIMONIALS ─── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .t-card { border: 1px solid var(--rule); border-radius: var(--radius); padding: 20px; background: var(--white); }
    .t-quote { font-size: 14px; color: var(--ink); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
    .t-author { display: flex; align-items: center; gap: 10px; }
    .t-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--canvas); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
    .t-name { font-size: 13px; font-weight: 700; color: var(--ink); }
    .t-handle { font-size: 12px; color: var(--light); }

    /* ─── STATS ─── */
    .stats-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--rule);
      border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; margin-top: 40px;
    }
    .stat-cell { background: var(--white); padding: 24px; text-align: center; }
    .stat-num { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 900; color: var(--ink); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
    .stat-label { font-size: 13px; color: var(--light); }

    /* ─── FAQ ─── */
    .faq-list { max-width: 640px; margin: 0 auto; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
    .faq-item { border-bottom: 1px solid var(--rule); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q { width: 100%; background: var(--white); border: none; padding: 18px 20px; text-align: left; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-q:hover { background: var(--canvas); }
    .faq-icon { font-size: 18px; color: var(--light); transition: transform 0.2s; flex-shrink: 0; }
    .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
    .faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--mid); line-height: 1.75; background: var(--white); }
    .faq-item.open .faq-a { display: block; }

    /* ─── FINAL CTA ─── */
    .final-cta { background: var(--blue); text-align: center; padding: 80px 32px; }
    .final-cta h2 { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 900; color: white; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 12px; }
    .final-cta p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 380px; margin: 0 auto 28px; line-height: 1.6; }
    .btn-final-white { display: inline-block; padding: 15px 40px; background: white; color: var(--blue); border: none; border-radius: var(--radius-pill); font-family: inherit; font-size: 16px; font-weight: 800; cursor: pointer; transition: opacity 0.15s; }
    .btn-final-white:hover { opacity: 0.9; }
    .final-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.5); }

    /* ─── FOOTER ─── */
    .footer { background: var(--ink); color: rgba(255,255,255,0.45); padding: 48px 32px 28px; }
    .footer-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
    .footer-logo { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 800; color: white; margin-bottom: 8px; }
    .footer-logo span { color: var(--yellow); }
    .footer-tagline { font-size: 13px; line-height: 1.65; }
    .footer-col h4 { font-size: 11px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 12px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 13px; transition: color 0.15s; }
    .footer-links a:hover { color: white; }
    .footer-bottom { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; }
    .footer-legal { display: flex; gap: 16px; }
    .footer-legal a:hover { color: white; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .hero-visual { width: 460px; height: 420px; }
      .hero-circle { width: 400px; height: 400px; }
      .covers-grid { grid-template-columns: repeat(5, 70px); grid-template-rows: repeat(3, 94px); gap: 6px; }
      .ep-cover { width: 70px; height: 94px; }
      .ep-cover .title { font-size: 9px; }
      .ep-cover .show, .ep-cover .guest { font-size: 6px; }
    }
    @media (max-width: 900px) {
      .hero { padding: 48px 24px 56px; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { justify-content: center; margin-top: 8px; }
      .hero h1 { font-size: 42px; letter-spacing: -1.5px; }
      .ep-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .section { padding: 48px 24px; }
      .preview-inner { padding: 48px 24px; }
    }
    @media (max-width: 640px) {
      .header-inner { padding: 0 16px; }
      .nav { display: none; }
      .btn-login { display: none; }
      .hero { padding: 36px 20px 44px; }
      .hero h1 { font-size: 34px; letter-spacing: -1px; }
      .hero-sub { font-size: 15px; max-width: 100%; }
      .cta-bracket { display: none; }
      .hero-cta-row { justify-content: center; }
      .ep-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .value-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .preview-content { padding: 20px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-tagline { display: none; }
      .section { padding: 40px 16px; }
      .section-title { font-size: 26px; }
      .preview-inner { padding: 40px 16px; }
      .final-cta { padding: 48px 20px; }
      .final-cta h2 { font-size: 28px; letter-spacing: -0.5px; }
      .final-note { display: none; }
      .footer { padding: 36px 16px 24px; }
    }
    @media (max-width: 380px) {
      .hero h1 { font-size: 30px; }
      .btn-hero-pill { font-size: 15px; padding: 14px 28px; }
    }