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

    :root {
      --gold:        #B8974A;
      --gold-light:  #F9F4EA;
      --gold-dark:   #8A6E32;
      --navy:        #1A2340;
      --navy-mid:    #243055;
      --surface:     #F8F9FB;
      --white:       #FFFFFF;
      --text:        #0F172A;
      --muted:       #64748B;
      --border:      #E2E8F0;
      --radius:      12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-text {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .logo-text span {
      display: block;
      font-size: 0.68rem;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .logo-seal {
      width: 40px;
      height: 40px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-seal svg { display: block; }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--gold) !important;
      color: var(--white) !important;
      padding: 9px 20px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
      transform: translateY(-1px) !important;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 68px;
      overflow: hidden;
      background: #0D1225;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/bg.png');
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
      opacity: 0.45;
      transform: scaleX(-1);
    }

    /* Vignette: strong on edges, cleaner in center */
    .hero-pattern {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(10,15,38,0.98) 0%, rgba(10,15,38,0.82) 42%, rgba(10,15,38,0.35) 100%),
        linear-gradient(to top,   rgba(10,15,38,0.7)  0%, transparent 40%),
        linear-gradient(to bottom,rgba(10,15,38,0.5)  0%, transparent 25%);
      pointer-events: none;
    }

    /* Subtle gold accent — bottom left only */
    .hero-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 45% at 8% 95%, rgba(184,151,74,0.14) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      opacity: 0.06;
    }

    .hero-inner {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 64px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(184,151,74,0.12);
      border: 1px solid rgba(184,151,74,0.3);
      color: #C9A85C;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 100px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .hero-badge-dot {
      width: 5px;
      height: 5px;
      background: var(--gold);
      border-radius: 50%;
    }

    h1 {
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.035em;
      color: var(--white);
      margin-bottom: 0;
    }

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

    .hero-founded {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.35);
      font-weight: 600;
      letter-spacing: 0.12em;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .hero-divider {
      width: 48px;
      height: 2px;
      background: var(--gold);
      opacity: 0.6;
      margin: 28px 0;
      border-radius: 2px;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
      margin-bottom: 44px;
      max-width: 500px;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--gold);
      color: var(--white);
      padding: 15px 32px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(184,151,74,0.4);
    }

    .btn-gold:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(184,151,74,0.5);
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.85);
      padding: 15px 32px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.15);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
      backdrop-filter: blur(4px);
    }

    .btn-outline-white:hover {
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      width: 100%;
      max-width: 520px;
    }

    .hero-meta svg { flex-shrink: 0; opacity: 0.4; }

    .hero-meta span {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.02em;
    }


    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--navy);
      padding: 0 64px;
      position: relative;
      overflow: hidden;
    }

    .trust-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(184,151,74,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 80% at 100% 50%, rgba(184,151,74,0.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }

    .trust-stat {
      padding: 40px 36px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 16px;
      position: relative;
      min-width: 0;
    }

    .trust-stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.1);
    }

    /* Gold top accent line per stat */
    .trust-stat::before {
      content: '';
      position: absolute;
      top: 0; left: 36px;
      width: 32px;
      height: 2px;
      background: var(--gold);
      opacity: 0.7;
    }

    .trust-stat-icon {
      width: 34px;
      align-self: stretch;
      background: rgba(184,151,74,0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-bottom: 0;
    }

    .trust-stat-body { min-width: 0; }

    .trust-stat-body strong {
      display: block;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 7px;
      overflow-wrap: break-word;
    }

    .trust-stat-body strong em {
      color: var(--gold);
      font-style: normal;
    }

    .trust-stat-body p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.5;
      font-weight: 400;
      max-width: 160px;
    }

    @media (max-width: 768px) {
      .trust-bar { padding: 0 20px; }
      .trust-bar-inner { grid-template-columns: 1fr 1fr; }
      .trust-stat { padding: 36px 24px; }
      .trust-stat:not(:last-child)::after { display: none; }
      .trust-stat::before { left: 24px; }
    }

    /* ── SECTION SHARED ── */
    section { padding: 80px 32px; }

    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1.18;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.75;
    }

    /* ── MISSIONS ── */
    .missions-section { background: var(--surface); }

    .missions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .mission-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: box-shadow 0.25s, transform 0.25s;
    }

    .mission-card:hover {
      box-shadow: 0 10px 36px rgba(0,0,0,0.07);
      transform: translateY(-3px);
    }

    .mission-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .mission-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .mission-card p {
      font-size: 0.855rem;
      color: var(--muted);
      line-height: 1.68;
    }

    /* ── DOMAINS ── */
    .domains-section { background: var(--navy); }

    .domains-section .section-eyebrow { color: var(--gold); }
    .domains-section .section-title { color: var(--white); }
    .domains-section .section-sub { color: rgba(255,255,255,0.55); }

    .domains-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .domain-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 32px 28px;
      transition: background 0.25s, transform 0.25s, border-color 0.25s;
      text-decoration: none;
      display: block;
      position: relative;
    }

    .domain-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(184,151,74,0.35);
      transform: translateY(-4px);
    }

    .domain-card-num {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .domain-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 24px;
      right: 24px;
    }

    .dc-gold   { background: rgba(184,151,74,0.20); }
    .dc-blue   { background: rgba(96,165,250,0.18); }
    .dc-green  { background: rgba(74,222,128,0.15); }
    .dc-red    { background: rgba(248,113,113,0.15); }
    .dc-purple { background: rgba(167,139,250,0.15); }
    .dc-amber  { background: rgba(251,191,36,0.15); }
    .dc-teal   { background: rgba(45,212,191,0.15); }

    .domain-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .domain-card p {
      font-size: 0.845rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
    }

    .domain-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--gold);
      margin-top: 18px;
    }

    a.domain-card {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .domain-card-featured {
      border: 1.5px solid rgba(184,151,74,0.4) !important;
      background: linear-gradient(135deg, rgba(184,151,74,0.08) 0%, rgba(26,35,64,0.6) 100%) !important;
    }

    .domain-card-featured:hover {
      border-color: var(--gold) !important;
      box-shadow: 0 8px 32px rgba(184,151,74,0.15) !important;
    }

    .domains-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 48px;
      flex-wrap: wrap;
    }

    .domains-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--white);
      padding: 13px 28px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.2s;
    }
    .domains-cta-btn:hover { background: var(--gold-dark); }

    .domains-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .domains-cta-link:hover { color: var(--white); }

    /* ── ABOUT ── */
    .about-section { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 0;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 60% 30%, rgba(184,151,74,0.2) 0%, transparent 60%);
    }

    .about-img-text {
      position: relative;
      text-align: center;
    }

    .about-img-text p {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 10px;
    }

    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-badge-icon {
      width: 40px;
      height: 40px;
      background: var(--gold-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-badge-text strong {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
    }

    .about-badge-text span {
      font-size: 0.72rem;
      color: var(--muted);
    }

    .about-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1.18;
      margin-bottom: 20px;
    }

    .about-content h2 span { color: var(--gold); }

    .about-content > p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .about-list {
      list-style: none;
      margin: 28px 0 32px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.55;
    }

    .about-list-bullet {
      width: 28px;
      height: 28px;
      background: var(--gold-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .about-jurisdictions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .juris-tag {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--navy);
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 6px 14px;
      border-radius: 100px;
    }

    /* ── CTA BANNER ── */
    .cta-section { background: var(--surface); }

    .cta-box {
      background: var(--navy);
      border-radius: 24px;
      padding: 72px 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(184,151,74,0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-box h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .cta-box > div > p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 480px;
    }

    .cta-box-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--navy);
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .cta-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      text-align: center;
    }

    /* ── CONTACT ── */
    .contact-section { background: var(--white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      margin-top: 40px;
    }

    .contact-info h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }

    .contact-item-icon {
      width: 42px;
      height: 42px;
      background: var(--gold-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-item-body strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .contact-item-body span {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .contact-form {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
    }

    .contact-form h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      font-size: 0.875rem;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-submit {
      width: 100%;
      padding: 13px;
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }

    .form-submit:hover {
      background: var(--gold-dark);
      transform: translateY(-1px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 60px 32px 32px;
      color: rgba(255,255,255,0.5);
    }

    .footer-inner { max-width: 1200px; margin: 0 auto; }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand p {
      margin-top: 14px;
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 280px;
      color: rgba(255,255,255,0.45);
    }

    .footer-brand .logo-text { color: var(--white); }
    .footer-brand .logo-text span { color: var(--gold); }

    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li { margin-bottom: 10px; }

    .footer-col ul li a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.82rem;
    }

    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.3);
    }

    /* ── ANIMATIONS ── */

    /* Hero entrance */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-24px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.94); }
      to   { opacity: 1; transform: scale(1); }
    }

    @keyframes lineGrow {
      from { width: 0; }
      to   { width: 48px; }
    }

    /* Hero elements stagger */
    .hero-badge    { animation: slideRight 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
    h1             { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
    .hero-divider  { animation: lineGrow 0.6s cubic-bezier(0.16,1,0.3,1) 0.7s both; }
    .hero-sub      { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.55s both; }
    .hero-actions  { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.7s both; }
    .hero-meta     { animation: fadeIn 0.6s ease 0.9s both; }

    /* Scroll-reveal base state */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }

    .reveal.reveal-left {
      transform: translateX(-32px);
    }

    .reveal.reveal-scale {
      transform: scale(0.95);
    }

    .reveal.in-view {
      opacity: 1;
      transform: none;
    }

    /* Stagger children inside a revealed container */
    .stagger-children > * {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }

    .stagger-children.in-view > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
    .stagger-children.in-view > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.13s; }
    .stagger-children.in-view > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.21s; }
    .stagger-children.in-view > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.29s; }
    .stagger-children.in-view > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.37s; }
    .stagger-children.in-view > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.45s; }
    .stagger-children.in-view > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.53s; }
    .stagger-children.in-view > *:nth-child(8) { opacity:1; transform:none; transition-delay: 0.61s; }

    /* Trust bar stat slide-in */
    .trust-bar-inner.stagger-children > * {
      transform: translateY(16px);
    }

    /* ── MOBILE HAMBURGER ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .domains-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }

      section { padding: 60px 20px; }

      .missions-grid,
      .domains-grid { grid-template-columns: 1fr; }
      .domain-card:last-child { grid-column: auto !important; }

      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }

      .about-img-wrap { display: none; }

      .cta-box {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 28px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .form-row { grid-template-columns: 1fr; }

      /* Hero — mobile: ~30% shorter, smaller type, pulled toward the left */
      .hero { min-height: 70vh; }
      .hero-inner { padding: 38px 22px; }
      .hero h1 { font-size: 1.95rem; line-height: 1.14; letter-spacing: -0.02em; }
      .hero-badge {
        font-size: 0.6rem;
        padding: 6px 12px;
        margin-bottom: 18px;
        letter-spacing: 0.05em;
        flex-wrap: wrap;
        max-width: 100%;
      }
      .hero-divider { margin: 16px 0; }
      .hero-sub {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 26px;
        max-width: 100%;
      }
      .hero-actions { gap: 10px; margin-bottom: 26px; }
      .hero-meta { max-width: 100%; padding-top: 18px; }
      .hero-meta span { font-size: 0.72rem; }
    }

    /* ── GALLERY PREVIEW ── */
    .gallery-preview-section { background: var(--surface); padding: 96px 32px; }
    .gallery-preview-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 200px 200px;
      gap: 12px;
      margin-top: 48px;
    }
    .gp-tile {
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      text-decoration: none;
      position: relative;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .gp-tile:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
    .gp-tile.gp-large { grid-row: span 2; }
    .gp-tile::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 30% 30%, rgba(184,151,74,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .gp-tile-inner {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .gp-tile-inner span {
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .gp-cta-tile {
      border-radius: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px;
      text-align: center;
    }
    .gp-cta-tile p { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
    .gp-btn {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .gp-btn:hover { background: var(--gold); }

    @media (max-width: 768px) {
      .gallery-preview-section { padding: 64px 20px; }
      .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
      }
      .gp-tile.gp-large { grid-row: span 1; grid-column: span 2; }
    }
