/* CSS Variables */
      :root {
        --primary: #1a3c8f;
        --secondary: #3a9fe0;
        --surface: #0d1f4e;
        --card-bg: #162654;
        --gradient: linear-gradient(135deg, #1a3c8f 0%, #3a9fe0 100%);
        --text-pri: #ffffff;
        --text-sec: #a8bfdf;
        --success: #2ecc71;
        --border: #243a6b;
        --gold: #f0c040;
        --danger: #e74c3c;

        --font-display: "Poppins", sans-serif;
        --font-body: "Nunito", sans-serif;
      }

      /* Resets */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--surface);
        color: var(--text-pri);
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3,
      .poppins {
        font-family: var(--font-display);
      }
      h1 {
        font-weight: 800;
        font-size: 46px;
        line-height: 1.3;
        margin-bottom: 32px;
      }
      h2 {
        font-weight: 800;
        font-size: 32px;
        margin-bottom: 16px;
      }

      .h2-accent {
        display: inline-block;
        border-bottom: 4px solid var(--gold);
        padding-bottom: 8px;
        margin-bottom: 40px;
      }
      .text-sec {
        color: var(--text-sec);
      }
      .text-center {
        text-align: center;
      }

      /* Layout & Utilities */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .section-pad {
        padding: 88px 0;
      }
      .bg-card {
        background-color: var(--card-bg);
      }
      .bg-surface {
        background-color: var(--surface);
      }
      .hr-top {
        border-top: 1px solid var(--border);
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        padding: 14px 28px;
        transition: all 0.3s ease;
        cursor: pointer;
      }
      .btn-primary {
        background: var(--gradient);
        color: #fff;
        border-radius: 50px;
        border: none;
      }
      .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(58, 159, 224, 0.4);
      }
      .btn-secondary {
        background: transparent;
        color: var(--secondary);
        border: 2px solid var(--secondary);
        border-radius: 6px;
      }
      .btn-secondary:hover {
        background: rgba(58, 159, 224, 0.1);
      }
      .btn-large {
        padding: 16px 48px;
        font-size: 18px;
      }

      /* Navbar */
      header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(13, 31, 78, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
      }
      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
      }
      .logo {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 24px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .logo svg {
        fill: var(--gold);
        width: 28px;
        height: 28px;
      }
      .nav-links {
        display: flex;
        gap: 32px;
      }
      .nav-links a {
        font-weight: 600;
        font-size: 15px;
        transition: color 0.2s;
      }
      .nav-links a.active,
      .nav-links a:hover {
        color: var(--secondary);
      }
      .nav-actions {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .hamburger {
        display: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
      }

      /* Mobile Menu */
      .mobile-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
      }
      .mobile-menu.active {
        display: flex;
      }

      /* SECTION 1: HERO */
      .hero {
        position: relative;
        min-height: 560px;
        display: flex;
        align-items: center;
        background:
          radial-gradient(
            circle at center top,
            rgba(240, 192, 64, 0.08) 0%,
            transparent 60%
          ),
          var(--surface);
        overflow: hidden;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 60% 40%;
        align-items: center;
        gap: 40px;
        position: relative;
        z-index: 2;
        width: 100%;
      }
      .hero-content p {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 48px;
        color: var(--text-sec);
        max-width: 540px;
      }
      .hero-mascot {
        max-width: 280px;
        margin-left: auto;
        animation: floatMascot 3s ease-in-out infinite;
      }
      @keyframes floatMascot {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-8px);
        }
      }

      /* SECTION 2: WHY JOIN (Trust Badges Open Layout) */
      .trust-grid-open {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        text-align: center;
      }
      .trust-item-open {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .trust-icon-filled {
        width: 40px;
        height: 40px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
      }
      .trust-icon-filled svg {
        width: 20px;
        height: 20px;
        fill: #fff;
      }
      .trust-item-open h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 8px;
        color: #fff;
      }
      .trust-item-open p {
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 13px;
        color: var(--text-sec);
        line-height: 1.5;
      }

      /* SECTION 3: HOW TO REGISTER (Steps Large Variant) */
      .steps-row-large {
        display: flex;
        gap: 24px;
        position: relative;
        margin-bottom: 40px;
      }
      .step-box-large {
        flex: 1;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .step-num-large {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 64px;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--gold) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 16px;
        display: inline-block;
        line-height: 1;
      }
      .step-box-large h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 12px;
        color: #fff;
      }
      .step-box-large p {
        font-size: 15px;
        color: var(--text-sec);
        max-width: 260px;
        margin: 0 auto;
      }
      .steps-row-large::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 16%;
        right: 16%;
        height: 1px;
        border-top: 1px dashed var(--secondary);
        z-index: 0;
      }

      .deposit-pills {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
        flex-wrap: wrap;
      }
      .deposit-pill {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 700;
      }
      .deposit-pill-icon {
        width: 14px;
        height: 14px;
        background: var(--text-sec);
        border-radius: 50%;
      }

      /* SECTION 4: UNLOCKS (Open List Layout) */
      .unlock-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
        margin-bottom: 40px;
      }
      .unlock-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
      }
      .unlock-icon {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 4px;
      }
      .unlock-icon svg {
        width: 10px;
        height: 10px;
        fill: #fff;
      }
      .unlock-content h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 15px;
        color: #fff;
        margin-bottom: 6px;
      }
      .unlock-content p {
        font-size: 14px;
        color: var(--text-sec);
      }

      /* SECTION 5: SECURITY & TRUST */
      .security-banner {
        width: 100%;
        max-height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 48px;
        opacity: 0.4;
      }
      .security-row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        text-align: center;
        align-items: start;
      }
      .security-item {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .security-icon-line {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
      }
      .security-icon-line svg {
        width: 36px;
        height: 36px;
        fill: none;
        stroke: var(--secondary);
        stroke-width: 1.5;
      }
      .security-item h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 14px;
        color: #fff;
        margin-bottom: 8px;
      }
      .security-item p {
        font-size: 13px;
        color: var(--text-sec);
      }

      .license-tag-danger {
        display: inline-block;
        border: 1px solid var(--danger);
        color: #fff;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 8px;
      }

      /* SECTION 6: FAQ & FINAL CTA */
      .faq-wrap {
        max-width: 780px;
        margin: 0 auto 64px auto;
      }
      .faq-item {
        background: var(--card-bg);
        border-bottom: 1px solid var(--border);
      }
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 24px;
        background: none;
        border: none;
        color: #fff;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        text-align: left;
      }
      .faq-icon {
        transition: transform 0.3s ease;
        fill: var(--secondary);
        width: 24px;
        height: 24px;
      }
      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.3s ease,
          padding 0.3s ease;
        font-size: 15px;
        color: var(--text-sec);
      }
      .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
        max-height: 400px;
      }

      .final-cta-block {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
      }
      .final-cta-block p {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-sec);
        margin-bottom: 24px;
      }
      .small-print {
        font-size: 12px;
        color: var(--text-sec);
        margin-top: 16px;
        display: block;
      }

      /* FOOTER */
      footer {
        background: #0a1638;
        padding: 60px 0 30px;
        border-top: 1px solid var(--border);
        font-size: 14px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-col h4 {
        font-family: var(--font-display);
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
      }
      .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-col a {
        color: var(--text-sec);
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--secondary);
      }
      .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 24px;
        text-align: center;
        color: var(--text-sec);
        font-size: 12px;
      }
      .footer-bottom p {
        margin-bottom: 8px;
      }

      /* FLOATING CTA */
      .floating-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 90;
        animation: pulse 2s infinite ease-in-out;
      }
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      /* RESPONSIVE */
      @media (max-width: 1023px) {
        .trust-grid-open {
          grid-template-columns: repeat(2, 1fr);
        }
        .security-row {
          grid-template-columns: repeat(3, 1fr);
          gap: 32px 24px;
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        h1 {
          font-size: 32px;
        }
        .section-pad {
          padding: 52px 0;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero {
          min-height: auto;
          padding: 64px 0;
        }
        .hero-grid {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .hero-mascot {
          display: none;
        }
        .hero-content p {
          margin: 0 auto 32px auto;
        }
        .btn-large {
          width: 100%;
        }

        .trust-grid-open {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .steps-row-large {
          flex-direction: column;
          gap: 40px;
        }
        .steps-row-large::before {
          display: none;
        }

        .unlock-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .security-row {
          grid-template-columns: repeat(2, 1fr);
          gap: 32px 16px;
        }
        .security-item:last-child {
          grid-column: span 2;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }

        .floating-cta {
          bottom: 0;
          right: 0;
          left: 0;
          border-radius: 0;
          width: 100%;
          height: 56px;
          animation: none;
        }
      }
