:root {
  --ltga-ink: #eaf3ff;
  --ltga-muted: #9eb3c6;
  --ltga-line: rgba(255, 255, 255, .13);
  --ltga-panel: rgba(8, 18, 34, .78);
  --ltga-cyan: #35d8ff;
  --ltga-lime: #82f28f;
  --ltga-magenta: #ff4fd8;
  --ltga-gold: #ffd166;
  --ltga-bg: #050914;
  --ltga-radius: 8px;
}

body.home,
body.page-template-page-blank,
.ltga-page {
  background: var(--ltga-bg);
}

body.home .header-wrapper,
body.home .footer-wrapper,
body.home .absolute-footer,
body.page-template-page-blank .header-wrapper,
body.page-template-page-blank .footer-wrapper,
body.page-template-page-blank .absolute-footer {
  display: none !important;
}

.ltga-page {
  color: var(--ltga-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.ltga-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ltga-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ltga-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 9, 20, .78);
  backdrop-filter: blur(18px);
}

.ltga-brand,
.ltga-nav div,
.ltga-nav a {
  display: inline-flex;
  align-items: center;
}

.ltga-brand {
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
}

.ltga-brand svg {
  color: var(--ltga-cyan);
  font-size: 25px;
}

.ltga-nav div {
  gap: 6px;
}

.ltga-nav a {
  min-height: 38px;
  padding: 8px 11px;
  color: #c7d7e7;
  font-weight: 800;
  font-size: 13px;
}

.ltga-nav a:hover {
  color: #fff;
}

.ltga-nav-cta {
  color: #06111f !important;
  border-radius: var(--ltga-radius);
  background: linear-gradient(135deg, var(--ltga-cyan), var(--ltga-lime));
}

.ltga-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 118px 0 74px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 79, 216, .2), transparent 30%),
    radial-gradient(circle at 12% 22%, rgba(53, 216, 255, .2), transparent 28%),
    linear-gradient(145deg, #050914 0%, #0c1727 42%, #111018 100%);
}

.ltga-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.ltga-hero-grid,
.ltga-split,
.ltga-contact-grid,
.ltga-footer-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 52px;
  align-items: center;
}

.ltga-kicker,
.ltga-label,
.ltga-section-head span,
.ltga-contact-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ltga-lime);
  border: 1px solid rgba(130, 242, 143, .26);
  background: rgba(130, 242, 143, .07);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.ltga-hero h1,
.ltga-section h2,
.ltga-contact h2 {
  color: #fff;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 18px 0;
}

.ltga-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  max-width: 820px;
}

.ltga-typing {
  min-height: 36px;
  color: var(--ltga-cyan);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 18px;
}

.ltga-typing span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: .9em;
  margin-left: 5px;
  background: currentColor;
  animation: ltgaBlink 1s steps(2, start) infinite;
}

.ltga-hero-desc,
.ltga-section-head p,
.ltga-split p,
.ltga-contact-copy p,
.ltga-footer p {
  color: var(--ltga-muted);
  font-size: 17px;
  line-height: 1.7;
}

.ltga-hero-desc {
  max-width: 670px;
}

.ltga-actions,
.ltga-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ltga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--ltga-radius);
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.ltga-btn:hover {
  transform: translateY(-2px);
}

.ltga-btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--ltga-cyan), var(--ltga-lime));
  box-shadow: 0 18px 46px rgba(53, 216, 255, .22);
}

.ltga-btn-ghost {
  color: var(--ltga-ink);
  border: 1px solid var(--ltga-line);
  background: rgba(255, 255, 255, .06);
}

.ltga-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7e8f7;
  font-size: 14px;
  border: 1px solid var(--ltga-line);
  padding: 9px 12px;
  border-radius: var(--ltga-radius);
  background: rgba(255, 255, 255, .05);
}

.ltga-orbital {
  position: relative;
  min-height: 520px;
}

.ltga-holo-card {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(53, 216, 255, .28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(9, 22, 38, .9), rgba(19, 13, 31, .86));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .4), inset 0 0 80px rgba(53, 216, 255, .08);
  overflow: hidden;
}

.ltga-card-top {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--ltga-line);
}

.ltga-card-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ltga-magenta);
}

.ltga-card-top span:nth-child(2) {
  background: var(--ltga-gold);
}

.ltga-card-top span:nth-child(3) {
  background: var(--ltga-lime);
}

.ltga-card-top small {
  margin-left: auto;
  color: var(--ltga-muted);
}

.ltga-dashboard {
  position: relative;
  min-height: 452px;
  padding: 28px;
}

.ltga-pulse-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  color: var(--ltga-cyan);
  font-size: 64px;
  border-radius: 50%;
  border: 1px solid rgba(53, 216, 255, .45);
  background: rgba(53, 216, 255, .08);
  box-shadow: 0 0 0 28px rgba(53, 216, 255, .04), 0 0 0 58px rgba(255, 79, 216, .04);
  animation: ltgaFloat 5s ease-in-out infinite;
}

.ltga-mini-stat {
  position: absolute;
  top: 74px;
  left: 34px;
  width: 142px;
  border: 1px solid var(--ltga-line);
  border-radius: var(--ltga-radius);
  padding: 14px;
  background: rgba(255, 255, 255, .06);
}

.ltga-mini-stat.alt {
  top: auto;
  bottom: 64px;
  right: 36px;
  left: auto;
}

.ltga-mini-stat strong {
  display: block;
  color: #fff;
  font-size: 30px;
}

.ltga-mini-stat small {
  color: var(--ltga-muted);
}

.ltga-bars {
  position: absolute;
  right: 34px;
  top: 84px;
  display: flex;
  gap: 8px;
  align-items: end;
  height: 116px;
}

.ltga-bars i {
  width: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--ltga-magenta), var(--ltga-cyan));
  animation: ltgaBars 2.8s ease-in-out infinite;
}

.ltga-bars i:nth-child(1) { height: 38%; }
.ltga-bars i:nth-child(2) { height: 72%; animation-delay: .2s; }
.ltga-bars i:nth-child(3) { height: 55%; animation-delay: .35s; }
.ltga-bars i:nth-child(4) { height: 86%; animation-delay: .5s; }
.ltga-bars i:nth-child(5) { height: 64%; animation-delay: .7s; }

.ltga-flow {
  position: absolute;
  left: 38px;
  bottom: 64px;
  display: grid;
  gap: 12px;
}

.ltga-flow b {
  width: 170px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ltga-lime), transparent);
}

.ltga-section,
.ltga-contact {
  padding: 92px 0;
  background: #07101c;
}

.ltga-band,
.ltga-process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent),
    #0b1019;
}

.ltga-section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.ltga-section h2,
.ltga-contact h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.ltga-card-grid,
.ltga-partners,
.ltga-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ltga-card-grid article,
.ltga-partners article,
.ltga-benefit-list div,
.ltga-steps div,
.ltga-form,
.ltga-contact-boxes div {
  border: 1px solid var(--ltga-line);
  border-radius: var(--ltga-radius);
  background: var(--ltga-panel);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
}

.ltga-card-grid article,
.ltga-partners article,
.ltga-benefit-list div,
.ltga-steps div {
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease;
}

.ltga-card-grid article:hover,
.ltga-partners article:hover,
.ltga-benefit-list div:hover,
.ltga-steps div:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 216, 255, .45);
}

.ltga-card-grid article div {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--ltga-cyan);
  font-size: 28px;
  border-radius: var(--ltga-radius);
  background: rgba(53, 216, 255, .08);
}

.ltga-page h3 {
  color: #fff;
  margin: 18px 0 10px;
  font-size: 21px;
}

.ltga-page p {
  color: var(--ltga-muted);
}

.ltga-benefit-list {
  display: grid;
  gap: 16px;
}

.ltga-benefit-list strong,
.ltga-steps span {
  color: var(--ltga-gold);
  font-size: 13px;
  letter-spacing: 0;
}

.ltga-partners {
  grid-template-columns: repeat(3, 1fr);
}

.ltga-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 209, 102, .4);
  border-radius: 50%;
  background: rgba(255, 209, 102, .08);
  font-weight: 900;
}

.ltga-contact {
  background:
    radial-gradient(circle at 20% 10%, rgba(53, 216, 255, .14), transparent 30%),
    #050914;
}

.ltga-contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ltga-contact-boxes div {
  padding: 18px;
}

.ltga-contact-boxes svg {
  color: var(--ltga-lime);
  font-size: 26px;
}

.ltga-contact-boxes strong,
.ltga-contact-boxes small {
  display: block;
}

.ltga-contact-boxes small {
  color: var(--ltga-muted);
}

.ltga-form {
  padding: 24px;
}

.ltga-form label {
  display: block;
  color: #dbeaff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 13px;
}

.ltga-form input,
.ltga-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ltga-radius);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  box-shadow: none;
}

.ltga-form input:focus,
.ltga-form textarea:focus {
  border-color: var(--ltga-cyan);
  box-shadow: 0 0 0 3px rgba(53, 216, 255, .12);
}

.ltga-hidden-field {
  position: absolute;
  left: -9999px;
}

.ltga-form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 700;
}

.ltga-form-status.is-success {
  color: var(--ltga-lime);
}

.ltga-form-status.is-error {
  color: #ff9d9d;
}

.ltga-footer {
  padding: 54px 0 24px;
  background: #030710;
  border-top: 1px solid var(--ltga-line);
}

.ltga-footer-grid {
  grid-template-columns: 1.4fr .8fr .8fr;
  align-items: start;
}

.ltga-footer h2,
.ltga-footer h3 {
  color: #fff;
  margin-top: 0;
}

.ltga-footer a,
.ltga-footer span {
  display: block;
  color: var(--ltga-muted);
  margin: 8px 0;
}

.ltga-footer a:hover {
  color: var(--ltga-cyan);
}

.ltga-footer-bottom {
  color: #71869a;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

[data-ltga-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.ltga-hero [data-ltga-reveal] {
  opacity: 1;
  transform: none;
}

[data-ltga-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ltgaBlink {
  50% { opacity: 0; }
}

@keyframes ltgaFloat {
  50% { transform: translate(-50%, -56%); }
}

@keyframes ltgaBars {
  50% { transform: scaleY(.68); opacity: .72; }
}

@media (max-width: 1000px) {
  .ltga-nav {
    position: sticky;
    overflow-x: auto;
  }

  .ltga-nav div {
    min-width: max-content;
  }

  .ltga-hero-grid,
  .ltga-split,
  .ltga-contact-grid,
  .ltga-footer-grid {
    grid-template-columns: 1fr;
  }

  .ltga-card-grid,
  .ltga-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ltga-orbital {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .ltga-nav {
    align-items: flex-start;
    padding: 12px 14px;
  }

  .ltga-nav div a:not(.ltga-nav-cta) {
    display: none;
  }

  .ltga-brand span {
    white-space: nowrap;
  }

  .ltga-shell {
    width: min(100% - 28px, 1180px);
  }

  .ltga-hero {
    min-height: auto;
    padding: 40px 0 18px;
  }

  .ltga-hero h1 {
    font-size: 36px;
  }

  .ltga-hero-desc,
  .ltga-section-head p,
  .ltga-split p,
  .ltga-contact-copy p,
  .ltga-footer p {
    font-size: 16px;
    line-height: 1.62;
  }

  .ltga-actions,
  .ltga-trust {
    flex-direction: column;
  }

  .ltga-btn,
  .ltga-trust span {
    width: 100%;
  }

  .ltga-card-grid,
  .ltga-partners,
  .ltga-steps,
  .ltga-contact-boxes {
    grid-template-columns: 1fr;
  }

  .ltga-section,
  .ltga-contact {
    padding: 62px 0;
  }

  .ltga-holo-card {
    min-height: 286px;
  }

  .ltga-dashboard {
    min-height: 238px;
    padding: 18px;
  }

  .ltga-pulse-core {
    width: 78px;
    height: 78px;
    font-size: 36px;
  }

  .ltga-mini-stat {
    top: 52px;
    left: 18px;
    width: 104px;
  }

  .ltga-mini-stat.alt {
    display: none;
  }

  .ltga-bars {
    top: 72px;
    right: 18px;
    height: 78px;
  }

  .ltga-bars i {
    width: 16px;
  }

  .ltga-flow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
