/* ── Reset ── */
*,::before,::after{box-sizing:border-box;margin:0;padding:0}
html{line-height:1.5;-webkit-text-size-adjust:100%}
body{line-height:inherit}
img,svg{display:block;max-width:100%}
button,input{font-family:inherit;font-size:100%}

/* ── Global Variables & Base ── */
:root {
      --teal: #2dd4c8;
      --teal-dim: #1a9e95;
    }
    * { box-sizing: border-box; }
    body {
      background-color: #02080f;
      color: #e2eaf2;
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; }

/* ── Nav ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      border-bottom: 1px solid rgba(45,212,200,0.12);
      background: rgba(2, 8, 15, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2rem; height: 68px;
    }
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
    .nav-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
    .nav-brand { line-height: 1.2; }
    .nav-brand-name {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700; font-size: 0.95rem;
      letter-spacing: 0.18em; color: #fff;
    }
    .nav-brand-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.6rem; letter-spacing: 0.3em;
      color: var(--teal); text-transform: uppercase; opacity: 0.8;
    }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem; letter-spacing: 0.2em;
      color: rgba(226,234,242,0.65); text-decoration: none;
      text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--teal); }
    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
      border: 1px solid var(--teal); color: var(--teal);
      padding: 0.45rem 1.2rem; border-radius: 2px;
      text-decoration: none; transition: all 0.2s;
    }
    .nav-cta:visited { color: var(--teal); }
    .nav-links a.nav-cta:hover { background: var(--teal); color: #02080f; }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--teal); transition: all 0.3s; }
    .mobile-menu {
      display: none; flex-direction: column; gap: 0;
      background: rgba(2, 8, 15, 0.97); border-top: 1px solid rgba(45,212,200,0.12);
      padding: 1rem 2rem 1.5rem;
    }
    .mobile-menu a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(226,234,242,0.7); text-decoration: none;
      padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--teal); }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu.open { display: flex; }
    }

/* ── Page Hero ── */
    .page-hero {
      min-height: 52vh; display: flex; flex-direction: column; justify-content: flex-end;
      padding-top: 68px; position: relative; overflow: hidden;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 20%, rgba(45,212,200,0.06) 0%, transparent 60%),
        linear-gradient(to bottom, transparent 30%, rgba(2,8,15,0.98) 100%);
    }
    .page-hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 3.5rem;
    }
    .page-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
    .page-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--teal); }
    .page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1.05; max-width: 640px; }
    .page-hero-sub { margin-top: 1.25rem; font-size: 1rem; line-height: 1.8; color: rgba(226,234,242,0.55); max-width: 520px; }

    .star-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
      background-size: 40px 40px;
      -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
      mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
      opacity: 0.3;
    }

/* ── Common Section Styles ── */
    .section-divider { border-top: 1px solid rgba(45,212,200,0.1); }
    .section-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 1rem;
    }
    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700;
      letter-spacing: -0.01em; color: #fff; line-height: 1.15;
      max-width: 640px; margin-bottom: 1.5rem;
    }
    .section-body {
      font-size: 0.98rem; line-height: 1.85; color: rgba(226,234,242,0.62);
      max-width: 620px;
    }
    .section-body p + p { margin-top: 1.25rem; }
    .section-body b, .section-body strong { color: rgba(226,234,242,0.9); font-weight: 500; }

/* ── Buttons ── */
    .btn-primary {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
      background: var(--teal); color: #02080f; font-weight: 600;
      padding: 0.85rem 2rem; border-radius: 2px; text-decoration: none;
      transition: all 0.2s; border: 1px solid var(--teal);
    }
    .btn-primary:hover { background: transparent; color: var(--teal); }
    .btn-outline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
      border: 1px solid rgba(226,234,242,0.25); color: rgba(226,234,242,0.75);
      padding: 0.85rem 2rem; border-radius: 2px; text-decoration: none;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ── Contact section ── */
    .contact-section {
      background: rgba(45,212,200,0.03);
      border-top: 1px solid rgba(45,212,200,0.1);
    }
    .contact-ctas {
      display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem;
    }
    .contact-inner {
      max-width: 1200px; margin: 0 auto; padding: 5rem 2rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    }
    @media (max-width: 768px) {
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    .contact-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 0.5rem;
    }
    .contact-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
      color: #fff; line-height: 1.1; margin-bottom: 1.25rem;
    }
    .contact-desc { font-size: 0.95rem; line-height: 1.8; color: rgba(226,234,242,0.55); }
    .contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 0.25rem;
    }
    .contact-item-val {
      font-size: 0.95rem; color: rgba(226,234,242,0.75);
    }
    .contact-item-val a { color: rgba(226,234,242,0.75); text-decoration: none; transition: color 0.2s; }
    .contact-item-val a:hover { color: var(--teal); }

/* ── Footer ── */
    footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      background: #010509;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 2rem 2rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem; letter-spacing: 0.15em;
      color: rgba(226,234,242,0.6);
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(226,234,242,0.6); text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--teal); }

/* ── Reveal animations ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

/* ── Press Bar ── */
    .press-bar {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 1.25rem 2rem;
    }
    .press-bar-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem 2.5rem;
    }
    .press-bar-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--teal); white-space: nowrap;
    }
    .press-bar-divider {
      width: 1px; height: 14px;
      background: rgba(226,234,242,0.1);
    }
    .press-bar-items {
      display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 2rem;
    }
    .press-bar-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; text-decoration: none;
      color: rgba(226,234,242,0.45); transition: color 0.2s;
      white-space: nowrap;
    }
    .press-bar-item:hover { color: var(--teal); }
    .press-bar-more {
      color: var(--teal) !important; opacity: 0.6;
      border: 1px solid rgba(45,212,200,0.25);
      padding: 0.15rem 0.6rem; border-radius: 2px;
      font-size: 0.68rem; transition: all 0.2s;
    }
    .press-bar-more:hover { opacity: 1; background: rgba(45,212,200,0.08); }
    @media (max-width: 600px) {
      .press-bar-divider { display: none; }
      .press-bar-inner { justify-content: center; }
      .press-bar-label { width: 100%; text-align: center; }
      .press-bar-items { justify-content: center; }
    }