:root {
  --bg: #041226;
  --bg-soft: #0a1b34;
  --surface: rgba(11, 28, 52, 0.72);
  --surface-strong: #0d2344;
  --surface-light: rgba(255, 255, 255, 0.06);
  --text: #f4f8ff;
  --muted: #a9bbd4;
  --line: rgba(137, 177, 255, 0.18);
  --primary: #1d6eff;
  --primary-strong: #00257b;
  --accent: #ffc21a;
  --accent-soft: rgba(255, 194, 26, 0.16);
  --shadow: 0 24px 70px rgba(2, 12, 28, 0.4);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 110, 255, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 194, 26, 0.16), transparent 24%),
    linear-gradient(180deg, #04101f 0%, #07172d 44%, #03101f 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(3, 13, 26, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
}

.brand span {
  background: linear-gradient(90deg, #1d6eff 0%, #9fd0ff 38%, #ffffff 55%, #ffc21a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.nav a.is-current {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button,
.button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d95ff 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(29, 110, 255, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button {
  padding: 1rem 1.5rem;
}

.button-small {
  padding: 0.8rem 1.2rem;
}

.button:hover,
.button-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(29, 110, 255, 0.35);
}

.text-link {
  color: #9bc5ff;
  font-weight: 600;
}

.text-link:hover {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #b9d3ff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero,
.page-hero {
  padding: 5.5rem 0 4rem;
  position: relative;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 1rem 0 1rem;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero-copy p,
.feature-card p,
.benefit-card p,
.content-panel p,
.panel-content p,
.timeline-item p,
.contact-panel p,
.service-box p,
.story-card p,
.value-card p,
.form-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.metric-row {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.feature-card,
.benefit-card,
.service-box,
.story-card,
.value-card,
.contact-card,
.testimonial-card,
.faq-item,
.cta-card,
.stat-card {
  background: linear-gradient(180deg, rgba(15, 37, 70, 0.88), rgba(7, 20, 40, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card,
.stat-card {
  padding: 1.35rem;
}

.metric-card strong,
.stat-card strong {
  display: block;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}

.metric-card span,
.stat-card span {
  color: var(--muted);
}

.hero-panel {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.orbit-ring-one {
  inset: 12%;
  box-shadow: inset 0 0 0 1px rgba(29, 110, 255, 0.22);
}

.orbit-ring-two {
  inset: 22%;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 26, 0.2);
}

.hero-bolt {
  width: 150px;
  height: 220px;
  clip-path: polygon(55% 0%, 28% 42%, 50% 42%, 38% 100%, 74% 55%, 49% 55%);
  background: linear-gradient(180deg, #ffe182 0%, var(--accent) 100%);
  filter: drop-shadow(0 18px 36px rgba(255, 194, 26, 0.35));
  animation: glowPulse 4s ease-in-out infinite;
}

.orbit-card,
.signal-card {
  position: absolute;
  width: 260px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(9, 27, 52, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.orbit-card {
  top: 6%;
  right: -1%;
}

.signal-card {
  left: -2%;
  bottom: 9%;
}

.orbit-card span,
.signal-card span,
.card-kicker {
  color: #8ebcff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.orbit-card strong {
  display: block;
  margin: 0.65rem 0;
  font-size: 2.25rem;
}

.signal-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.floating-card {
  animation: floatCard 5s ease-in-out infinite;
}

.logo-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.logo-strip .container {
  padding: 1.25rem 0;
}

.logo-strip p {
  margin: 0;
  color: #d9e7ff;
  text-align: center;
  font-weight: 600;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.content-panel h2,
.cta-card h2,
.page-block h2 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.card-grid,
.benefit-grid,
.service-grid,
.story-grid,
.value-grid,
.stats-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.benefit-card,
.service-box,
.story-card,
.value-card,
.faq-item,
.contact-card {
  padding: 1.6rem;
}

.feature-card h3,
.benefit-card h3,
.service-box h3,
.story-card h3,
.value-card h3,
.faq-item h3,
.contact-card h3 {
  margin: 0.8rem 0;
  font-size: 1.35rem;
}

.split-layout,
.contact-layout,
.page-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.content-panel,
.insight-panel,
.contact-panel,
.contact-form-wrap {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-item {
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.insight-panel {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.panel-glow {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 110, 255, 0.4), transparent 70%);
  filter: blur(20px);
}

.panel-content {
  position: relative;
  z-index: 1;
}

.testimonial-shell {
  position: relative;
}

.testimonial-card {
  display: none;
  padding: 2rem;
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-card p {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.testimonial-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--accent);
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.page-hero-copy {
  max-width: 680px;
}

.page-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.hero-badge {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 40, 75, 0.92), rgba(8, 22, 43, 0.95));
  border: 1px solid var(--line);
}

.hero-badge strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.hero-badge span {
  color: var(--muted);
}

.page-block {
  margin-top: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
}

.story-grid,
.value-grid,
.faq-grid {
  margin-top: 1.4rem;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.contact-layout {
  align-items: start;
}

.contact-card + .contact-card {
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: #dce8fb;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(29, 110, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(29, 110, 255, 0.12);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.site-footer h3 {
  margin-top: 0;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.brand-footer {
  margin-bottom: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 18px 36px rgba(255, 194, 26, 0.35));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 24px 48px rgba(255, 194, 26, 0.55));
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(5, 17, 34, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

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

  .hero-panel {
    min-height: 460px;
  }

  .orbit-card,
  .signal-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-orbit {
    gap: 1rem;
  }

  .card-grid,
  .benefit-grid,
  .service-grid,
  .story-grid,
  .value-grid,
  .stats-grid,
  .faq-grid,
  .metric-row,
  .hero-badge-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 4.5rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .content-panel,
  .insight-panel,
  .contact-panel,
  .contact-form-wrap,
  .cta-card {
    padding: 1.4rem;
  }
}
