/* === BASE STYLES === */:root {
      --accent: #c026d3;
      --accent-bright: #e879f9;
      --accent-glow: rgba(192, 38, 211, 0.4);
      --background: #0a0014;
      --background-alt: #0f0020;
      --border-subtle: rgba(192, 38, 211, 0.2);
      --card-bg: rgba(255, 255, 255, 0.04);
      --gradient-hero: linear-gradient(135deg, #0a0014 0%, #1a003a 50%, #0a0014 100%);
      --indigo-base: #3b0764;
      --indigo-mid: #6b21a8;
      --surface: #13002a;
      --text-muted: #a78bca;
      --text-primary: #f5e6ff;
      --text-secondary: #d8b4fe;
      --white: #ffffff;
    }

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

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

    html {
      scroll-behavior: smooth;
    }

    main section[id] {
      scroll-margin-top: 90px;
    }

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

    .container {
      margin-left: auto;
      margin-right: auto;
      max-width: 1280px;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
      width: 100%;
    }

    a {
      color: var(--accent-bright);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    a:hover {
      color: var(--white);
    }

    .btn-primary-action {
      background: linear-gradient(135deg, var(--accent), var(--indigo-mid));
      border: none;
      border-radius: 50px;
      box-shadow: 0 0 20px var(--accent-glow), 0 4px 15px rgba(0,0,0,0.4);
      color: var(--white);
      cursor: pointer;
      display: inline-block;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 0.75rem 2rem;
      position: relative;
      text-decoration: none;
      text-transform: uppercase;
      transition: box-shadow 0.3s ease, transform 0.2s ease;
    }

    .btn-primary-action:hover {
      box-shadow: 0 0 35px var(--accent-glow), 0 8px 25px rgba(0,0,0,0.5);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-primary-action:active {
      transform: translateY(0);
    }

    .btn-secondary-action {
      background: transparent;
      border: 2px solid var(--accent);
      border-radius: 50px;
      color: var(--accent-bright);
      cursor: pointer;
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.65rem 1.75rem;
      text-decoration: none;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }

    .btn-secondary-action:hover {
      background: var(--accent);
      box-shadow: 0 0 20px var(--accent-glow);
      color: var(--white);
    }

    .section-label {
      color: var(--accent-bright);
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
    }

    .section-headline {
      color: var(--white);
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    .section-headline span {
      background: linear-gradient(135deg, var(--accent-bright), #818cf8);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .card-premium {
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 1.75rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .card-premium:hover {
      border-color: var(--accent);
      box-shadow: 0 0 30px rgba(192, 38, 211, 0.15), 0 10px 40px rgba(0,0,0,0.4);
      transform: translateY(-4px);
    }

    .card-premium h3 {
      color: var(--white);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .card-premium p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 0;
    }

    .highlight-notice {
      background: linear-gradient(135deg, rgba(192, 38, 211, 0.12), rgba(107, 33, 168, 0.1));
      border: 1px solid var(--border-subtle);
      border-left: 4px solid var(--accent);
      border-radius: 12px;
      margin-top: 2rem;
      padding: 1.25rem 1.5rem;
    }

    .highlight-notice p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin: 0;
    }

    .divider-glow {
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      border: none;
      height: 1px;
      margin: 0;
      opacity: 0.4;
      width: 100%;
    }

    .content-image {
      border-radius: 16px;
      margin: 2rem 0;
      overflow: hidden;
    }

    .content-image img {
      border-radius: 16px;
      display: block;
      height: auto;
      max-height: 480px;
      object-fit: cover;
      width: 100%;
    }

    .content-image.portrait {
      margin-left: 0;
      margin-right: auto;
      max-width: 420px;
    }

    .content-image.portrait img {
      max-height: 340px;
    }

    /* === LAYOUT STYLES === */
    #site-header {
      background: rgba(10, 0, 20, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      align-items: center;
      display: flex;
      gap: 1rem;
      min-height: 70px;
      padding-bottom: 0.75rem;
      padding-top: 0.75rem;
      position: relative;
    }

    .logo {
      flex-shrink: 0;
      z-index: 10;
    }

    .logo a {
      display: block;
      text-decoration: none;
    }

    .site-logo {
      display: block;
      height: auto;
      max-height: 50px;
      max-width: 250px;
      width: 100%;
    }

    .hamburger {
      align-items: center;
      background: transparent;
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      cursor: pointer;
      display: none;
      flex-direction: column;
      gap: 5px;
      justify-content: center;
      margin-left: auto;
      min-height: 44px;
      min-width: 44px;
      padding: 0.5rem;
      z-index: 10;
    }

    .hamburger-bar {
      background: var(--text-primary);
      border-radius: 2px;
      display: block;
      height: 2px;
      transition: all 0.3s ease;
      width: 22px;
    }

    .hamburger.is-active .hamburger-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-active .hamburger-bar:nth-child(2) {
      opacity: 0;
    }

    .hamburger.is-active .hamburger-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
      flex: 1;
    }

    .main-nav .nav-list {
      align-items: center;
      display: flex;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-nav .nav-list li a {
      border-radius: 8px;
      color: var(--text-secondary);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.5rem 0.85rem;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .main-nav .nav-list li a:hover {
      background: rgba(192, 38, 211, 0.12);
      color: var(--white);
    }

    .header-cta {
      background: linear-gradient(135deg, var(--accent), var(--indigo-mid));
      border: none;
      border-radius: 50px;
      box-shadow: 0 0 15px var(--accent-glow);
      color: var(--white);
      flex-shrink: 0;
      margin-left: auto;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      max-width: 200px;
      overflow: hidden;
      padding: 0.6rem 1.4rem;
      text-decoration: none;
      text-overflow: ellipsis;
      text-transform: uppercase;
      transition: box-shadow 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
    }

    .header-cta:hover {
      box-shadow: 0 0 25px var(--accent-glow);
      color: var(--white);
      transform: translateY(-1px);
    }

    #site-footer {
      background: var(--background-alt);
      border-top: 1px solid var(--border-subtle);
      margin-top: 4rem;
      padding: 3.5rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      gap: 2.5rem;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }

    .footer-col {
      min-width: 0;
    }

    .footer-logo {
      margin-bottom: 1rem;
    }

    .footer-logo .logo-text {
      background: linear-gradient(135deg, var(--accent-bright), #818cf8);
      -webkit-background-clip: text;
      background-clip: text;
      font-size: 1.35rem;
      font-weight: 800;
      -webkit-text-fill-color: transparent;
    }

    .footer-about-text {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0 0 1.25rem;
    }

    .footer-trust-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-trust-badge {
      background: rgba(192, 38, 211, 0.1);
      border: 1px solid var(--border-subtle);
      border-radius: 999px;
      color: var(--text-secondary);
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.3rem 0.75rem;
      text-transform: uppercase;
    }

    .footer-heading {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin: 0 0 1.1rem;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 0.88rem;
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--accent-bright);
      transform: translateX(3px);
    }

    .footer-divider {
      background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
      border: none;
      height: 1px;
      margin: 2.5rem 0 1.5rem;
    }

    .footer-bottom {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
    }

    .footer-disclaimer {
      color: var(--text-muted);
      flex: 1 1 600px;
      font-size: 0.78rem;
      line-height: 1.6;
      margin: 0;
    }

    .footer-copyright {
      color: var(--text-muted);
      font-size: 0.78rem;
      margin: 0;
      white-space: nowrap;
    }

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

      .footer-col-about {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 600px) {
      #site-footer {
        padding: 2.5rem 0 1.5rem;
      }

      .footer-grid {
        gap: 2rem;
        grid-template-columns: 1fr 1fr;
      }

      .footer-col-about {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

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

      .main-nav {
        background: rgba(10, 0, 20, 0.98);
        border-top: 1px solid var(--border-subtle);
        display: none;
        left: 0;
        padding: 1.5rem;
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        z-index: 999;
      }

      .main-nav.is-open {
        display: block;
      }

      .main-nav .nav-list {
        flex-direction: column;
        gap: 0.5rem;
      }

      .main-nav .nav-list li a {
        display: block;
        font-size: 1rem;
        padding: 0.75rem 1rem;
      }

      .header-inner {
        flex-wrap: wrap;
      }

      .header-cta {
        font-size: 0.85rem;
        max-width: 240px;
        padding: 0.6rem 1.6rem;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .main-nav .nav-list li a {
        font-size: 0.82rem;
        padding: 0.45rem 0.65rem;
      }
    }