    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --purple: #4931AF;
      --purple-dark: #3a2590;
      --pink: #FD8080;
      --teal: #BFFFFA;
      --blue: #BED9FF;
      --rose: #FFE7EF;
      --green: #D3FFD5;
      --gray-bg: #F5F5F7;
      --border: #ECECEC;
      --text: #1a1a1a;
      --gray: #5a5a5a;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: #fafafa;
      color: var(--text);
      overflow-x: hidden
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 1.5rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      justify-content: center;
      /* center logos horizontally */
      width: 100%;
    }

    .nav-logo img {
      height: 44px;
      object-fit: contain
    }

    .nav-sep {
      width: 1px;
      height: 28px;
      background: var(--border)
    }

    .nav-moe {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      color: #666
    }

    .moe-dots {
      display: grid;
      grid-template-columns: repeat(4, 5px);
      gap: 2px
    }

    .moe-dots span {
      width: 5px;
      height: 5px;
      background: #4931AF;
      border-radius: 50%;
      opacity: 0.7
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem
    }


    /* ===== RAMADAN BANNER ===== */
    .ramadan-top {
      position: relative;
      width: 100%;
      height: 80px;
      overflow: hidden;
      background: linear-gradient(to bottom, rgba(100, 70, 200, 0.08), transparent);
      margin-bottom: -20px;
      pointer-events: none;
    }

    /* ===== HERO ===== */
    .hero {
      background: #ffffff;
      position: relative;
      overflow: hidden;
      min-height: 540px;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle, rgba(73, 49, 175, 0.18) 1.2px, transparent 1.2px);
      background-size: 28px 28px;
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 60%, rgba(255, 255, 255, 0.85) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 45%);
      z-index: 0;
    }

    /* moon deco */
    .hero-moon {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 2.5rem;
      opacity: 0.6;
      display: none
    }

    .hero-stars {
      position: absolute;
      bottom: 3rem;
      left: 12rem;
      font-size: 1.5rem;
      opacity: 0.5
    }


    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 2rem 3rem;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      align-items: start;
      gap: 2rem;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      background: linear-gradient(135deg, #3C1C75 0%, #1D0C36 60%, #5A1F6B 100%);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      order: 2;
    }

    .hero-text::after {
      content: '🌙';
      position: absolute;
      bottom: -1rem;
      left: -1rem;
      font-size: 7rem;
      opacity: 0.07;
      pointer-events: none;
    }

    .hero-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--pink);
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-sub {
      font-size: clamp(0.85rem, 1.5vw, 1rem);
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 420px;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      color: #4F29B7;
      padding: 0.8rem 2rem;
      border-radius: 14px;
      font-family: 'Cairo', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      box-shadow: 5px 5px #4F29B7;
      transition: box-shadow 0.2s;
      text-decoration: none;
    }

    .hero-btn:hover {
      box-shadow: none
    }

    /* right side cards */
    .hero-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      order: 1
    }

    .hero-card-stat {
      background: #BFFFFA;
      border-radius: 20px;
      padding: 1.2rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-card-stat p:first-child {
      color: #00877D;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      opacity: 0.85
    }

    .hero-card-stat p:last-child {
      color: #00877D;
      font-size: 2rem;
      font-weight: 800
    }

    .hero-card-reg {
      background: #FFDDE1;
      border-radius: 20px;
      padding: 1.2rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .hero-card-reg-text h3 {
      color: #FF536D;
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 0.3rem
    }

    .hero-card-reg-text p {
      color: #505050;
      font-size: 0.78rem;
      line-height: 1.5
    }

    .reg-btn {
      background: #FF536D;
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    /* red ended-registration button used on activity cards */
    .reg-ended {
      background: #DC143C;
      color: #fff;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      font-weight: 700;
      font-family: 'Cairo', sans-serif;
      cursor: default;
      display: inline-block;
    }

    /* ===== SECTION ===== */
    .section {
      padding: 4rem 1.5rem
    }

    .sec-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .sec-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .sec-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #111
    }

    /* subtle divider used between main sections */
    .section-divider {
      height: 28px;
      margin: 1.5rem 0;
      border-radius: 14px;
      background: linear-gradient(90deg, rgba(73, 49, 175, 0.06), rgba(255, 128, 128, 0.03));
      border: 1px solid var(--border);
    }

    .sec-more {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      color: #64ABFF;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
    }

    /* ===== ACTIVITY CARDS (Tuwaiq style) ===== */
    .acts-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem
    }

    .act-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      padding: 2rem 1.5rem 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 320px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .act-card:hover {
      transform: translateY(-6px);
      box-shadow: 8px 8px rgba(0, 0, 0, 0.12)
    }

    .act-card.blue {
      background: #BED9FF
    }

    .act-card.rose {
      background: #FFE7EF
    }

    .act-card.green {
      background: #D3FFD5
    }

    .act-card.teal {
      background: #BFFFFA
    }

    .act-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.8rem
    }

    .act-name {
      font-size: 1.15rem;
      font-weight: 800;
      color: #111
    }

    .act-name img {
      height: 28px;
      width: auto;
      display: inline-block;
      margin-right: 0.3rem;
      vertical-align: middle
    }

    .act-more-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      flex-shrink: 0;
      transition: width 0.3s, padding 0.3s;
      overflow: hidden;
    }

    .act-more-btn:hover {
      width: 90px;
      padding: 0 0.8rem
    }

    .act-more-btn .more-txt {
      display: none;
      font-size: 0.8rem;
      font-weight: 700;
      white-space: nowrap;
      margin-left: 0.4rem;
    }

    .act-more-btn:hover .more-txt {
      display: block
    }

    .act-desc {
      font-size: 0.85rem;
      color: #3d3d3d;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .act-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 1rem
    }

    .act-tag {
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(0, 0, 0, 0.1);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.2rem 0.65rem;
      border-radius: 20px;
      color: #333;
    }

    .act-img {
      width: 100%;
      display: flex;
      justify-content: center;
      padding-top: 0.5rem;
      font-size: 4rem;
      text-align: center;
      padding-bottom: 1rem;
      margin-top: auto;
    }

    /* ===== STATS SECTION ===== */
    .stats-bg {
      background: #F5F5F7;
      padding: 4rem 1.5rem
    }

    .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .stat-card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem 1.5rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .stat-card-text h3 {
      font-size: 0.95rem;
      font-weight: 500;
      color: #111;
      margin-bottom: 0.4rem
    }

    .stat-card-text p.num {
      font-size: 1.6rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 0.2rem
    }

    .stat-card-text span {
      font-size: 0.75rem;
      color: #7f7f7f
    }

    .stat-card-icon {
      font-size: 2.5rem;
      opacity: 0.7
    }

    /* ===== ANNUAL REPORT ===== */
    .annual {
      background: #4931AF;
      border-radius: 24px;
      padding: 3rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      margin: 0 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .annual h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.5rem
    }

    .annual p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      margin-bottom: 1.5rem;
      font-weight: 600
    }

    .annual-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      color: #4931AF;
      padding: 0.75rem 1.8rem;
      border-radius: 12px;
      font-family: 'Cairo', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
    }

    .annual-deco {
      position: absolute;
      left: 0;
      bottom: 0;
      font-size: 10rem;
      opacity: 0.06;
      color: white;
      pointer-events: none;
      line-height: 1;
    }

    /* ===== FAQ ===== */
    .faq-sec {
      padding: 4rem 1.5rem;
      background: #F7F6FA
    }

    .faq-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .faq-list {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border)
    }

    .faq-item {}

    .faq-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 1.2rem 1.5rem;
      background: none;
      border: none;
      font-family: 'Cairo', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #111;
      cursor: pointer;
      text-align: right;
    }

    .faq-btn:hover {
      background: #F6F4FF
    }

    .faq-sep {
      height: 1px;
      background: var(--border);
      margin: 0 1.5rem
    }

    .faq-answer {
      display: none;
      padding: 0 1.5rem 1.2rem;
      font-size: 0.9rem;
      color: #555;
      line-height: 1.8;
    }

    .faq-answer.open {
      display: block
    }

    .faq-chevron {
      font-size: 1rem;
      transition: transform 0.25s;
      flex-shrink: 0;
      color: #888;
    }

    .faq-chevron.rotated {
      transform: rotate(180deg)
    }

    /* ===== SIDEBAR NAV ===== */
    .sidebar {
      position: fixed;
      right: -220px;
      /* hide off-screen */
      top: 0;
      width: 220px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(8px);
      padding-top: 5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 200;
      transition: right 0.3s ease;
    }

    .sidebar a {
      color: var(--purple-dark);
      text-decoration: none;
      padding: 0.75rem 1rem;
      font-weight: 600;
      font-size: 1rem;
      transition: background 0.2s;
    }

    .sidebar a:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    body.has-sidebar {
      margin-right: 0;
    }

    body.has-sidebar.show-sidebar {
      margin-right: 220px;
    }

    body.has-sidebar.show-sidebar .sidebar {
      right: 0;
    }

    /* ===== ENRICHMENTS LIST ===== */
    .enrich-list {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .enrich-list p {
      background: #f3f4f8;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .enrich-list p:hover {
      background: #e1e3eb;
      transform: translateY(-2px);
    }

    .enrich-list p:hover {
      background: #e1e3eb;
    }

    .enrich-list a {
      color: var(--purple-dark);
      text-decoration: none;
      font-weight: 600;
      display: block;
      position: relative;
    }

    /* image modal overlay for enrichments */
    .img-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      align-items: center;
      justify-content: center;
      z-index: 10000;
      padding: 1rem;
    }

    .img-overlay img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .img-overlay.on {
      display: flex;
    }


    .sidebar-toggle {
      position: fixed;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(6px);
      border: none;
      padding: 0.5rem 0.75rem;
      font-size: 1.5rem;
      border-radius: 6px;
      cursor: pointer;
      z-index: 300;
    }



    /* ===== FOOTER ===== */
    footer {
      background: linear-gradient(135deg, #3C1C75 0%, #1D0C36 60%, #6A2D70 100%);
      border-radius: 24px 24px 0 0;
      padding: 3rem 2rem 2rem;
      position: relative;
      overflow: hidden;
      margin-top: 1rem;
    }

    footer::before {
      content: '🌙';
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      font-size: 5rem;
      opacity: 0.06;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center
    }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      margin-bottom: 1.5rem;
    }

    .footer-logo-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      font-weight: 900;
    }

    .footer-logo span {
      color: white;
      font-weight: 800;
      font-size: 1rem
    }

    .footer-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      margin-bottom: 2rem;
    }

    .social-btn {
      width: 42px;
      height: 42px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .social-btn:hover {
      opacity: 0.8
    }

    .social-btn span {
      font-size: 1.1rem
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem 2rem;
      margin-bottom: 2rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.9rem;
      text-decoration: none;
      font-weight: 500;
    }

    .footer-links a:hover {
      color: white;
      text-decoration: underline
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.82rem
    }

    .footer-phone {
      color: #7dd8f8;
      font-weight: 700;
      font-size: 0.95rem;
      direction: ltr;
      display: inline-block
    }

    /* ===== MODAL ===== */
    .ov {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 5, 30, 0.75);
      z-index: 500;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      backdrop-filter: blur(5px);
    }

    .ov.on {
      display: flex
    }

    /* image within overlay should scale nicely */
    .ov img {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 12px;
      object-fit: contain;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .modal {
      background: white;
      border-radius: 24px;
      width: 100%;
      max-width: 530px;
      max-height: 90vh;
      overflow-y: auto;
      animation: popIn 0.3s cubic-bezier(.34, 1.56, .64, 1) both;
    }

    @keyframes popIn {
      from {
        opacity: 0;
        transform: scale(.88) translateY(30px)
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0)
      }
    }

    .m-head {
      background: linear-gradient(135deg, #3C1C75, #6A2D70);
      padding: 2rem 2rem 1.5rem;
      border-radius: 24px 24px 0 0;
      text-align: center;
      position: relative;
    }

    .m-close {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .m-close:hover {
      background: rgba(255, 255, 255, 0.35)
    }

    .m-ico {
      font-size: 2.8rem;
      margin-bottom: 0.5rem
    }

    .m-head h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: white
    }

    .m-body {
      padding: 1.5rem 1.8rem 2rem
    }

    .m-row {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
      padding: 0.9rem 1rem;
      background: #F6F4FF;
      border-radius: 12px;
      margin-bottom: 0.7rem;
      border-right: 4px solid #4931AF;
    }

    .m-row-ic {
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-top: 0.1rem
    }

    .m-row-tx h4 {
      font-size: 0.85rem;
      font-weight: 800;
      color: #3a2590;
      margin-bottom: 0.25rem
    }

    .m-row-tx p,
    .m-row-tx li {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.75
    }

    .m-row-tx ul {
      list-style: none;
      padding: 0
    }

    .m-row-tx li::before {
      content: '• ';
      color: #4931AF;
      font-weight: 700
    }

    .m-act {
      display: block;
      width: 100%;
      padding: 0.9rem;
      background: linear-gradient(135deg, #3C1C75, #4931AF);
      color: white;
      border: none;
      border-radius: 14px;
      font-family: 'Cairo', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      margin-top: 1.3rem;
      transition: opacity 0.2s;
    }

    .m-act:hover {
      opacity: 0.9
    }


    /* ===== IMAGE GALLERY IN MODAL ===== */
    .m-gallery {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem
    }

    .m-gallery img {
      width: 100%;
      border-radius: 14px;
      object-fit: contain;
      max-height: 420px;
      background: #f0f0f0
    }

    .m-gallery-title {
      font-size: 0.85rem;
      font-weight: 800;
      color: #3a2590;
      margin-bottom: 0.4rem
    }

    .m-img-thumb-row {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap
    }

    .m-img-thumb {
      width: 48%;
      border-radius: 12px;
      object-fit: contain;
      cursor: pointer;
      transition: opacity 0.2s;
      background: #f0f0f0
    }

    .m-img-thumb:hover {
      opacity: 0.85
    }


    /* ===== RAMADAN DECO (floating shapes + lanterns) ===== */
    .hero-deco {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }

    .hero-deco .lanterns {
      position: absolute;
      top: 0;
      right: 2rem;
      font-size: 2rem;
      line-height: 1;
      opacity: 0.85;
    }

    .hero-deco .shape {
      position: absolute;
      border-radius: 4px;
      opacity: 0.7;
    }

    .hero-deco .s1 {
      width: 12px;
      height: 12px;
      background: #4931AF;
      top: 12%;
      left: 8%;
      transform: rotate(20deg)
    }

    .hero-deco .s2 {
      width: 10px;
      height: 10px;
      background: #FD8080;
      top: 25%;
      left: 45%;
      transform: rotate(-15deg)
    }

    .hero-deco .s3 {
      width: 8px;
      height: 8px;
      background: #4931AF;
      top: 60%;
      left: 5%;
      transform: rotate(30deg)
    }

    .hero-deco .s4 {
      width: 14px;
      height: 14px;
      background: #00BFB3;
      top: 70%;
      left: 55%;
      transform: rotate(-10deg);
      border-radius: 50%
    }

    .hero-deco .s5 {
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 12px solid #4931AF;
      top: 45%;
      left: 30%;
      background: transparent;
      opacity: 0.4
    }

    .hero-deco .s6 {
      width: 10px;
      height: 10px;
      background: #FD8080;
      bottom: 20%;
      right: 5%;
      transform: rotate(45deg)
    }

    .hero-deco .star1 {
      position: absolute;
      color: #4931AF;
      font-size: 1.1rem;
      top: 15%;
      left: 35%;
      opacity: 0.5
    }

    .hero-deco .star2 {
      position: absolute;
      color: #00BFB3;
      font-size: 0.9rem;
      top: 55%;
      left: 20%;
      opacity: 0.6
    }

    .hero-deco .star3 {
      position: absolute;
      color: #4931AF;
      font-size: 1.3rem;
      bottom: 25%;
      left: 40%;
      opacity: 0.4
    }

    .hero-deco .moon-deco {
      position: absolute;
      top: 30%;
      right: 4%;
      font-size: 3rem;
      opacity: 0.25
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 3rem
      }

      .hero-cards {
        display: flex;
        order: 2
      }

      .hero-text {
        order: 1
      }

      .email-row {
        grid-template-columns: 1fr
      }

      .email-art {
        display: none
      }

      .annual {
        flex-direction: column;
        text-align: center
      }

      .footer-links {
        gap: 0.8rem 1.2rem
      }
    }

    /* animate cards in */
    .act-card {
      opacity: 0;
      transform: translateY(20px);
      animation: riseUp 0.55s ease forwards
    }

    .act-card:nth-child(1) {
      animation-delay: 0.05s
    }

    .act-card:nth-child(2) {
      animation-delay: 0.15s
    }

    .act-card:nth-child(3) {
      animation-delay: 0.25s
    }

    .act-card:nth-child(4) {
      animation-delay: 0.35s
    }

    @keyframes riseUp {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ===== DARK MODE ===== */
    body.dark {
      background: #0f0f13;
      color: #e8e8f0;
    }

    body.dark .navbar {
      background: rgba(18, 18, 26, 0.97);
      border-bottom-color: #2a2a3a;
      box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    }

    body.dark .nav-sep {
      background: #2a2a3a
    }

    body.dark #darkToggle {
      background: #2a2a3a;
      color: #e8e8f0
    }

    /* Dark hero */
    body.dark .hero {
      background: #12121a
    }

    body.dark .hero::before {
      background-image: radial-gradient(circle, rgba(140, 110, 255, 0.22) 1.2px, transparent 1.2px);
    }

    body.dark .hero::after {
      background:
        radial-gradient(ellipse at 20% 60%, rgba(18, 18, 26, 0.8) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(18, 18, 26, 0.65) 0%, transparent 45%);
    }

    /* Dark hero cards */
    body.dark .hero-card-stat {
      background: #1a2e2e
    }

    body.dark .hero-card-stat p:first-child {
      color: #4dcfbf
    }

    body.dark .hero-card-stat p:last-child {
      color: #4dcfbf
    }

    body.dark .hero-card-reg {
      background: #2e1a20
    }

    body.dark .hero-card-reg-text h3 {
      color: #ff7088
    }

    body.dark .hero-card-reg-text p {
      color: #aaa
    }

    /* Dark sections */
    body.dark .section {
      background: #0f0f13
    }

    body.dark .sec-title {
      color: #e8e8f0
    }

    body.dark .act-card.blue {
      background: #0e1e35
    }

    body.dark .act-card.rose {
      background: #2e1220
    }

    body.dark .act-card.green {
      background: #0e2210
    }

    body.dark .act-card.teal {
      background: #0a1e20
    }

    body.dark .act-name {
      color: #e8e8f0
    }

    body.dark .act-desc {
      color: #aaa
    }

    body.dark .act-tag {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.1);
      color: #bbb
    }

    body.dark .act-more-btn {
      background: rgba(255, 255, 255, 0.1)
    }

    /* Dark stats */
    body.dark .stats-bg {
      background: #0a0a12
    }

    body.dark .stat-card {
      background: #18181f
    }

    body.dark .stat-card-text h3 {
      color: #ccc
    }

    body.dark .stat-card-text p.num {
      color: #e8e8f0
    }

    body.dark .stat-card-text span {
      color: #888
    }

    /* Dark FAQ */
    body.dark .faq-sec {
      background: #0a0a12
    }

    body.dark .faq-list {
      background: #18181f;
      border-color: #2a2a3a
    }

    body.dark .faq-btn {
      color: #e8e8f0
    }

    body.dark .faq-btn:hover {
      background: #1e1e2e
    }

    body.dark .faq-sep {
      background: #2a2a3a
    }

    body.dark .faq-answer {
      color: #bbb
    }


    /* Dark modal */
    body.dark .modal {
      background: #18181f
    }

    body.dark .m-row {
      background: #1e1e2e;
      border-right-color: #6a4dcf
    }

    body.dark .m-row-tx h4 {
      color: #a899ff
    }

    body.dark .m-row-tx p,
    .m-row-tx li {
      color: #bbb
    }

    /* Dark annual */
    body.dark section[style*="padding:3rem"] {
      background: #0a0a12;
    }
