html, body { overflow-x: hidden; max-width: 100vw; }

  :root {
    --c1: #0a0e1a;
    --c2: #111827;
    --c3: #1e2d4a;
    --c4: #2a3f6f;
    --c5: #3b5ba5;
    --c6: #5c7fd4;
    --c7: #e8edf8;
    --c8: #ffffff;
    --c9: #0d1525;
    --accent: #4f7bff;
    --gold: #f0b429;
    --bg: #080c18;
    --fg: #e8edf8;
    --card-bg: #111827;
    --card-border: rgba(95,123,255,0.18);
    --sp1: 0.5rem;
    --sp2: 1rem;
    --sp3: 1.5rem;
    --sp4: 2rem;
    --sp5: 3rem;
    --sp6: 5rem;
    --rad: 10px;
    --rad2: 18px;
    --rad3: 30px;
    --shadow: 0 4px 24px rgba(0,0,0,0.45);
    --shadow2: 0 8px 48px rgba(79,123,255,0.18);
    --glow: 0 0 32px rgba(79,123,255,0.35);
    --trans: all 0.3s cubic-bezier(.4,0,.2,1);
  }

  .pageWrap {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-bottom: var(--sp6);
  }

  /* HERO */
  .heroSection {
    position: relative;
    padding: var(--sp6) var(--sp4) var(--sp5);
    background: linear-gradient(135deg, #080c18 0%, #0f1c3a 50%, #0a0e1a 100%);
    text-align: center;
    overflow: hidden;
  }

  .heroBg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 30% 50%, rgba(79,123,255,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 75% 30%, rgba(240,180,41,0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .heroTitle {
    position: relative;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto var(--sp3);
    max-width: 820px;
    background: linear-gradient(135deg, #ffffff 30%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
  }

  .heroLead {
    position: relative;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(232,237,248,0.75);
    max-width: 640px;
    margin: 0 auto var(--sp4);
    line-height: 1.7;
  }

  .heroStats {
    display: flex;
    justify-content: center;
    gap: var(--sp3);
    flex-wrap: wrap;
    margin-bottom: var(--sp4);
    position: relative;
  }

  .statPill {
    background: rgba(79,123,255,0.12);
    border: 1px solid rgba(79,123,255,0.28);
    border-radius: var(--rad3);
    padding: var(--sp1) var(--sp3);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg);
  }

  .statPill span {
    color: var(--gold);
    margin-right: 0.4em;
  }

  .heroActions {
    display: flex;
    justify-content: center;
    gap: var(--sp2);
    flex-wrap: wrap;
    position: relative;
  }

  /* FORMATS SECTION — Timeline */
  .formatsSection {
    padding: var(--sp5) var(--sp4);
    background: var(--c2);
  }

  .sectionTitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: var(--sp2);
    letter-spacing: -0.01em;
  }

  .sectionTitle .accent { color: var(--accent); }
  .sectionTitle .goldAccent { color: var(--gold); }

  .sectionLead {
    color: rgba(232,237,248,0.6);
    font-size: 1rem;
    margin-bottom: var(--sp4);
    max-width: 560px;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 720px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--gold) 100%);
    opacity: 0.4;
  }

  .timelineItem {
    display: flex;
    gap: var(--sp3);
    padding: var(--sp3) 0;
    position: relative;
  }

  .timelineDot {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c3), var(--c4));
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--glow);
    z-index: 1;
  }

  .timelineContent {
    flex: 1;
    padding-top: 0.6rem;
  }

  .timelineLabel {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.4rem;
  }

  .timelineDesc {
    font-size: 0.95rem;
    color: rgba(232,237,248,0.65);
    line-height: 1.6;
  }

  /* CATEGORIES — Comparison Table */
  .categoriesSection {
    padding: var(--sp5) var(--sp4);
    background: var(--bg);
  }

  .table-responsive {
    overflow-x: auto;
    border-radius: var(--rad2);
    box-shadow: var(--shadow2);
    border: 1px solid var(--card-border);
  }

  .premTable {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    font-size: 0.95rem;
  }

  .premTable thead tr {
    background: linear-gradient(90deg, var(--c3), var(--c4));
  }

  .premTable thead th {
    padding: var(--sp2) var(--sp3);
    text-align: left;
    color: var(--fg);
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 0.88rem;
    text-transform: uppercase;
  }

  .premTable tbody tr {
    border-bottom: 1px solid rgba(79,123,255,0.1);
    transition: var(--trans);
  }

  .premTable tbody tr:last-child { border-bottom: none; }

  .premTable tbody tr:hover {
    background: rgba(79,123,255,0.07);
  }

  .premTable tbody td {
    padding: var(--sp2) var(--sp3);
    color: rgba(232,237,248,0.85);
  }

  .premTable tbody td:first-child {
    color: var(--fg);
    font-weight: 600;
  }

  .badgeFormat {
    display: inline-block;
    background: rgba(79,123,255,0.15);
    border: 1px solid rgba(79,123,255,0.3);
    border-radius: var(--rad3);
    padding: 0.2em 0.8em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0.15em 0.2em;
  }

  .badgeGold {
    background: rgba(240,180,41,0.12);
    border-color: rgba(240,180,41,0.3);
    color: var(--gold);
  }

  /* PRICING — Cards Grid */
  .pricingSection {
    padding: var(--sp5) var(--sp4);
    background: linear-gradient(180deg, var(--c2) 0%, var(--bg) 100%);
  }

  .pricingGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp3);
    margin-top: var(--sp4);
  }

  .pricingCard {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--rad2);
    padding: var(--sp4);
    transition: var(--trans);
    position: relative;
    overflow: hidden;
  }

  .pricingCard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    opacity: 0;
    transition: var(--trans);
  }

  .pricingCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow2), var(--glow);
    border-color: rgba(79,123,255,0.4);
  }

  .pricingCard:hover::after { opacity: 1; }

  .pricingCard.featured {
    border-color: rgba(240,180,41,0.4);
    box-shadow: 0 8px 48px rgba(240,180,41,0.12);
  }

  .pricingCard.featured::after { opacity: 1; background: linear-gradient(90deg, var(--gold), var(--accent)); }

  .pricingIcon {
    font-size: 2rem;
    margin-bottom: var(--sp2);
  }

  .pricingCat {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: var(--sp2);
  }

  .pricingItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(79,123,255,0.1);
  }

  .pricingItem:last-of-type { border-bottom: none; }

  .pricingLabel {
    font-size: 0.9rem;
    color: rgba(232,237,248,0.65);
  }

  .pricingValue {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
  }

  .pricingNote {
    font-size: 0.8rem;
    color: rgba(232,237,248,0.4);
    margin-top: var(--sp2);
    line-height: 1.5;
  }

  /* WHY — Highlight Boxes */
  .whySection {
    padding: var(--sp5) var(--sp4);
    background: var(--bg);
  }

  .whyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp3);
    margin-top: var(--sp4);
  }

  .whyBox {
    background: linear-gradient(135deg, var(--c2), var(--c3));
    border: 1px solid var(--card-border);
    border-radius: var(--rad2);
    padding: var(--sp3) var(--sp3);
    transition: var(--trans);
  }

  .whyBox:hover {
    transform: translateY(-4px);
    border-color: rgba(79,123,255,0.35);
    box-shadow: var(--shadow2);
  }

  .whyBoxIcon {
    width: 48px;
    height: 48px;
    border-radius: var(--rad);
    background: linear-gradient(135deg, rgba(79,123,255,0.2), rgba(79,123,255,0.05));
    border: 1px solid rgba(79,123,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: var(--sp2);
  }

  .whyBoxTitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.4rem;
  }

  .whyBoxDesc {
    font-size: 0.88rem;
    color: rgba(232,237,248,0.6);
    line-height: 1.6;
  }

  .bigStat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 0.2rem;
  }

  /* FAQ — Accordion */
  .faqSection {
    padding: var(--sp5) var(--sp4);
    background: var(--c2);
  }

  .faqList {
    display: flex;
    flex-direction: column;
    gap: var(--sp2);
    margin-top: var(--sp4);
    max-width: 820px;
  }

  .faqItem {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--rad2);
    overflow: hidden;
    transition: var(--trans);
  }

  .faqItem:hover { border-color: rgba(79,123,255,0.3); }

  .faqQuestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp3);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--fg);
    gap: var(--sp2);
    user-select: none;
  }

  .faqArrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(79,123,255,0.1);
    border: 1px solid rgba(79,123,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--accent);
    transition: var(--trans);
  }

  .faqItem.is-open .faqArrow { transform: rotate(180deg); background: rgba(79,123,255,0.2); }

  .faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
    padding: 0 var(--sp3);
    font-size: 0.93rem;
    color: rgba(232,237,248,0.7);
    line-height: 1.7;
  }

  .faqItem.is-open .faqAnswer {
    max-height: 300px;
    padding: 0 var(--sp3) var(--sp3);
  }

  .faqAnswer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* CTA BAND */
  .ctaBand {
    padding: var(--sp5) var(--sp4);
    background: linear-gradient(135deg, #0d1a35 0%, #0f2050 50%, #0a0e1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .ctaBandBg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(79,123,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .ctaBandTitle {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--fg);
    margin-bottom: var(--sp2);
  }

  .ctaBandDesc {
    position: relative;
    color: rgba(232,237,248,0.65);
    font-size: 1.05rem;
    margin-bottom: var(--sp4);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .ctaBandActions {
    position: relative;
    display: flex;
    justify-content: center;
    gap: var(--sp2);
    flex-wrap: wrap;
  }

  /* BUTTONS */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.8em 2em;
    border-radius: var(--rad3);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    letter-spacing: 0.01em;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent), #3a5fd4);
    color: #fff;
    box-shadow: 0 4px 24px rgba(79,123,255,0.4);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(79,123,255,0.55);
    filter: brightness(1.1);
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4920f);
    color: #0a0e1a;
    box-shadow: 0 4px 24px rgba(240,180,41,0.35);
  }

  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(240,180,41,0.5);
    filter: brightness(1.08);
  }

  .btn-outline {
    background: transparent;
    color: var(--fg);
    border: 2px solid rgba(232,237,248,0.3);
  }

  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .heroSection, .formatsSection, .categoriesSection,
    .pricingSection, .whySection, .faqSection, .ctaBand {
      padding-left: var(--sp2);
      padding-right: var(--sp2);
    }
    .timeline::before { left: 22px; }
    .timelineDot { width: 44px; height: 44px; font-size: 1.1rem; }
    .pricingGrid { grid-template-columns: 1fr; }
    .whyGrid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    .whyGrid { grid-template-columns: 1fr; }
    .heroStats { gap: var(--sp1); }
  }