
  :root {
    --gold: #39ff85;
    --gold-light: #7fffa8;
    --gold-dark: #1a8a45;
    --black: #020d18;
    --surface: #071525;
    --surface-2: #0b1e30;
    --surface-3: #102840;
    --text: #f0f6ff;
    --text-muted: #6a8aaa;
    --border: rgba(57,255,133,0.15);
    --border-bright: rgba(57,255,133,0.4);
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 15px;
    overflow-x: hidden;
    cursor: none;
  }

  .cursor {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.12s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(57,255,133,0.55);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94), width 0.3s, height 0.3s;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    background: rgba(2,13,24,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    letter-spacing: 0.3em; color: var(--gold);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
  }
  .nav-logo span { font-weight: 300; color: var(--text); }
  .nav-logo-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); background: #020d18;
    border: 1px solid var(--gold);
    padding: 5px 12px;
    box-shadow: 0 0 12px rgba(57,255,133,0.4), 0 0 24px rgba(57,255,133,0.15);
    text-shadow: 0 0 8px rgba(57,255,133,0.8);
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: #7aaccc;
    font-size: 12px; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase; transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 11px 28px;
    background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    border: none; cursor: none; transition: background 0.25s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 130px 60px 70px 60px;
    position: relative; z-index: 2;
    background: linear-gradient(to right, var(--black) 75%, transparent);
  }
  .hero-flag {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
  }
  .flag-maple {
    font-size: 18px; line-height: 1;
  }
  .flag-text {
    font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 5.5vw, 84px);
    font-weight: 300; line-height: 1.05;
    color: var(--white);
    opacity: 0; animation: fadeUp 0.85s 0.4s forwards;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-tagline {
    margin-top: 22px;
    font-size: 15px; font-weight: 300;
    letter-spacing: 0.05em; color: #cce6ff;
    line-height: 1.85; max-width: 430px;
    opacity: 0; animation: fadeUp 0.85s 0.6s forwards;
  }
  .hero-badges {
    margin-top: 32px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.85s 0.75s forwards;
  }
  .badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(57,255,133,0.08);
    border: 1px solid var(--border-bright);
    padding: 9px 18px;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-light);
  }
  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #e74c3c;
    box-shadow: 0 0 8px rgba(231,76,60,0.8);
    animation: pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
  }
  .hero-stats {
    display: flex; gap: 44px; margin-top: 44px;
    opacity: 0; animation: fadeUp 0.85s 0.9s forwards;
  }
  .stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 400; color: var(--white); line-height: 1;
  }
  .stat-desc {
    font-size: 10px; letter-spacing: 0.06em;
    color: var(--gold-dark); margin-top: 5px;
    line-height: 1.5; max-width: 130px;
  }
  .stat-label {
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--text-muted); margin-top: 5px;
  }
  .stat-divider { width: 1px; background: var(--border); align-self: stretch; }
  .hero-ctas {
    margin-top: 48px; display: flex; gap: 18px; align-items: center;
    opacity: 0; animation: fadeUp 0.85s 1.05s forwards;
  }
  .btn-primary {
    padding: 15px 38px; background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: none;
    position: relative; overflow: hidden; transition: none;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-ghost {
    padding: 15px 32px;
    border: 1px solid var(--border-bright);
    color: var(--gold); background: transparent;
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    cursor: none; transition: all 0.28s;
    text-decoration: none;
  }
  .btn-ghost:hover { background: rgba(57,255,133,0.06); }

  .hero-right {
    position: relative;
    background: var(--surface);
    display: flex; align-items: flex-end; justify-content: flex-end; overflow: hidden;
    padding: 0 0 0 0;
  }
  .hero-right-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(57,255,133,0.05) 0%, transparent 65%);
  }
  /* Fleur de lys watermark */
  .hero-watermark {
    position: absolute;
    font-size: 420px; line-height: 1;
    color: rgba(57,255,133,0.07);
    user-select: none; pointer-events: none;
    font-family: serif;
    top: 50%; left: 35%;
    transform: translate(-50%, -50%);
  }
  .screen-mockup {
    width: 380px;
    background: #030f1c;
    border: 1px solid rgba(57,255,133,0.32);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(57,255,133,0.08);
    position: relative; z-index: 2;
    opacity: 0; animation: fadeIn 1s 0.6s forwards;
  }
  .mockup-bar {
    background: #061220;
    border-bottom: 1px solid rgba(57,255,133,0.12);
    padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .mockup-bar-left { display: flex; align-items: center; gap: 8px; }
  .mockup-dot { width: 6px; height: 6px; border-radius: 50%; }
  .mockup-title { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
  .mockup-body { padding: 14px; }
  .mockup-now-playing {
    background: linear-gradient(135deg, #071e30, #041525);
    border: 1px solid rgba(57,255,133,0.22);
    border-radius: 3px; padding: 14px 16px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 14px;
  }
  .now-play-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .now-play-icon svg { width: 14px; height: 14px; fill: var(--black); }
  .now-play-info { flex: 1; min-width: 0; }
  .now-play-channel { font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
  .now-play-show { font-size: 11px; color: var(--white); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .now-play-live { display: flex; align-items: center; gap: 5px; margin-top: 4px; }
  .channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ch-item {
    background: #071828;
    border: 1px solid rgba(57,255,133,0.1);
    border-radius: 3px; padding: 10px 8px;
    text-align: center; cursor: none;
    transition: border-color 0.25s;
    position: relative;
  }
  .ch-item.active { border-color: rgba(57,255,133,0.48); }
  .ch-item.active::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); border-radius: 3px 3px 0 0;
  }
  .ch-flag { font-size: 16px; margin-bottom: 4px; }
  .ch-name { font-size: 8px; letter-spacing: 0.1em; color: #5a8aaa; text-transform: uppercase; }
  .ch-item.active .ch-name { color: var(--gold-light); }
  .ch-live-badge {
    position: absolute; top: 5px; right: 5px;
    width: 5px; height: 5px; border-radius: 50%;
    background: #e74c3c;
  }

  /* MARQUEE */
  .marquee-bar {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 13px 0; overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 70px;
    animation: marquee 26s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-size: 11px; letter-spacing: 0.25em;
    text-transform: uppercase; color: #5a8aaa;
    display: flex; align-items: center; gap: 18px;
  }
  .marquee-item::before { content: '◆'; color: var(--gold); font-size: 5px; }

  /* SECTION HEADERS */
  .section-header {
    text-align: center; padding: 100px 60px 20px;
  }
  .section-eyebrow {
    font-size: 11px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; flex: 0 0 32px; height: 1px; background: var(--gold-dark);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 62px); font-weight: 300; line-height: 1.08;
    color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-sub {
    margin-top: 16px; font-size: 15px; color: var(--text-muted);
    letter-spacing: 0.05em; line-height: 1.8;
  }

  /* PLAN SECTIONS */
  .plan-section { padding: 60px 60px 0; }
  .plan-section:last-of-type { padding-bottom: 120px; }

  .plan-divider {
    display: flex; align-items: center; gap: 24px; margin-bottom: 40px;
  }
  .plan-divider-line { flex: 1; height: 1px; background: var(--border); }
  .plan-divider-label {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .plan-divider-label span {
    font-size: 26px; font-weight: 600; color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
  }

  /* PLAN CARD — single centered */
  .plan-card-wrap {
    display: flex; justify-content: center;
  }
  .plan-card {
    background: var(--surface);
    border: 1px solid var(--border-bright);
    max-width: 1000px; width: 100%;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .plan-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .plan-card-left {
    padding: 52px 56px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .plan-card-right {
    padding: 52px 56px;
    background: var(--surface-2);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .plan-top-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gold); color: var(--black);
    font-size: 7px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 4px 10px;
  }
  .plan-icon-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  }
  .plan-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--border-bright);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .plan-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
  .plan-type { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
  .plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 400; color: var(--white);
    line-height: 1.1; margin-bottom: 8px;
  }
  .plan-name em { font-style: italic; color: var(--gold-light); }
  .plan-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; }
  .plan-features { list-style: none; flex: 1; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(57,255,133,0.06);
    font-size: 13px; color: #b8d8f0; line-height: 1.5;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: '✓'; color: var(--gold);
    font-size: 10px; font-weight: 600;
    flex-shrink: 0; margin-top: 1px;
  }
  .plan-features li strong { color: #7aaccc; font-weight: 600; }
  .plan-qc-highlight {
    margin-top: 20px; padding: 14px 16px;
    background: rgba(57,255,133,0.05);
    border: 1px solid rgba(57,255,133,0.15);
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--gold-light); letter-spacing: 0.05em;
  }
  .plan-price-block { margin-bottom: 32px; }
  .plan-price-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
  .plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px; font-weight: 300; color: var(--white); line-height: 1;
  }
  .plan-price sup { font-size: 24px; color: var(--gold); vertical-align: super; }
  .plan-price-period { font-size: 13px; color: var(--text-muted); margin-top: 8px; letter-spacing: 0.08em; }
  .plan-price-per-month {
    margin-top: 10px;
    font-size: 13px; color: var(--gold);
    letter-spacing: 0.1em;
  }
  .plan-savings {
    background: rgba(57,255,133,0.06);
    border: 1px solid rgba(57,255,133,0.22);
    padding: 10px 14px; margin-bottom: 28px;
    font-size: 12px; color: var(--gold-light);
    letter-spacing: 0.06em; line-height: 1.6;
  }
  .plan-cta {
    width: 100%;
    padding: 15px;
    background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: none;
    position: relative; overflow: hidden;
    transition: none;
  }
  .plan-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .plan-cta:hover::before { transform: translateX(0); }
  .plan-cta span { position: relative; z-index: 1; }
  .plan-note {
    margin-top: 14px;
    font-size: 11px; color: var(--text-muted);
    line-height: 1.7; letter-spacing: 0.04em;
    text-align: center;
  }

  /* TRUST BAND */
  .trust-band {
    margin: 0 60px 120px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 60px 80px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative; overflow: hidden;
  }
  .trust-band::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  }
  .trust-item {
    padding: 0 40px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: none; padding-right: 0; }
  .trust-icon { font-size: 28px; margin-bottom: 14px; }
  .trust-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; color: var(--white); line-height: 1;
    margin-bottom: 6px;
  }
  .trust-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 72px 60px 36px; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
  .footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.9; max-width: 280px; }
  .footer-col-title {
    font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 11px; }
  .footer-links a {
    text-decoration: none; color: #5a8aaa;
    font-size: 13px; transition: color 0.25s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
  .footer-payments { display: flex; gap: 10px; }
  .pay-chip {
    padding: 5px 11px; border: 1px solid var(--border);
    font-size: 8px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(231,76,60,0.8); }
    50% { opacity: 0.4; box-shadow: 0 0 3px rgba(231,76,60,0.3); }
  }


  /* CONTENT SLIDER */
  .content-slider-wrap {
    width: 380px; position: relative; z-index: 2;
    opacity: 0; animation: fadeIn 1s 0.6s forwards;
    align-self: flex-end;
    margin-bottom: 40px;
    margin-right: 20px;
  }
  .slider-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .content-slider {
    width: 100%; overflow: hidden;
    border: 1px solid var(--border-bright);
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(57,255,133,0.08);
  }
  .slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .slide-card {
    min-width: 440px; height: 290px;
    position: relative; overflow: hidden;
    padding: 28px 32px;
    display: flex; flex-direction: column; justify-content: flex-end;
    flex-shrink: 0;
  }
  .slide-bg {
    position: absolute; inset: 0;
    transition: transform 0.8s ease;
  }
  .slide-card:hover .slide-bg { transform: scale(1.05); }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(2,13,24,0.75) 0%, rgba(2,13,24,0.2) 50%, transparent 100%),
                linear-gradient(to top, rgba(2,13,24,0.95) 0%, rgba(2,13,24,0.4) 40%, transparent 70%);
  }
  .slide-badge {
    position: absolute; top: 20px; left: 20px;
    background: rgba(57,255,133,0.15);
    border: 1px solid rgba(57,255,133,0.4);
    padding: 5px 12px;
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    position: relative; z-index: 3;
    align-self: flex-start; margin-bottom: 10px;
  }
  .slide-category {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    position: relative; z-index: 2;
  }
  .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; color: var(--white);
    line-height: 1.2; margin-bottom: 8px;
    position: relative; z-index: 2;
  }
  .slide-desc {
    font-size: 11px; color: rgba(240,246,255,0.75); letter-spacing: 0.06em;
    margin-bottom: 5px;
    position: relative; z-index: 2;
  }
  .slide-platforms {
    font-size: 10px; color: var(--gold-dark); letter-spacing: 0.08em;
    position: relative; z-index: 2;
  }
  .slider-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 14px;
  }
  .sdot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border-bright); cursor: none; transition: all 0.3s;
  }
  .sdot.active { background: var(--gold); width: 24px; border-radius: 3px; }

  /* SECTION HEADERS */
  .section-header {
    text-align: center; padding: 100px 60px 20px;
  }
  .section-eyebrow {
    font-size: 11px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; flex: 0 0 32px; height: 1px; background: var(--gold-dark);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 62px); font-weight: 300; line-height: 1.08;
    color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-sub {
    margin-top: 16px; font-size: 15px; color: var(--text-muted);
    letter-spacing: 0.05em; line-height: 1.8;
  }

  /* PLAN SECTIONS */
  .plan-section { padding: 60px 60px 0; }
  .plan-section:last-of-type { padding-bottom: 120px; }

  .plan-divider {
    display: flex; align-items: center; gap: 24px; margin-bottom: 40px;
  }
  .plan-divider-line { flex: 1; height: 1px; background: var(--border); }
  .plan-divider-label {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .plan-divider-label span {
    font-size: 26px; font-weight: 600; color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
  }

  /* PLAN CARD — single centered */
  .plan-card-wrap {
    display: flex; justify-content: center;
  }
  .plan-card {
    background: var(--surface);
    border: 1px solid var(--border-bright);
    max-width: 1000px; width: 100%;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .plan-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .plan-card-left {
    padding: 52px 56px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .plan-card-right {
    padding: 52px 56px;
    background: var(--surface-2);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .plan-top-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gold); color: var(--black);
    font-size: 7px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 4px 10px;
  }
  .plan-icon-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  }
  .plan-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--border-bright);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .plan-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
  .plan-type { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
  .plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 400; color: var(--white);
    line-height: 1.1; margin-bottom: 8px;
  }
  .plan-name em { font-style: italic; color: var(--gold-light); }
  .plan-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; }
  .plan-features { list-style: none; flex: 1; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(57,255,133,0.06);
    font-size: 13px; color: #b8d8f0; line-height: 1.5;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: '✓'; color: var(--gold);
    font-size: 10px; font-weight: 600;
    flex-shrink: 0; margin-top: 1px;
  }
  .plan-features li strong { color: #7aaccc; font-weight: 600; }
  .plan-qc-highlight {
    margin-top: 20px; padding: 14px 16px;
    background: rgba(57,255,133,0.05);
    border: 1px solid rgba(57,255,133,0.15);
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--gold-light); letter-spacing: 0.05em;
  }
  .plan-price-block { margin-bottom: 32px; }
  .plan-price-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
  .plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px; font-weight: 300; color: var(--white); line-height: 1;
  }
  .plan-price sup { font-size: 24px; color: var(--gold); vertical-align: super; }
  .plan-price-period { font-size: 13px; color: var(--text-muted); margin-top: 8px; letter-spacing: 0.08em; }
  .plan-price-per-month {
    margin-top: 10px;
    font-size: 13px; color: var(--gold);
    letter-spacing: 0.1em;
  }
  .plan-savings {
    background: rgba(57,255,133,0.06);
    border: 1px solid rgba(57,255,133,0.22);
    padding: 10px 14px; margin-bottom: 28px;
    font-size: 12px; color: var(--gold-light);
    letter-spacing: 0.06em; line-height: 1.6;
  }
  .plan-cta {
    width: 100%;
    padding: 15px;
    background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: none;
    position: relative; overflow: hidden;
    transition: none;
  }
  .plan-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .plan-cta:hover::before { transform: translateX(0); }
  .plan-cta span { position: relative; z-index: 1; }
  .plan-note {
    margin-top: 14px;
    font-size: 11px; color: var(--text-muted);
    line-height: 1.7; letter-spacing: 0.04em;
    text-align: center;
  }

  /* TRUST BAND */
  .trust-band {
    margin: 0 60px 120px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 60px 80px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative; overflow: hidden;
  }
  .trust-band::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  }
  .trust-item {
    padding: 0 40px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: none; padding-right: 0; }
  .trust-icon { font-size: 28px; margin-bottom: 14px; }
  .trust-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; color: var(--white); line-height: 1;
    margin-bottom: 6px;
  }
  .trust-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 72px 60px 36px; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
  .footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.9; max-width: 280px; }
  .footer-col-title {
    font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 11px; }
  .footer-links a {
    text-decoration: none; color: #5a8aaa;
    font-size: 13px; transition: color 0.25s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
  .footer-payments { display: flex; gap: 10px; }
  .pay-chip {
    padding: 5px 11px; border: 1px solid var(--border);
    font-size: 8px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(231,76,60,0.8); }
    50% { opacity: 0.4; box-shadow: 0 0 3px rgba(231,76,60,0.3); }
  }


  /* CONTENT SLIDER */
  .content-slider-wrap {
    width: 420px; position: relative; z-index: 2;
    opacity: 0; animation: fadeIn 1s 0.6s forwards;
  }
  .slider-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .content-slider {
    width: 100%; overflow: hidden;
    border: 1px solid var(--border-bright);
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
  }
  .slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .slide-card {
    min-width: 420px; height: 260px;
    position: relative; overflow: hidden;
    padding: 32px 36px;
    display: flex; flex-direction: column; justify-content: flex-end;
    flex-shrink: 0;
  }
  .slide-bg {
    position: absolute; inset: 0;
    transition: transform 0.7s ease;
  }
  .slide-card:hover .slide-bg { transform: scale(1.04); }
  .slide-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  }
  .slide-category {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    position: relative; z-index: 2;
  }
  .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; color: var(--white);
    line-height: 1.15; margin-bottom: 8px;
    position: relative; z-index: 2;
  }
  .slide-meta {
    font-size: 12px; color: #c0b8a8; letter-spacing: 0.06em;
    margin-bottom: 6px;
    position: relative; z-index: 2;
  }
  .slide-platforms {
    font-size: 11px; color: var(--gold-dark); letter-spacing: 0.1em;
    position: relative; z-index: 2;
  }
  .slider-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 14px;
  }
  .sdot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border-bright); cursor: none; transition: all 0.3s;
  }
  .sdot.active { background: var(--gold); width: 20px; border-radius: 3px; }

    /* SECTION HEADERS */
  .section-header {
    text-align: center; padding: 100px 60px 20px;
  }
  .section-eyebrow {
    font-size: 11px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; flex: 0 0 32px; height: 1px; background: var(--gold-dark);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 62px); font-weight: 300; line-height: 1.08;
    color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-sub {
    margin-top: 16px; font-size: 15px; color: var(--text-muted);
    letter-spacing: 0.05em; line-height: 1.8;
  }

  /* PLAN SECTIONS */
  .plan-section { padding: 60px 60px 0; }
  .plan-section:last-of-type { padding-bottom: 120px; }

  .plan-divider {
    display: flex; align-items: center; gap: 24px; margin-bottom: 40px;
  }
  .plan-divider-line { flex: 1; height: 1px; background: var(--border); }
  .plan-divider-label {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted);
  }
  .plan-divider-label span {
    font-size: 26px; font-weight: 600; color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
  }

  /* PLAN CARD — single centered */
  .plan-card-wrap {
    display: flex; justify-content: center;
  }
  .plan-card {
    background: var(--surface);
    border: 1px solid var(--border-bright);
    max-width: 1000px; width: 100%;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .plan-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .plan-card-left {
    padding: 52px 56px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .plan-card-right {
    padding: 52px 56px;
    background: var(--surface-2);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .plan-top-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gold); color: var(--black);
    font-size: 7px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 4px 10px;
  }
  .plan-icon-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  }
  .plan-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--border-bright);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .plan-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
  .plan-type { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
  .plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 400; color: var(--white);
    line-height: 1.1; margin-bottom: 8px;
  }
  .plan-name em { font-style: italic; color: var(--gold-light); }
  .plan-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; }
  .plan-features { list-style: none; flex: 1; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(57,255,133,0.06);
    font-size: 13px; color: #b8d8f0; line-height: 1.5;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: '✓'; color: var(--gold);
    font-size: 10px; font-weight: 600;
    flex-shrink: 0; margin-top: 1px;
  }
  .plan-features li strong { color: #7aaccc; font-weight: 600; }
  .plan-qc-highlight {
    margin-top: 20px; padding: 14px 16px;
    background: rgba(57,255,133,0.05);
    border: 1px solid rgba(57,255,133,0.15);
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--gold-light); letter-spacing: 0.05em;
  }
  .plan-price-block { margin-bottom: 32px; }
  .plan-price-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
  .plan-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px; font-weight: 300; color: var(--white); line-height: 1;
  }
  .plan-price sup { font-size: 24px; color: var(--gold); vertical-align: super; }
  .plan-price-period { font-size: 13px; color: var(--text-muted); margin-top: 8px; letter-spacing: 0.08em; }
  .plan-price-per-month {
    margin-top: 10px;
    font-size: 13px; color: var(--gold);
    letter-spacing: 0.1em;
  }
  .plan-savings {
    background: rgba(57,255,133,0.06);
    border: 1px solid rgba(57,255,133,0.22);
    padding: 10px 14px; margin-bottom: 28px;
    font-size: 12px; color: var(--gold-light);
    letter-spacing: 0.06em; line-height: 1.6;
  }
  .plan-cta {
    width: 100%;
    padding: 15px;
    background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: none;
    position: relative; overflow: hidden;
    transition: none;
  }
  .plan-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .plan-cta:hover::before { transform: translateX(0); }
  .plan-cta span { position: relative; z-index: 1; }
  .plan-note {
    margin-top: 14px;
    font-size: 11px; color: var(--text-muted);
    line-height: 1.7; letter-spacing: 0.04em;
    text-align: center;
  }

  /* TRUST BAND */
  .trust-band {
    margin: 0 60px 120px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 60px 80px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative; overflow: hidden;
  }
  .trust-band::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  }
  .trust-item {
    padding: 0 40px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-right: none; padding-right: 0; }
  .trust-icon { font-size: 28px; margin-bottom: 14px; }
  .trust-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; color: var(--white); line-height: 1;
    margin-bottom: 6px;
  }
  .trust-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 72px 60px 36px; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
  .footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.9; max-width: 280px; }
  .footer-col-title {
    font-size: 11px; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 11px; }
  .footer-links a {
    text-decoration: none; color: #5a8aaa;
    font-size: 13px; transition: color 0.25s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
  .footer-payments { display: flex; gap: 10px; }
  .pay-chip {
    padding: 5px 11px; border: 1px solid var(--border);
    font-size: 8px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-muted);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(231,76,60,0.8); }
    50% { opacity: 0.4; box-shadow: 0 0 3px rgba(231,76,60,0.3); }
  }

  /* CONTENT SLIDER */
  .content-slider-wrap {
    width: 420px; position: relative; z-index: 2;
    opacity: 0; animation: fadeIn 1s 0.6s forwards;
  }
  .slider-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .content-slider {
    width: 100%; overflow: hidden;
    border: 1px solid var(--border-bright);
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.6);
  }
  .slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .slide-card {
    min-width: 420px; height: 260px;
    position: relative; overflow: hidden;
    padding: 32px 36px;
    display: flex; flex-direction: column; justify-content: flex-end;
    flex-shrink: 0;
  }
  .slide-bg {
    position: absolute; inset: 0;
    transition: transform 0.7s ease;
  }
  .slide-card:hover .slide-bg { transform: scale(1.04); }
  .slide-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  }
  .slide-category {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
    position: relative; z-index: 2;
  }
  .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; color: var(--white);
    line-height: 1.15; margin-bottom: 8px;
    position: relative; z-index: 2;
  }
  .slide-meta {
    font-size: 10px; color: #b8d8f0; letter-spacing: 0.06em;
    margin-bottom: 6px;
    position: relative; z-index: 2;
  }
  .slide-platforms {
    font-size: 11px; color: var(--gold-dark); letter-spacing: 0.1em;
    position: relative; z-index: 2;
  }
  .slider-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 14px;
  }
  .sdot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border-bright); cursor: none; transition: all 0.3s;
  }
  .sdot.active { background: var(--gold); width: 20px; border-radius: 3px; }

