:root {
  --navy-950: #060d33;
  --navy-900: #0a1445;
  --navy-800: #10205e;
  --navy-700: #1a2f7d;
  --blue-500: #2a4bd7;
  --red-500: #e0192e;
  --red-600: #b8121f;
  --white: #ffffff;
  --off-white: #eef1fb;
  --muted: #a9b3d9;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(3, 8, 30, 0.45);
  --header-h: 72px;
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font);
  background: var(--navy-950);
  color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.accent { color: var(--red-500); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(6, 13, 51, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(6, 13, 51, 0.92);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
}

.brand-logo {
  height: 46px;
  width: 46px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red-500);
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--red-500);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--red-600);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background:
    radial-gradient(1100px 600px at 85% 110%, rgba(224, 25, 46, 0.35), transparent 60%),
    radial-gradient(900px 700px at 15% -10%, rgba(42, 75, 215, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 55%, #1a0a26 100%);
  overflow: hidden;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.stripe {
  position: absolute;
  height: 240vmax;
  width: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(58deg);
  border-radius: 8px;
}

.stripe-red   { background: var(--red-500);  right: 4%;  width: 14px; opacity: 0.75; }
.stripe-white { background: var(--white);    right: 7%;  width: 6px;  opacity: 0.5;  }
.stripe-blue  { background: var(--blue-500); right: 9.5%; width: 10px; opacity: 0.6; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: clamp(180px, 32vw, 300px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow), 0 0 90px rgba(42, 75, 215, 0.35);
  margin-bottom: 1.75rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}

.hero-sub {
  max-width: 620px;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0.9rem 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.meta-item { display: flex; flex-direction: column; text-align: center; }

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red-500);
  font-weight: 700;
}

.meta-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(224, 25, 46, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(224, 25, 46, 0.55);
}

.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 3rem; font-size: 1.08rem; }

.hashtag {
  margin-top: 2.6rem;
  display: inline-block;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 30px rgba(224, 25, 46, 0.25);
}

.section { padding: 5.5rem 0; }

.section-alt {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-500);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.about-text p + p { margin-top: 1rem; }
.about-text { color: var(--muted); font-size: 1.02rem; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 25, 46, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.feature-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red-500);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: saturate(0.9);
}

.location-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--red-500);
  border-radius: var(--radius);
  padding: 2rem;
}

.location-info h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.location-info p { color: var(--muted); }

.faq {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] { border-color: rgba(224, 25, 46, 0.5); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red-500);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-section {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 120%, rgba(224, 25, 46, 0.4), transparent 65%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cta-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cta-text {
  color: var(--muted);
  max-width: 520px;
  margin: 0.9rem auto 2rem;
  font-size: 1.05rem;
}

.apply-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.apply-card {
  flex: 0 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.apply-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 25, 46, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.apply-card-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
}

.apply-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(224, 25, 46, 0.12);
  color: var(--red-500);
  transition: background 0.3s ease, color 0.3s ease;
}

.apply-card-icon svg {
  width: 30px;
  height: 30px;
}

.apply-card:hover .apply-card-icon {
  background: rgba(224, 25, 46, 0.2);
}

.apply-card-btn {
  margin-top: 0.8rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 2rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(224, 25, 46, 0.35);
  transition: box-shadow 0.3s ease;
}

.apply-card:hover .apply-card-btn {
  box-shadow: 0 10px 26px rgba(224, 25, 46, 0.5);
}

.cta-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer {
  background: #04081f;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-logo {
  height: 40px;
  width: 40px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-note { color: var(--muted); font-size: 0.9rem; }
.footer-copy { color: rgba(169, 179, 217, 0.55); font-size: 0.78rem; margin-top: 0.4rem; }

.footer-dev { font-size: 0.78rem; color: rgba(169, 179, 217, 0.55); }

.footer-dev a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-dev a:hover { color: var(--red-500); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(6, 13, 51, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav.open { max-height: 360px; }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    border-radius: 0;
    background: var(--red-500);
    margin-top: 0;
  }

  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 2rem); }

  .hero-meta {
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.2rem 2.4rem;
  }

  .stripe-red { right: -2%; }
  .stripe-white { right: 1%; }
  .stripe-blue { right: 3.5%; }

  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .feature-cards { grid-template-columns: 1fr; }

  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .brand-text { font-size: 1.1rem; }
}
