    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      overflow-y: scroll;
    }

    body {
      font-family: 'Manrope', system-ui, -apple-system, sans-serif;
      background: var(--ui-canvas-bg);
      color: var(--ui-text-color);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Manrope', system-ui, -apple-system, sans-serif;
      letter-spacing: -0.01em;
    }

    .background-gradient {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(245, 247, 251, 0) 220px),
        var(--ui-canvas-bg);
    }

    .marketing-header.site-header {
      padding: 1.15rem 1rem;
      background: var(--color-surface);
      backdrop-filter: blur(12px);
      border: 0;
      box-shadow: none;
      position: relative;
      top: auto;
      z-index: 100;
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      width: 42px;
      height: 42px;
      object-fit: contain;
      display: block;
      flex: 0 0 42px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 1.5rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      transition: opacity 0.2s ease, background-color 0.2s ease;
      color: var(--color-surface);
      background: var(--ui-brand-blue);
      border: none;
    }

    .header-account {
      position: relative;
    }

    .header-account summary {
      list-style: none;
    }

    .header-account summary::-webkit-details-marker {
      display: none;
    }

    .header-account-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      cursor: pointer;
      min-height: 42px;
      color: var(--ui-text-soft);
      border: 1px solid var(--ui-surface-border-color);
      border-radius: 999px;
      padding: 0.5rem 0.9rem;
      font-size: 0.89rem;
      font-weight: 700;
      line-height: 1;
      user-select: none;
      transition: color 0.2s, border-color 0.2s, background-color 0.2s;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: none;
    }

    .header-account-toggle:hover,
    .header-account[open] .header-account-toggle {
      color: var(--ui-text-soft);
      background: var(--ui-surface-bg-brand);
      border-color: var(--ui-surface-border-color);
    }
    .header-account-caret {
      font-size: 1.05rem;
      line-height: 1;
      transition: transform 0.2s;
    }

    .header-account[open] .header-account-caret {
      transform: rotate(90deg);
    }

    .header-account-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 0.45rem);
      min-width: 170px;
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: 12px;
      box-shadow: none;
      padding: 0.35rem;
      display: grid;
      gap: 0.2rem;
      z-index: 50;
    }

    .header-account-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border: 1px solid transparent;
      color: var(--color-text);
      text-decoration: none;
      font-size: 0.86rem;
      font-weight: 600;
      border-radius: 8px;
      padding: 0.48rem 0.58rem;
      text-align: center;
      transition: background-color 0.2s, color 0.2s;
    }

    .header-account-item:hover {
      background: var(--ui-surface-bg-brand);
      border-color: var(--ui-surface-border-color);
      color: var(--color-text);
    }

    
    .hero-mesh-region {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: transparent;
    }

    .hero-mesh-region:before {
      content: "";
      position: absolute;
      inset: -4px;
      background:
        radial-gradient(72% 68% at 10% 16%, rgba(2, 132, 199, 0.3), rgba(2, 132, 199, 0) 74%),
        radial-gradient(64% 62% at 88% 8%, rgba(56, 189, 248, 0.34), rgba(56, 189, 248, 0) 76%),
        radial-gradient(54% 54% at 22% 90%, rgba(14, 116, 144, 0.2), rgba(14, 116, 144, 0) 78%),
        radial-gradient(64% 62% at 82% 84%, rgba(99, 102, 241, 0.16), rgba(99, 102, 241, 0) 80%),
        linear-gradient(140deg, rgba(224, 242, 254, 0.95), rgba(240, 249, 255, 0.88) 45%, rgba(248, 250, 252, 0.92));
      filter: none;
      transform: none;
      transform-origin: center;
      z-index: 0;
      pointer-events: none;
    }

    .hero-mesh-region:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: clamp(120px, 20vw, 220px);
      background: linear-gradient(180deg, rgba(241, 245, 249, 0) 0%, rgba(241, 245, 249, 0.66) 66%, var(--ui-canvas-bg) 100%);
      z-index: 0;
      pointer-events: none;
    }

    .hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3.5rem 1.5rem 2.5rem;
      position: relative;
      z-index: 1;
    }

    .hero-surface {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 2.5rem;
      padding: 3rem 0;
    }

    .hero-main {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 0.95rem;
      margin: 0 0 1rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(14, 165, 233, 0.16);
      color: var(--color-primary);
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      
    }

    .hero h1 {
      font-size: clamp(3rem, 6vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--color-text);
    }

    .hero .subtitle {
      font-size: 1.25rem;
      color: var(--ui-text-soft);
      max-width: 700px;
      margin: 0 auto 1.1rem;
      line-height: 1.6;
    }

    .hero-purpose {
      max-width: 760px;
      margin: 0 auto;
      color: var(--color-text);
      font-size: 1.03rem;
      line-height: 1.7;
    }

    .hero-purpose-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.4rem;
    }

    .hero-purpose-list span {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(15, 23, 42, 0.08);
      color: var(--color-text);
      font-size: 0.92rem;
      font-weight: 600;
      line-height: 1.35;
    }

    .hero .cta-button {
      font-size: 1.1rem;
      padding: 1rem 2rem;
    }

    .hero-auth {
      border-radius: 24px;
      border: 1px solid rgba(15,23,42,0.05);
      background: var(--color-surface);
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      width: min(100%, 460px);
      justify-self: center;
    }

    .hero-auth h2,
    .hero-auth h3 {
      font-size: 0.95rem;
      color: var(--color-text);
      font-weight: 700;
      margin: 0;
    }

    .hero-auth-sub {
      font-size: 0.9rem;
      color: var(--color-text);
      line-height: 1.4;
      margin: 0;
    }

    .hero-auth-form {
      display: grid;
      gap: 0.55rem;
    }

    .hero-auth-email {
      width: 100%;
      border: 1px solid var(--ui-border-color-strong);
      border-radius: var(--ui-radius-md);
      padding: 0.72rem 0.85rem;
      font-family: inherit;
      font-size: 0.95rem;
      color: var(--ui-text-soft);
      background: var(--ui-surface-bg-muted);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .hero-auth-email:focus {
      border-color: var(--ui-input-focus-border);
      box-shadow: var(--ui-input-focus-ring);
      background: var(--ui-surface-bg);
    }

    .hero-auth-submit {
      width: 100%;
      border: 0;
      min-height: 56px;
      border-radius: 999px;
      padding: 0 1.5rem;
      background: var(--color-text);
      color: var(--color-surface);
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .hero-auth-submit:hover {
      opacity: 0.8;
    }

    .hero-auth-divider {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--ui-text-muted);
      font-size: 0.78rem;
      
      letter-spacing: 0.07em;
      font-weight: 600;
    }

    .hero-auth-divider:before,
    .hero-auth-divider:after {
      content: "";
      height: 1px;
      background: var(--ui-border-color-strong);
      flex: 1;
    }

    .hero-auth-socials {
      display: grid;
      gap: 0.55rem;
    }

    .hero-auth-social-btn {
      width: 100%;
      border: 1px solid var(--ds-border-strong);
      border-radius: 999px;
      padding: 0 1.5rem;
      min-height: 56px;
      background: var(--ds-bg);
      color: var(--color-text);
      font-family: inherit;
      font-size: 0.92rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s;
    }

    .hero-auth-social-btn:hover {
      background: var(--ds-surface-hover);
      color: var(--color-text);
    }

    .hero-auth-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-auth-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero-badge {
      display: inline-block;
      background: linear-gradient(120deg, #38bdf8, var(--color-primary));
      color: white;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      
      padding: 0.5rem 1.25rem;
      border-radius: 24px;
      margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
      .hero-surface {
        gap: 1.5rem;
        padding: 1rem 0;
      }
      .hero-auth {
        width: min(100%, 460px);
        padding: 1.5rem;
      }
      .hero h1 {
        font-size: 2.25rem;
      }
      .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 1.35rem;
      }
      .hero-purpose {
        font-size: 0.97rem;
      }
      .hero-purpose-list {
        gap: 0.55rem;
      }
      .hero-purpose-list span {
        width: 100%;
        justify-content: center;
      }
    }

    
    .features {
      max-width: calc(1200px + 3rem);
      margin: 0 auto;
      padding: 2.6rem 1.5rem 4rem;
      position: relative;
      z-index: 1;
    }

    .features h2 {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2.2rem;
      color: var(--color-text);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.1rem;
      align-items: stretch;
    }

    .feature-card {
      background: var(--color-surface);
      border: 1px solid rgba(15, 23, 42, 0.05);
      border-radius: 24px;
      padding: 1.65rem 1.4rem;
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr);
      grid-template-areas:
        "icon title"
        "icon text";
      column-gap: 0.9rem;
      row-gap: 0.45rem;
      align-items: start;
      text-align: left;
      height: 100%;
    }

    .feature-icon {
      grid-area: icon;
      display: block;
      width: 56px;
      height: 56px;
      color: var(--color-primary);
      fill: none;
      stroke: currentColor;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      background: rgba(14, 165, 233, 0.1);
      padding: 12px;
      border-radius: 16px;
    }

    .feature-card h3 {
      grid-area: title;
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.25;
      margin: 0;
      color: var(--color-text);
    }

    .feature-card p {
      grid-area: text;
      color: var(--ui-text-muted);
      line-height: 1.6;
      font-size: 0.95rem;
      margin: 0;
    }

    @media (max-width: 980px) {
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    
    .pricing {
      max-width: calc(var(--ds-content-max) + 3rem);
      margin: 0 auto;
      padding: 4rem 1.5rem;
      text-align: center;
      position: relative;
      isolation: isolate;
    }

    .pricing:before {
      display: none;
    }

    .pricing h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--color-text);
    }

    .pricing-subtitle {
      color: var(--ui-text-muted);
      font-size: 1.1rem;
      margin-bottom: 2.4rem;
    }

    .pricing-shell {
      max-width: var(--ds-content-max);
      margin: 0 auto;
      padding: 0;
      border-radius: 0;
      border: none;
      text-align: left;
      position: relative;
      background: transparent;
      box-shadow: none;
    }

    .pricing-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      align-items: stretch;
    }

    /* ── Card Base ── */
    .pricing-tier {
      display: flex;
      flex-direction: column;
      padding: 2.25rem 2rem;
      border-radius: 24px;
      border: 1px solid rgba(15,23,42,0.05);
      background: var(--color-surface);
      position: relative;
      overflow: hidden;
    }

    .pricing-tier.recommended {
      border: 1px solid rgba(15,23,42,0.05);
      background: var(--color-surface);
      z-index: 10;
    }

    .pricing-shared-tier {
      background: var(--color-surface);
    }

    /* ── Founders Ribbon ── */
    .tier-tag {
      position: absolute;
      top: 0;
      right: 0;
      padding: 0.45rem 1rem;
      border-radius: 0 24px 0 12px;
      background: var(--ui-brand-blue);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      z-index: 2;
    }

    /* ── Top: Icon + Name + Eyebrow ── */
    .tier-top {
      margin-bottom: 1.25rem;
    }

    .tier-name-row {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin-bottom: 0.35rem;
    }

    .tier-icon {
      width: 28px;
      height: 28px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .tier-name {
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--color-text);
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .tier-name-shared {
      font-size: 1.15rem;
      text-transform: none;
    }

    .pricing-eyebrow {
      margin: 0;
      color: var(--color-text);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    /* ── Price Block ── */
    .tier-price-block {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      margin-bottom: 1rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    }

    .tier-price {
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--color-text);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .tier-price-unit {
      font-size: 0.45em;
      font-weight: 600;
      color: var(--ui-text-muted);
      letter-spacing: 0;
    }

    .tier-price-original {
      font-size: 0.45em;
      color: var(--ui-text-muted);
      text-decoration: line-through;
      margin-right: 0.25rem;
      font-weight: 500;
      opacity: 0.7;
    }

    .tier-price-caption {
      font-size: 0.8rem;
      color: var(--ui-text-muted);
      font-weight: 600;
    }

    /* ── Description ── */
    .tier-summary {
      margin: 0 0 1.25rem;
      font-size: 0.92rem;
      color: var(--ui-text-soft);
      line-height: 1.55;
    }

    /* ── Feature Checklist ── */
    .tier-features {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      flex: 1;
    }

    .tier-features span {
      position: relative;
      display: block;
      padding-left: 1.1rem;
      font-size: 0.92rem;
      color: var(--ui-text-soft);
      line-height: 1.45;
    }

    .tier-features span:before {
      content: "•";
      position: absolute;
      left: 0;
      top: -0.1em;
      color: var(--color-text);
      font-weight: 700;
      font-size: 1.1rem;
    }

    /* ── Notes (shared card bottom) ── */
    .pricing-notes {
      border-top: 1px solid var(--ui-surface-border-color);
      padding-top: 1rem;
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      text-align: center;
      align-items: center;
    }

    .pricing-note {
      color: var(--ui-text-soft);
      font-size: 0.85rem;
      line-height: 1.5;
    }

    /* ── Responsive: Tablet ── */
    @media (max-width: 992px) {
      .pricing-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 480px;
        margin: 0 auto;
      }
    }

    /* ── Responsive: Mobile ── */
    @media (max-width: 480px) {
      .pricing-layout {
        gap: 1.25rem;
      }
      .pricing-tier {
        padding: 1.75rem 1.5rem;
      }
      .tier-price {
        font-size: 1.85rem;
      }
      .tier-name {
        font-size: 1.15rem;
      }
      .tier-icon {
        width: 32px;
        height: 32px;
      }
    }

    
    .dsp-section {
      max-width: calc(var(--ds-content-max) + 3rem);
      margin: 0 auto;
      padding: 4rem 1.5rem 5.25rem;
      text-align: center;
    }

    .dsp-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--color-text);
    }

    .dsp-lead {
      text-align: center;
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .dsp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      align-items: stretch;
      gap: 0.95rem;
      width: min(100%, 1200px);
      margin: 0 auto;
      padding: 1.15rem;
      background: var(--color-surface);
      border: 1px solid rgba(15,23,42,0.05);
      border-radius: 28px;
      box-sizing: border-box;
    }

    .dsp-badge {
      --dsp-badge-icon-size: 40px;
      --dsp-badge-gap: 0.85rem;
      display: grid;
      grid-template-columns: var(--dsp-badge-icon-size) max-content;
      align-items: center;
      justify-content: center;
      column-gap: var(--dsp-badge-gap);
      justify-items: center;
      padding: 0.68rem 1rem;
      background: rgba(15, 23, 42, 0.04);
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 999px; /* Pill shape */
      min-height: 72px;
      cursor: default;
      box-sizing: border-box;
      width: 100%;
      min-width: 0;
    }

    .dsp-badge .dsp-icon-wrap {
      display: inline-flex;
      flex-shrink: 0;
      width: var(--dsp-badge-icon-size);
      height: var(--dsp-badge-icon-size);
      border-radius: 0;
      border: none;
      background: transparent;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: visible;
      align-self: center;
      justify-self: center;
    }

    .dsp-badge .dsp-icon-mark {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      position: static;
      top: auto;
      left: auto;
      transform: none;
      margin: 0;
      filter: none;
      opacity: 1;
    }

    .dsp-badge .dsp-name {
      font-weight: 600;
      color: var(--ui-text-color);
      font-size: clamp(0.74rem, 0.7rem + 0.2vw, 0.88rem);
      line-height: 1.1;
      letter-spacing: 0.01em;
      white-space: nowrap;
      text-align: left;
      width: auto;
      max-width: none;
      min-height: 0;
      padding: 0;
      box-sizing: border-box;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-font-smoothing: antialiased;
      align-self: center;
      justify-self: start;
    }

    .dsp-badge .dsp-icon-wrap[class*="brand-"] {
      background: transparent;
      border-color: transparent;
    }
    .dsp-badge .dsp-icon-wrap .dsp-icon-mark,
    .dsp-badge .dsp-icon-wrap[class*="brand-"] .dsp-icon-mark {
      filter: none;
    }

    .dsp-badge .dsp-icon-fallback {
      display: none;
      width: 56px;
      height: 56px;
      border-radius: 0;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #fff;
      border: 1px solid transparent;
    }
    .dsp-badge .dsp-icon-wrap.is-fallback {
      border-radius: 14px;
      overflow: hidden;
      background: var(--ui-border-color-strong);
    }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-spotify { background: #1db954; }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-applemusic { background: #fa243c; }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-amazonmusic { background: #00a8e1; }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-tidal { background: #111827; }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-deezer { background: #a238ff; }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-pandora { background: #3668ff; }
    .dsp-badge .dsp-icon-wrap.is-fallback.brand-tiktok { background: #111111; }
    .dsp-badge .dsp-icon-wrap.is-fallback .dsp-icon-mark { display: none; }
    .dsp-badge .dsp-icon-wrap.is-fallback .dsp-icon-fallback { display: inline-flex; }

    .discovery-section {
      width: min(100%, var(--ds-content-max));
      margin: 5rem auto 0;
      background: var(--color-surface);
      border: 1px solid rgba(15,23,42,0.05);
      border-radius: 32px;
      padding: 4rem 2rem;
      display: grid;
      justify-items: center;
      row-gap: 1.25rem;
    }

    .discovery-section h2 {
      margin: 0;
    }

    .discovery-section p {
      color: var(--ui-text-muted);
      font-size: 1.04rem;
      margin: 0;
      max-width: 620px;
    }

    .discovery-service-logos {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      width: min(100%, 640px);
      margin: 1.5rem 0;
    }
    .discovery-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 62px;
      padding: 0;
      margin: 0;
    }

    .discovery-logo img {
      max-width: 100%;
      width: auto;
      height: 52px;
      display: block;
      object-fit: contain;
      filter: none; /* REMOVE GLOW */
    }
    .discovery-logo.discovery-logo-shazam img {
      height: 56px;
    }
    .discovery-logo.discovery-logo-acr {
      margin-top: 0;
    }
    .discovery-logo.discovery-logo-acr img {
      width: 196px;
      height: auto;
      max-width: 100%;
      filter: none; /* REMOVE GLOW */
    }
    .discovery-logo.discovery-logo-gracenote img {
      width: 168px;
      height: auto;
      max-width: 100%;
      filter: none; /* REMOVE GLOW */
    }
    .discovery-lyrics-cta {
      margin-top: 2rem;
      max-width: 640px;
      padding-top: 0;
      border-top: none; /* REMOVE BORDER */
      display: grid;
      justify-items: center;
      row-gap: 0.85rem;
      text-align: center;
    }
    .discovery-lyrics-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 0.5rem;
    }
    .discovery-lyrics-logo img {
      width: 220px;
      height: auto;
      display: block;
      object-fit: contain;
      filter: none; /* REMOVE GLOW */
    }
    .discovery-lyrics-cta h3 {
      margin: 0;
      font-size: 1.16rem;
      font-weight: 700;
      color: var(--color-text);
    }
    .discovery-lyrics-cta p {
      margin: 0;
      color: var(--color-text);
      font-size: 0.99rem;
      line-height: 1.56;
      max-width: 580px;
    }

    @media (max-width: 1080px) {
      .dsp-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
    }

    @media (max-width: 760px) {
      .pricing,
      .dsp-section {
        padding-inline: var(--ds-content-gutter-mobile);
      }

      .dsp-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        padding: 1rem;
      }
      .dsp-badge {
        --dsp-badge-icon-size: 38px;
        --dsp-badge-gap: 0.78rem;
        min-height: 68px;
        padding: 0.6rem 1rem;
      }
      .dsp-badge .dsp-name {
        font-size: clamp(0.72rem, 0.67rem + 0.28vw, 0.82rem);
        min-height: 0;
      }
      .discovery-service-logos {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        margin: 1rem 0;
      }
      .discovery-logo {
        min-height: 56px;
      }
      .discovery-logo img {
        height: 46px;
      }
      .discovery-logo.discovery-logo-shazam img {
        height: 50px;
      }
      .discovery-logo.discovery-logo-acr img {
        width: 176px;
        height: auto;
      }
      .discovery-logo.discovery-logo-gracenote img {
        width: 154px;
        height: auto;
      }
      .discovery-lyrics-logo img {
        width: 196px;
      }
      .discovery-lyrics-cta {
        margin-top: 1.5rem;
        row-gap: 0.62rem;
      }
      .discovery-section {
        margin: 3rem 0 0;
        row-gap: 1.15rem;
        padding: 3rem 1.5rem;
        border-radius: 28px;
        width: auto;
      }
    }

    @media (max-width: 430px) {
      .pricing-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
      .dsp-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0.75rem;
      }
      .dsp-badge {
        --dsp-badge-icon-size: 36px;
        --dsp-badge-gap: 0.72rem;
        min-height: 64px;
        width: 100%;
        flex-basis: auto;
        padding: 0.62rem 0.88rem;
      }
      .dsp-badge .dsp-name {
        font-size: clamp(0.74rem, 0.71rem + 0.24vw, 0.82rem);
        font-weight: 700;
        min-height: 0;
      }
      .discovery-service-logos {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        margin: 1rem 0;
      }
      .discovery-logo {
        min-height: 54px;
      }
      .discovery-logo img {
        height: 42px;
      }
      .discovery-logo.discovery-logo-shazam img {
        height: 44px;
      }
      .discovery-logo.discovery-logo-acr img {
        width: 156px;
        height: auto;
      }
      .discovery-logo.discovery-logo-gracenote img {
        width: 142px;
        height: auto;
      }
      .discovery-lyrics-logo img {
        width: 172px;
      }
      .discovery-lyrics-cta {
        margin-top: 1rem;
        row-gap: 0.54rem;
      }
      .discovery-section {
        width: auto;
        margin: 2.5rem 0 0;
        row-gap: 0.85rem;
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
      }
    }

    footer {
      background: white;
      border-top: 1px solid rgba(15, 23, 42, 0.05);
      padding: 3rem 1.5rem 2rem;
      margin-top: 0;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-size: 0.9rem;
      font-weight: 600;
      
      letter-spacing: 0.05em;
      color: var(--color-text);
      margin-bottom: 1rem;
    }

    .footer-section ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-section li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      color: var(--color-text);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-section a:hover {
      color: var(--color-primary);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(15, 23, 42, 0.05);
      text-align: left;
    }

    .footer-bottom p {
      color: var(--color-text);
      font-size: 0.85rem;
    }

    /* ── FLAT DESIGN OVERRIDES ── */
    body {
      --ui-text-color: var(--color-text);
      --ui-text-soft: var(--color-text);
      --ui-text-muted: var(--color-text);
    }
    .hero h1, .hero p.subtitle, .features h2, .feature-card h3, .pricing h2, .tier-name, .pricing-eyebrow, .tier-price, .tier-features span:before, .dsp-section h2, .discovery-lyrics-cta h3, .footer-section h3, .footer-section a, .footer-bottom p, .header-account-item {
      color: var(--color-text) !important;
    }
    .tier-tag {
      background: var(--ui-brand-blue) !important;
    }
