  :root {
    
    --navy-deep: #060E26;
    --navy: #0B1840;
    --navy-2: #0F1F4F;
    --bg: #0A1230;
    --bg-2: #0C1738;
    --surface: #142150;
    --surface-2: #1A2A60;
    --surface-3: #223370;
    --hairline: rgba(200, 220, 255, 0.08);
    --hairline-strong: rgba(200, 220, 255, 0.16);

    --text: #F3F7FF;
    --text-muted: #8FA0C4;
    --text-dim: #4E5E85;

    --cyan: #1FB6E0;        
    --cyan-bright: #34CDF5;  
    --cyan-dim: #1390B6;
    --cyan-soft: rgba(31, 182, 224, 0.14);

    --coral: #FB7155;        
    --coral-bright: #FF8A6F;
    --coral-dim: #C9543B;
    --coral-soft: rgba(251, 113, 85, 0.14);

    --live: #FF3B30;

    --sans: 'Geist', system-ui, sans-serif;
    --mono: 'Geist Mono', 'JetBrains Mono', monospace;
    --container: 1320px;
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    letter-spacing: -0.005em;
  }
  ::selection {
    background: rgba(31, 182, 224, 0.35);
    color: var(--text);
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
      radial-gradient(50% 40% at 10% 20%, rgba(251, 113, 85, 0.04) 0%, transparent 60%),
      radial-gradient(50% 40% at 90% 80%, rgba(31, 182, 224, 0.05) 0%, transparent 60%);
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
  }

  .mono { font-family: var(--mono); font-feature-settings: 'tnum' 1; }
  .num, [data-count], .plan-price .amount, .trust-num, .ch-num,
  .player-controls-row .mono, .epg-time, .live-stats-num {
    font-feature-settings: 'tnum' 1, 'cv11' 1;
    font-variant-numeric: tabular-nums;
  }

  
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 18, 48, 0.78);
    border-bottom: 1px solid var(--hairline);
  }
  .nav::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(31, 182, 224, 0.45) 30%, rgba(251, 113, 85, 0.35) 70%, transparent 100%);
    pointer-events: none;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 32px;
  }
  .logo {
    display: flex;
    align-items: center;
    height: 56px;
  }
  .logo svg,
  .logo img { height: 100%; width: auto; display: block; }
  .nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    font-size: 14px;
    margin-left: auto;
  }
  .nav-links a {
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: all 200ms var(--ease);
    display: inline-block;
  }
  .nav-links a:hover {
    color: var(--text);
    background: var(--surface);
  }
  .nav-links a:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
    color: var(--text);
  }
  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .login {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 12px;
    transition: color 200ms ease;
  }
  .login:hover { color: var(--text); }

  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    border: none;
    transition: all 200ms var(--ease);
    line-height: 1;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(180deg, var(--cyan-bright) 0%, var(--cyan) 100%);
    color: var(--navy-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 18px -2px rgba(31, 182, 224, 0.45);
    font-weight: 600;
  }
  .btn-primary:hover {
    background: linear-gradient(180deg, #4FD4F9 0%, var(--cyan-bright) 100%);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 24px -4px rgba(31, 182, 224, 0.65);
  }
  .btn-primary:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 8px -2px rgba(31, 182, 224, 0.4);
    transition-duration: 80ms;
  }
  .btn-primary:focus-visible {
    outline: 2px solid var(--cyan-bright);
    outline-offset: 3px;
  }
  .btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--hairline-strong);
  }
  .btn-ghost:hover {
    background: var(--surface-2);
    border-color: rgba(200, 220, 255, 0.24);
  }
  .btn-ghost:active {
    transform: translateY(1px);
    background: var(--surface);
    transition-duration: 80ms;
  }
  .btn-ghost:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
  }
  .btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }

  
  .hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background:
      radial-gradient(55% 55% at 100% 5%, rgba(31, 182, 224, 0.32) 0%, transparent 55%),
      radial-gradient(50% 55% at 0% 90%, rgba(251, 113, 85, 0.24) 0%, transparent 60%),
      radial-gradient(35% 35% at 50% 50%, rgba(31, 182, 224, 0.08) 0%, transparent 70%),
      linear-gradient(180deg, var(--navy-deep) 0%, var(--bg) 80%);
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(200, 220, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200, 220, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    background-position: -1px -1px;
    mask-image: radial-gradient(60% 50% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(60% 50% at 50% 30%, black, transparent);
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .hero-tag .tag-pill {
    background: var(--coral-soft);
    color: var(--coral);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-family: var(--mono);
  }
  .hero h1 {
    font-size: clamp(40px, 5.2vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 600;
    margin-bottom: 24px;
    text-wrap: balance;
  }
  .hero h1 .accent {
    color: var(--cyan);
  }
  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 46ch;
    line-height: 1.55;
    margin-bottom: 36px;
    font-weight: 400;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .hero-bullets {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .hero-bullets-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-bullets-item .num {
    font-family: var(--mono);
    color: var(--coral);
    font-size: 16px;
    font-weight: 500;
  }

  
  .player-wrap { position: relative; }
  .player-mock {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--hairline-strong);
    box-shadow:
      0 40px 80px -20px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(31, 182, 224, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .player-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2540 0%, #0a1230 50%, #142150 100%);
  }
  .player-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.15) contrast(1.05);
  }
  .player-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 48, 0.5) 0%, transparent 30%, rgba(10, 18, 48, 0.92) 100%);
  }
  .player-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
  }
  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--coral-soft);
    border: 1px solid rgba(251, 113, 85, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--coral);
    font-family: var(--mono);
  }
  .live-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse-dot 1.8s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(251, 113, 85, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(251, 113, 85, 0); }
  }
  .player-quality {
    display: flex;
    gap: 6px;
  }
  .quality-chip {
    background: rgba(6, 14, 38, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--hairline-strong);
    padding: 4px 8px;
    border-radius: 5px;
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .quality-chip.active {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: transparent;
    font-weight: 500;
  }
  .player-info {
    position: absolute;
    bottom: 90px;
    left: 22px;
    right: 22px;
    z-index: 2;
  }
  .player-info .show-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .player-info h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--text);
  }
  .player-info .desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
  }
  .player-controls {
    position: absolute;
    bottom: 18px;
    left: 22px;
    right: 22px;
    z-index: 2;
  }
  .player-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
  }
  .player-progress-fill {
    width: 42%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan) 0%, #6BCEEC 100%);
    box-shadow: 0 0 10px rgba(31, 182, 224, 0.7);
  }
  .player-progress-dot {
    position: absolute;
    left: 42%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(31, 182, 224, 0.25);
  }
  .player-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
  }
  .player-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .pbtn {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
    transition: background 200ms ease;
    background: transparent;
    border: none;
  }
  .pbtn:hover { background: rgba(255, 255, 255, 0.08); }
  .pbtn.play {
    background: var(--cyan);
    color: var(--navy-deep);
    width: 32px; height: 32px;
  }
  .pbtn.play:hover { background: var(--cyan-bright); }

  
  .epg-card {
    position: absolute;
    bottom: -24px;
    right: -28px;
    width: 280px;
    background: var(--surface-2);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--r);
    padding: 16px;
    z-index: 3;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
  }
  .epg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hairline);
  }
  .epg-header h4 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .epg-header .ch-name {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--cyan);
  }
  .epg-list { display: grid; gap: 4px; }
  .epg-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 8px;
    transition: background 200ms ease;
    cursor: pointer;
  }
  .epg-item:hover { background: var(--surface-3); }
  .epg-item.active {
    background: linear-gradient(90deg, rgba(31, 182, 224, 0.18) 0%, rgba(31, 182, 224, 0.06) 100%);
    border-left: 2px solid var(--cyan);
    padding-left: 4px;
  }
  .epg-time {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    align-self: center;
  }
  .epg-item.active .epg-time { color: var(--cyan); }
  .epg-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .epg-title {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .epg-channel {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.02em;
  }

  
  .feature-pill {
    position: absolute;
    top: -16px;
    left: -28px;
    background: var(--surface-2);
    border: 1px solid var(--hairline-strong);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5);
    z-index: 3;
  }
  .feature-pill .icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--coral-soft);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-pill .info {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .feature-pill .label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .feature-pill .val {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  
  section { padding: 100px 0; position: relative; scroll-margin-top: 80px; }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 56px;
  }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 1px;
  }
  .section-eyebrow.warm { color: var(--coral); }
  .section-eyebrow.warm::before { background: var(--coral); }
  .section-title {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 600;
    max-width: 20ch;
  }
  .section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.55;
    max-width: 42ch;
  }

  
  .marquee-wrap {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background:
      radial-gradient(40% 200% at 20% 50%, rgba(251, 113, 85, 0.08) 0%, transparent 60%),
      radial-gradient(40% 200% at 80% 50%, rgba(31, 182, 224, 0.08) 0%, transparent 60%),
      var(--bg-2);
    position: relative;
  }
  .marquee-wrap::before,
  .marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-2), transparent);
  }
  .marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-2), transparent);
  }
  .marquee {
    display: flex;
    gap: 48px;
    animation: marquee 50s linear infinite;
    width: max-content;
    align-items: center;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .m-logo {
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 220ms ease;
  }
  .m-logo:hover { opacity: 1; color: var(--text); }
  .m-logo.serif { font-style: italic; font-weight: 400; }
  .m-logo.mono { font-family: var(--mono); font-size: 15px; }
  .m-logo.bold { font-weight: 700; }

  
  .pack-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 0;
  }
  .pack-tab {
    padding: 14px 0;
    margin-right: 28px;
    font-size: 14px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    margin-bottom: -1px;
    transition: color 200ms ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: -0.005em;
    position: relative;
  }
  .pack-tab::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .pack-tab.active::after { transform: scaleX(1); }
  .pack-tab .count {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    background: var(--surface);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid var(--hairline);
  }
  .pack-tab.active {
    color: var(--text);
  }
  .pack-tab.active .count {
    color: var(--coral);
    border-color: rgba(251, 113, 85, 0.3);
    background: var(--coral-soft);
  }
  .pack-tab:hover { color: var(--text); }

  .pack-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    max-width: 64ch;
    line-height: 1.5;
  }
  .pack-desc strong { color: var(--text); font-weight: 500; }

  .channel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .ch-tile {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r-sm);
    padding: 14px 10px;
    text-align: center;
    transition: all 220ms var(--ease);
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 124px;
    justify-content: flex-start;
    align-items: center;
  }
  .ch-tile:hover {
    border-color: rgba(251, 113, 85, 0.30);
    background: var(--surface-2);
    transform: translateY(-1px);
  }
  .ch-tile.premium:hover {
    border-color: rgba(251, 113, 85, 0.40);
    box-shadow: 0 4px 16px -4px rgba(251, 113, 85, 0.18);
  }
  .ch-logo {
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
  }
  .ch-logo img {
    max-width: 86%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
    transition: transform 220ms var(--ease);
  }
  .ch-tile:hover .ch-logo img {
    transform: scale(1.04);
  }
  .ch-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
  }
  .ch-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.25;
  }
  .ch-tile.premium {
    border-color: rgba(251, 113, 85, 0.16);
    background: linear-gradient(180deg, rgba(251, 113, 85, 0.04) 0%, var(--surface) 100%);
  }
  .ch-tile.premium .ch-num { color: var(--coral); }
  .ch-tile.more-tile {
    background: var(--coral-soft);
    border-color: rgba(251, 113, 85, 0.30);
    justify-content: center;
  }
  .ch-tile.more-tile .ch-num,
  .ch-tile.more-tile .ch-name { color: var(--coral); }

  
  .platforms {
    background:
      radial-gradient(55% 70% at 100% 0%, rgba(31, 182, 224, 0.18) 0%, transparent 60%),
      radial-gradient(45% 60% at 0% 100%, rgba(251, 113, 85, 0.10) 0%, transparent 60%),
      radial-gradient(40% 40% at 50% 50%, rgba(31, 182, 224, 0.04) 0%, transparent 70%),
      var(--bg-2);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .platform-card {
    background: linear-gradient(180deg, rgba(31, 182, 224, 0.03) 0%, var(--surface) 100%);
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 280ms var(--ease);
  }
  .platform-card:hover {
    border-color: rgba(31, 182, 224, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(31, 182, 224, 0.15);
  }
  .platform-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
  }
  .platform-info { flex: 1; }
  .platform-info h4 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .platform-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .platform-tag {
    background: var(--cyan-soft);
    color: var(--cyan);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    align-self: flex-start;
  }

  
  .demos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .demo-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    overflow: hidden;
    transition: all 280ms var(--ease);
    cursor: pointer;
  }
  .demo-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 113, 85, 0.35);
    box-shadow: 0 10px 30px -10px rgba(251, 113, 85, 0.20);
  }
  .demo-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: var(--navy-2);
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  .demo-thumb img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms var(--ease);
  }
  .demo-card:hover .demo-thumb img {
    transform: scale(1.04);
  }
  .demo-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 18, 48, 0) 55%, rgba(10, 18, 48, 0.35) 100%);
  }
  .demo-play { z-index: 3; }
  .demo-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 220ms var(--ease);
  }
  .demo-card:hover .demo-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--coral);
    color: #FFF;
  }
  .demo-meta {
    padding: 16px;
  }
  .demo-meta .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--coral);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .demo-meta .title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.35;
  }

  
  .faq-wrap {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-top: 1px solid var(--hairline);
    padding: 24px 0;
    cursor: pointer;
    transition: border-color 200ms ease;
  }
  .faq-item:hover { border-top-color: var(--hairline-strong); }
  .faq-item:hover .faq-q h4 { color: var(--cyan); }
  .faq-q h4 { transition: color 220ms ease; }
  .faq-item:hover .faq-icon { border-color: rgba(31, 182, 224, 0.4); color: var(--cyan); }
  .faq-item:last-child { border-bottom: 1px solid var(--hairline); }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
  .faq-q h4 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
  }
  .faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    width: 22px; height: 22px;
    border: 1px solid var(--hairline-strong);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 220ms var(--ease);
    margin-top: 2px;
  }
  .faq-item.open .faq-icon {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms var(--ease), padding 320ms var(--ease), opacity 320ms ease;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 66ch;
    font-size: 14.5px;
    opacity: 0;
  }
  .faq-item.open .faq-a {
    max-height: 280px;
    padding-top: 16px;
    opacity: 1;
  }

  
  .final {
    padding: 140px 0;
    text-align: center;
    background:
      radial-gradient(50% 80% at 30% 100%, rgba(31, 182, 224, 0.12) 0%, transparent 60%),
      radial-gradient(50% 80% at 70% 100%, rgba(251, 113, 85, 0.10) 0%, transparent 60%),
      linear-gradient(180deg, var(--bg) 0%, var(--navy-deep) 100%);
    border-top: 1px solid var(--hairline);
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan) 35%, var(--coral) 65%, transparent);
    opacity: 0.6;
  }
  .final h2 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    max-width: 18ch;
    margin: 0 auto 24px;
    font-weight: 600;
    text-wrap: balance;
  }
  .final h2 .accent { color: var(--cyan); }
  .final h2 .accent-warm { color: var(--coral); }
  .final p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 48ch;
    margin: 0 auto 40px;
  }
  .final .actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  
  footer {
    background:
      radial-gradient(45% 70% at 100% 0%, rgba(31, 182, 224, 0.14) 0%, transparent 60%),
      radial-gradient(45% 70% at 0% 100%, rgba(251, 113, 85, 0.10) 0%, transparent 60%),
      var(--navy-deep);
    padding: 64px 0 28px;
    border-top: 1px solid var(--hairline);
  }
  .footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    padding-bottom: 44px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--hairline);
  }
  .footer-logo { height: 64px; }
  .footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    margin-top: 6px;
  }
  .footer-nav a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 200ms ease;
    padding: 4px 2px;
  }
  .footer-nav a:hover { color: var(--cyan); }
  .footer-sep {
    color: var(--text-dim);
    font-size: 14px;
    opacity: 0.5;
    user-select: none;
  }
  .footer-bottom {
    padding-top: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--mono);
    text-align: center;
    letter-spacing: 0.02em;
  }

  
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fade-up 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  @keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
  }
  .delay-1 { animation-delay: 100ms; }
  .delay-2 { animation-delay: 200ms; }
  .delay-3 { animation-delay: 300ms; }
  .delay-4 { animation-delay: 400ms; }
  .delay-5 { animation-delay: 500ms; }

  
  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; gap: 80px; }
    .feature-pill, .epg-card { display: none; }
    .channel-grid { grid-template-columns: repeat(4, 1fr); }
    .demos-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 800px) {
    .nav-links { display: none; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .platform-grid { grid-template-columns: 1fr; }
    .channel-grid { grid-template-columns: repeat(3, 1fr); }
    .demos-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 540px) {
    .container { padding: 0 20px; }
    section { padding: 72px 0; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-bullets { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-nav { flex-direction: column; gap: 10px; }
    .footer-sep { display: none; }
    .footer-tagline { font-size: 13px; }
  }
