/* ==========================================================================
   ElectHQ Landing Page - Styles
   Design tokens from Figma
   ========================================================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
  --header-height-desktop: 80px;
  --header-height-mobile: 56px;
  /* Colors */
  --color-primary: #090F40;
  --color-danger-400: #FF7D5D;
  --color-danger-500: #FF4127;
  --color-success-300: #60D874;
  --color-content-500: #111;
  --color-content-400: #545454;
  --color-content-300: #878787;
  --color-content-invert: #ffffff;
  --color-background-100: #ffffff;
  --color-background-200: #F6F6F6;
  --color-background-300: #EEEEEE;
  --color-neutral-100: #EEEEEE;
  --color-neutral-400: #757575;
  --color-pricing-bg: #F4F5F8;

  /* Shadows */
  --shadow-elevated: 0px 4px 30px 0px rgba(42, 77, 126, 0.1),
                     0px 1px 4px 0px rgba(111, 127, 159, 0.2);

  /* Fonts */
  --font-display: 'Lexend Deca', sans-serif;
  /* Body copy — marketing pages (Features, Pricing, etc.); Terms SaaS block uses its own Google-export Calibri */
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  /* Primary nav / menu bar — Roboto (loaded via Google Fonts on marketing pages) */
  --font-nav: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-padding-x: 96px;
  --section-padding-y: 80px;
  --max-width: 1280px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-content-500);
  background: var(--color-background-100);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > .footer {
  margin-top: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.15px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-content-invert);
}

.btn--tonal {
  background: var(--color-background-300);
  color: var(--color-content-400);
}

.btn--full {
  width: 100%;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-desktop);
  z-index: 100;
  background: var(--color-background-100);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header__inner {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.header__logo img {
  width: 160px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.header__logo-text {
  color: var(--color-primary);
}

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

.header__nav-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-close {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
  flex-shrink: 0;
}

/* Hidden on desktop; shown inside mobile drawer */
.header__actions-mobile {
  display: none;
}

.header__mobile-signin,
.header__nav-footer {
  display: none;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

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

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  margin-top: var(--header-height-desktop);
  display: flex;
  flex-direction: column;
}

.hero__top {
  background: var(--color-primary);
  padding: 40px var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.hero__content {
  flex: 1;
}

.hero__title-wrapper {
  position: relative;
  display: inline-grid;
}

.hero__title-highlight {
  position: absolute;
  top: 0;
  left: 154px;
  width: 295px;
  height: 96px;
  background: var(--color-danger-500);
}

.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 72px;
  line-height: 96px;
  color: var(--color-content-invert);
  white-space: nowrap;
  z-index: 1;
}

.hero__map {
  width: 100%;
  height: 455px;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(129, 134, 237, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(129, 134, 237, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(90, 95, 200, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(90, 95, 200, 0.15) 0%, transparent 40%);
  background-color: #0a1050;
}

.hero__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(200, 210, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 45%, rgba(200, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 30%, rgba(200, 210, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(200, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(200, 210, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 50%, rgba(200, 210, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, rgba(200, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 15%, rgba(200, 210, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 75%, rgba(200, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 35%, rgba(200, 210, 255, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 30% 55%, rgba(200, 210, 255, 0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 75% 40%, rgba(200, 210, 255, 0.3) 0%, transparent 100%);
}

.hero__map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(129, 134, 237, 0.08);
  mix-blend-mode: soft-light;
}

.hero__bottom {
  background: var(--color-primary);
  padding: 40px var(--section-padding-x);
}

.hero__description {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.15px;
  color: var(--color-content-invert);
  text-align: center;
}

/* ==========================================================================
   Mission Section
   ========================================================================== */
.mission {
  padding: var(--section-padding-y) 160px;
}

.mission__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.mission__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
}

.mission__text strong {
  font-weight: 700;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
  padding: var(--section-padding-y) var(--section-padding-x) 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.features__header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.features__title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
}

.features__title strong {
  font-weight: 600;
}

.features__grid {
  background: var(--color-background-200);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.features__row {
  display: flex;
  gap: 24px;
}

.features__row--shadow {
  background: var(--color-background-100);
  box-shadow: var(--shadow-elevated);
}

.features__row--full {
  width: 100%;
}

.feature-card {
  flex: 1;
  padding: 24px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card--full {
  flex: none;
  width: 100%;
}

.feature-card__icon {
  padding: 0;
}

.feature-card__icon svg {
  width: 80px;
  height: 80px;
}

.feature-card__icon img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: contain;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
}

.feature-card__desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.15px;
  color: var(--color-content-400);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
  padding: var(--section-padding-y) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pricing__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
  text-align: center;
  padding: 0 var(--section-padding-x);
}

.pricing__cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  padding: 24px var(--section-padding-x);
  background: var(--color-pricing-bg);
  width: 100%;
}

/* Pricing Card */
.pricing-card {
  background: var(--color-background-100);
  border: 1px solid var(--color-neutral-100);
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  width: 384px;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
}

.pricing-card__voters {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.15px;
  color: var(--color-danger-400);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.15px;
  color: var(--color-content-500);
  text-align: center;
  width: 100%;
}

/* Toggle */
.pricing-card__toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  width: 100%;
  justify-content: center;
}

.toggle-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.15px;
  color: var(--color-content-300);
  cursor: pointer;
}

.toggle-option--active {
  color: var(--color-neutral-400);
}

.toggle-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-content-300);
  display: inline-block;
  position: relative;
  object-fit: contain;
}

.toggle-radio--checked {
  border-color: var(--color-primary);
}

.toggle-radio--checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

img.toggle-radio {
  border: 0;
  border-radius: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 40px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch__input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-switch__slider {
  position: absolute;
  inset: 0;
  background: var(--color-background-200);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(9, 15, 64, 0.06);
}

.toggle-switch__slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--color-content-invert);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(111, 127, 159, 0.33);
  transition: transform 0.25s ease;
}

.toggle-switch__input:checked + .toggle-switch__slider {
  background: var(--color-success-300);
}

.toggle-switch__input:checked + .toggle-switch__slider::before {
  transform: translateX(16px);
}

/* Pricing Features */
.pricing-card__features {
  padding: 0 24px;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.15px;
  color: var(--color-content-400);
}

.pricing-card__list li svg {
  flex-shrink: 0;
}

.pricing-card__list li svg circle {
  fill: var(--color-success-300);
}

.pricing-card__list li img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.pricing-card__action {
  padding: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-primary);
  padding: 80px 48px 40px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand-image {
  height: 59px;
  width: auto;
  max-width: min(100%, 320px);
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__flag-image {
  width: 64px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
}

.footer__logo-text {
  color: var(--color-content-invert);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  flex-wrap: nowrap;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.footer__link {
  padding: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: var(--color-content-300);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-content-invert);
}

.footer__copy {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: var(--color-content-invert);
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ==========================================================================
   Responsive - Tablet (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding-x: 48px;
  }

  .hero__title {
    font-size: 56px;
    line-height: 72px;
  }

  .hero__title-highlight {
    left: 120px;
    width: 230px;
    height: 72px;
  }

  .hero__map {
    height: 300px;
  }

  .hero__description {
    font-size: 20px;
    line-height: 28px;
  }

  .mission {
    padding: 60px 48px;
  }

  .mission__text {
    font-size: 32px;
  }

  .features__header {
    flex-direction: column;
    gap: 20px;
  }

  .features__title {
    font-size: 32px;
  }

  .feature-card__title {
    font-size: 26px;
  }

  .feature-card__desc {
    font-size: 18px;
    line-height: 26px;
  }

  .pricing__cards {
    flex-direction: column;
    align-items: center;
    padding: 24px 48px;
  }

  .pricing-card,
  .pricing-card--featured {
    width: 100%;
    max-width: 420px;
  }

  .footer__inner {
    gap: 60px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    flex: initial;
  }
}

/* ==========================================================================
   Responsive - Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding-x: 24px;
    --section-padding-y: 48px;
  }

  .header {
    height: var(--header-height-mobile);
  }

  /* Header Mobile */
  .header__inner {
    padding: 0 12px;
    justify-content: space-between;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: min(272px, calc(100vw - 96px));
    height: calc(100vh - var(--header-height-mobile));
    background: var(--color-background-100);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 16px 20px;
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
    overflow-y: auto;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 28px;
  }

  .header__nav-link {
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0;
    width: 100%;
  }

  .header__actions {
    display: none;
  }

  .header__actions--mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .header__nav-wrapper {
    display: contents;
  }

  .header__hamburger {
    display: flex;
    order: 1;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
  }

  /* Mobile nav actions inside drawer */
  .header__nav .header__actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
  }

  .header__nav .header__actions-mobile .btn {
    width: 100%;
    justify-content: center;
  }

  .header__logo {
    display: none;
  }

  .header__mobile-signin {
    display: inline-flex;
    order: 3;
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 16px;
    border-radius: 4px;
  }

  .header__nav-footer {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding-top: 16px;
    font-size: 11px;
    line-height: 16px;
    color: var(--color-content-400);
  }

  /* Hero Mobile */
  .hero {
    margin-top: var(--header-height-mobile);
  }

  .hero__top {
    padding: 32px 24px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 56px;
  }

  .hero__title-highlight {
    left: 86px;
    width: 168px;
    height: 56px;
  }

  .hero__map {
    height: 220px;
  }

  .hero__bottom {
    padding: 32px 24px;
  }

  .hero__description {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  /* Mission Mobile */
  .mission {
    padding: 48px 24px;
  }

  .mission__text {
    font-size: 26px;
    line-height: 1.4;
  }

  /* Features Mobile */
  .features {
    padding: 48px 24px 24px;
  }

  .features__grid {
    padding: 20px;
    gap: 20px;
  }

  .features__row {
    flex-direction: column;
    gap: 20px;
  }

  .features__row--shadow {
    box-shadow: none;
    background: transparent;
  }

  .feature-card {
    padding: 20px;
    background: var(--color-background-100);
    box-shadow: var(--shadow-elevated);
    border-radius: 8px;
  }

  .feature-card__icon {
    padding: 0;
  }

  .feature-card__icon svg {
    width: 60px;
    height: 60px;
  }

  .feature-card__icon img {
    width: 60px;
    height: 60px;
  }

  .feature-card__title {
    font-size: 24px;
  }

  .feature-card__desc {
    font-size: 16px;
    line-height: 24px;
  }

  /* Pricing Mobile */
  .pricing {
    padding: 48px 0;
  }

  .pricing__title {
    font-size: 32px;
    padding: 0 24px;
  }

  .pricing__cards {
    padding: 24px;
    gap: 24px;
  }

  .pricing-card,
  .pricing-card--featured {
    width: 100%;
  }

  .pricing-card__price {
    font-size: 32px;
  }

  /* Footer Mobile */
  .footer {
    padding: 48px 24px 32px;
  }

  .footer__inner {
    gap: 40px;
  }

  .footer__brand-image {
    max-width: 100%;
    height: auto;
    max-height: 48px;
    width: auto;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: initial;
  }

  .footer__link {
    font-size: 16px;
    line-height: 20px;
    padding: 0;
  }

  .footer__copy {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Overlay for mobile nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 15, 64, 0.55);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
