/* === BASE STYLES === */:root {
      --accent: #00e5ff;
      --accentAlt: #ff4d6d;
      --accentGlow: rgba(0, 229, 255, 0.35);
      --accentAltGlow: rgba(255, 77, 109, 0.35);
      --surface: #080e1a;
      --surfaceCard: #0d1826;
      --surfaceElevated: #112035;
      --surfaceBorder: #1a2d45;
      --textPrimary: #f0f8ff;
      --textSecondary: #8eafc8;
      --textMuted: #506880;
      --borderSubtle: rgba(0, 229, 255, 0.12);
      --gradientHero: linear-gradient(135deg, #040b17 0%, #0a1628 40%, #081220 100%);
      --gradientAccent: linear-gradient(90deg, #00e5ff, #0080ff);
      --gradientFire: linear-gradient(90deg, #ff4d6d, #ff8c42);
      --gradientCard: linear-gradient(145deg, #0d1826, #112035);
      --shadowCard: 0 8px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 229, 255, 0.08);
      --shadowGlow: 0 0 30px rgba(0, 229, 255, 0.25);
      --shadowFireGlow: 0 0 30px rgba(255, 77, 109, 0.25);
      --radius: 14px;
      --radiusSm: 8px;
      --radiusLg: 20px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: var(--surface);
      color: var(--textPrimary);
      line-height: 1.7;
      font-size: 16px;
    }

    .wrapper {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btnPrimary {
      background: var(--gradientAccent);
      color: #000;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 15px;
      box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btnPrimary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .btnPrimary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 229, 255, 0.6);
      color: #000;
    }

    .btnPrimary:hover::after { transform: translateX(100%); }

    .btnFire {
      background: var(--gradientFire);
      color: #fff;
      padding: 18px 44px;
      border-radius: 50px;
      font-size: 17px;
      box-shadow: 0 6px 24px rgba(255, 77, 109, 0.5);
      position: relative;
      overflow: hidden;
    }

    .btnFire::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .btnFire:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(255, 77, 109, 0.7);
      color: #fff;
    }

    .btnFire:hover::after { transform: translateX(100%); }

    .btnOutline {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 14px;
    }

    .btnOutline:hover {
      background: var(--accent);
      color: #000;
      box-shadow: var(--shadowGlow);
    }

    /* Cards */
    .card {
      background: var(--gradientCard);
      border: 1px solid var(--borderSubtle);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadowCard);
      transition: var(--transition);
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 229, 255, 0.3);
      box-shadow: var(--shadowCard), var(--shadowGlow);
    }

    /* Section layout */
    section {
      padding: 80px 0;
    }

    section:nth-child(even) {
      background: rgba(255,255,255,0.015);
    }

    /* Typography */
    h1 { font-size: clamp(32px, 5vw, 64px); font-weight: 900; line-height: 1.1; }
    h2 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 800; line-height: 1.2; }
    h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; line-height: 1.3; }
    h4 { font-size: 18px; font-weight: 700; }

    p { color: var(--textSecondary); margin-bottom: 16px; }
    p:last-child { margin-bottom: 0; }

    a { color: var(--accent); text-decoration: none; transition: var(--transition); }
    a:hover { color: #fff; text-shadow: 0 0 10px var(--accent); }

    .sectionTitle {
      text-align: center;
      margin-bottom: 16px;
    }

    .sectionTitle span {
      background: var(--gradientAccent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sectionSubtitle {
      text-align: center;
      color: var(--textSecondary);
      font-size: 17px;
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .accentLine {
      display: inline-block;
      width: 60px;
      height: 4px;
      background: var(--gradientAccent);
      border-radius: 2px;
      margin-bottom: 20px;
    }

    /* Images */
    figure.content-image {
      margin: 0;
      border-radius: var(--radius);
      overflow: hidden;
    }

    figure.content-image img,
    figure.content-image.wide img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius);
      object-fit: cover;
    }

    figure.content-image.wide {
      max-height: 480px;
      overflow: hidden;
    }

    figure.content-image.wide img {
      max-height: 480px;
    }

    /* Table */
    .table-responsive {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--borderSubtle);
    }

    /* Checklist */
    .checklist {
      list-style: none;
      padding: 0;
    }

    .checklist li {
      color: var(--textSecondary);
      padding: 10px 0 10px 32px;
      position: relative;
      border-bottom: 1px solid var(--borderSubtle);
    }

    .checklist li:last-child { border-bottom: none; }

    .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 10px;
      color: var(--accent);
      font-weight: 800;
      font-size: 14px;
    }

    /* === LAYOUT STYLES === */

    /* Header */
    .siteHeader {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--borderSubtle);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .headerInner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }

    .logo a {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .logoText {
      font-size: 26px;
      font-weight: 900;
      letter-spacing: -0.5px;
      background: var(--gradientAccent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid var(--borderSubtle);
      border-radius: var(--radiusSm);
      cursor: pointer;
      padding: 12px 10px;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: var(--transition);
    }

    .hamburger:hover { border-color: var(--accent); background: rgba(0, 229, 255, 0.05); }

    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    header nav { display: flex; align-items: center; flex: 1; }

    .navList {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .navList li a {
      display: block;
      padding: 8px 16px;
      color: var(--textSecondary);
      font-weight: 600;
      font-size: 14px;
      border-radius: 50px;
      transition: var(--transition);
      letter-spacing: 0.02em;
    }

    .navList li a:hover {
      color: var(--accent);
      background: rgba(0, 229, 255, 0.08);
      text-shadow: none;
    }

    .headerCta {
      flex-shrink: 0;
      max-width: 200px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Footer */
    .siteFooter {
      background: #04080f;
      border-top: 1px solid var(--borderSubtle);
      padding: 60px 0 30px;
    }

    .footerInner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 40px;
      align-items: start;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--borderSubtle);
      margin-bottom: 30px;
    }

    .footerLogo .logoText { font-size: 28px; }

    .footerNav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 20px;
      list-style: none;
      padding: 0;
      margin: 0;
      justify-content: center;
    }

    .footerNav a {
      color: var(--textMuted);
      font-size: 13px;
      transition: var(--transition);
    }

    .footerNav a:hover { color: var(--accent); text-shadow: none; }

    .footerDisclaimer {
      text-align: right;
    }

    .footerDisclaimer p {
      font-size: 12px;
      color: var(--textMuted);
      max-width: 320px;
    }

    .footerBottom {
      text-align: center;
    }

    .footerBottom p {
      font-size: 12px;
      color: var(--textMuted);
    }

    @media (max-width: 1024px) {
      .footerInner {
        grid-template-columns: 1fr 1fr;
      }

      .footerDisclaimer {
        grid-column: 1 / -1;
        text-align: center;
      }

      .footerDisclaimer p { max-width: 100%; }
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }

      .headerInner {
        flex-wrap: wrap;
        height: auto;
        padding: 14px 0;
      }

      .logo { order: 1; }
      .hamburger { order: 2; }

      header nav {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid var(--borderSubtle);
      }

      header nav.navOpen { display: flex; }

      .navList {
        flex-direction: column;
        width: 100%;
        gap: 4px;
      }

      .navList li { width: 100%; }

      .navList li a {
        border-radius: var(--radiusSm);
        padding: 12px 16px;
        font-size: 15px;
      }

      .headerCta {
        order: 3;
        max-width: none;
        width: 100%;
        display: block;
      }

      .headerCta .btnPrimary {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .footerInner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footerNav ul { justify-content: center; }
      .footerDisclaimer { text-align: center; }
      .footerDisclaimer p { max-width: 100%; }
    }

@media (max-width: 768px) {
      .hamburger { display: flex; }

      .headerInner {
        flex-wrap: wrap;
        height: auto;
        padding: 14px 0;
      }

      .logo { order: 1; }
      .hamburger { order: 2; }

      header nav {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid var(--borderSubtle);
      }

      header nav.navOpen { display: flex; }

      .navList {
        flex-direction: column;
        width: 100%;
        gap: 4px;
      }

      .navList li { width: 100%; }

      .navList li a {
        border-radius: var(--radiusSm);
        padding: 12px 16px;
        font-size: 15px;
      }

      .headerCta {
        order: 3;
        max-width: none;
        width: 100%;
        display: block;
      }

      .headerCta .btnPrimary {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .footerInner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footerNav ul { justify-content: center; }
      .footerDisclaimer { text-align: center; }
      .footerDisclaimer p { max-width: 100%; }
    }