﻿:root {
  --bg: #04161d;
  --bg-alt: #0a212d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.10);
  --stroke: rgba(120, 223, 255, 0.16);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --accent: #38c6eb;
  --accent-deep: #1298bd;
  --accent-soft: #8fe7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 198, 235, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(143, 231, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #082430 0%, #051821 52%, #041118 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 231, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 231, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
  pointer-events: none;
  opacity: 0.5;
}

.page-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.24;
  animation: drift 18s ease-in-out infinite;
}

.aurora-one {
  top: 5%;
  left: -8%;
  width: 340px;
  height: 340px;
  background: rgba(56, 198, 235, 0.34);
}

.aurora-two {
  top: 28%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: rgba(143, 231, 255, 0.16);
  animation-delay: -6s;
}

.aurora-three {
  bottom: -10%;
  left: 30%;
  width: 320px;
  height: 320px;
  background: rgba(18, 152, 189, 0.2);
  animation-delay: -12s;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 18px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(4, 22, 29, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0.3);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: #031720 !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-backdrop {
  position: absolute;
  inset: 6% 0 0;
  pointer-events: none;
  z-index: -1;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143, 231, 255, 0.14);
  animation: spin 18s linear infinite;
}

.hero-orbit-one {
  top: 5%;
  right: 8%;
  width: 360px;
  height: 360px;
}

.hero-orbit-two {
  right: 2%;
  bottom: 8%;
  width: 220px;
  height: 220px;
  animation-direction: reverse;
  animation-duration: 12s;
}

.hero-grid {
  position: absolute;
  top: 12%;
  right: 4%;
  width: min(42vw, 460px);
  height: 70%;
  border-radius: 36px;
  background:
    linear-gradient(rgba(143, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 231, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 8.5ch;
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.feature-card p,
.benefit-card p,
.timeline-step p,
.result-card p,
.testimonial-card p,
.cta-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 54ch;
  margin: 20px 0 0;
  font-size: 1.02rem;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 24px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-primary {
  color: #031720;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 16px 30px rgba(56, 198, 235, 0.26);
}

.button-secondary {
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.05);
}

.button-block {
  width: 100%;
}

.hero-metrics article,
.panel-card,
.feature-card,
.benefit-card,
.timeline-step,
.result-card,
.testimonial-card,
.cta-card,
.trust-strip,
.footer {
  border: 1px solid var(--stroke);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero-metrics article:hover,
.panel-card:hover,
.feature-card:hover,
.benefit-card:hover,
.timeline-step:hover,
.result-card:hover,
.testimonial-card:hover,
.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 231, 255, 0.34);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.hero-metrics article {
  flex: 1 1 160px;
  padding: 16px;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
}

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

.hero-panel {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  display: grid;
  gap: 18px;
  align-content: start;
}

.panel-card {
  border-radius: var(--radius-lg);
}

.panel-card-main {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.panel-card-main::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(143, 231, 255, 0.18), transparent 68%);
  animation: pulseGlow 5s ease-in-out infinite;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(56, 198, 235, 0.12);
  animation: pulseDot 2.8s ease-in-out infinite;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel-grid article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.panel-grid p,
.panel-grid span {
  margin: 0;
  color: var(--muted);
}

.panel-grid strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1.75rem;
}

.panel-card-note {
  position: static;
  max-width: 280px;
  margin-left: auto;
  padding: 16px 18px;
}

.panel-card-note p,
.panel-card-note strong {
  margin: 0;
}

.panel-card-note strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
}

.trust-strip div {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.card-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.benefit-card,
.timeline-step,
.result-card,
.testimonial-card,
.cta-card {
  border-radius: var(--radius-lg);
}

.feature-card {
  padding: 28px;
}

.feature-card h3,
.timeline-step h3 {
  margin: 18px 0 12px;
  font-size: 1.5rem;
}

.feature-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #031720;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 9% -6% auto;
  height: 72%;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(56, 198, 235, 0.1), rgba(255, 255, 255, 0.03));
  z-index: -1;
}

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

.benefit-card {
  padding: 30px;
}

.benefit-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-step {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.timeline-step::before,
.result-card::before,
.testimonial-card::before,
.benefit-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(143, 231, 255, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.timeline-step:hover::before,
.result-card:hover::before,
.testimonial-card:hover::before,
.benefit-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

.timeline-step::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(56, 198, 235, 0.08);
}

.step-number,
.result-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(56, 198, 235, 0.12);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-results {
  padding-bottom: 108px;
}

.results-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.results-stack,
.testimonial-stack {
  display: grid;
  gap: 22px;
}

.result-card,
.testimonial-card {
  padding: 28px;
}

.result-card strong,
.testimonial-card strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 1.45rem;
}

.testimonial-card span {
  color: var(--accent);
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 60px;
}

.cta-card {
  padding: 28px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.7fr;
  gap: 28px;
  align-items: start;
  padding: 34px 32px;
  margin-bottom: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(8, 24, 33, 0.92);
}

.footer-brand-block {
  max-width: 520px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  padding: 6px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.footer-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 12px;
}

.footer-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(143, 231, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(143, 231, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links {
  justify-items: start;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  transform: translateX(3px);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(56, 198, 235, 0.12);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(56, 198, 235, 0.06);
  }
}

@media (max-width: 980px) {
  .hero,
  .results-layout,
  .cta-section,
  .three-up,
  .timeline,
  .benefits-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-backdrop {
    inset: 2% 0 auto;
  }

  .hero-grid {
    width: 100%;
    right: 0;
    height: 44%;
  }

  .panel-card-note {
    max-width: none;
    margin-left: 0;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    top: 10px;
    padding: 12px 14px;
    border-radius: 24px;
    width: 100%;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--stroke);
    border-radius: 24px;
    background: rgba(4, 22, 29, 0.96);
  }

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

  .nav-cta {
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }


  .hero-grid,
  .hero-orbit-two {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }
}
