:root {
  --bg: #07111f;
  --bg-soft: rgba(12, 24, 43, 0.82);
  --panel: rgba(14, 28, 49, 0.78);
  --panel-strong: rgba(18, 35, 60, 0.95);
  --line: rgba(162, 191, 255, 0.16);
  --text: #ecf3ff;
  --muted: #a9b7d3;
  --accent: #8bf7d0;
  --accent-strong: #57e8f1;
  --accent-warm: #ffc17a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(72, 124, 255, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(87, 232, 241, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #06101d 0%, #081425 48%, #091120 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  transition: transform 220ms ease-out;
  will-change: transform;
}

.ambient-one {
  top: -9rem;
  right: -10rem;
  background: rgba(87, 232, 241, 0.25);
}

.ambient-two {
  bottom: 12rem;
  left: -12rem;
  background: rgba(255, 193, 122, 0.2);
}

.site-header,
.section,
.trust-band,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.55);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.8rem;
}

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

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
}

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

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

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

.hero h1,
.section-heading h2,
.cta-card h2,
.local-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.hero-title-blur,
.hero-title-focus {
  display: block;
}

.hero-title-blur {
  filter: blur(var(--hero-blur, 0px));
  opacity: var(--hero-blur-opacity, 1);
  transform: translateY(var(--hero-blur-shift, 0px));
  transition:
    filter 120ms linear,
    opacity 120ms linear,
    transform 120ms linear;
  will-change: filter, opacity, transform;
}

.hero-title-focus {
  position: relative;
  z-index: 1;
}

.hero-text,
.section-heading p,
.service-card p,
.feature-card p,
.timeline-step p,
.package-copy,
.local-card p,
.faq-item p,
.cta-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 42rem;
  margin: 1.4rem 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-strong) 100%
  );
  color: #041019;
  box-shadow: 0 14px 40px rgba(87, 232, 241, 0.25);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-points {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-warm) 100%
  );
  box-shadow: 0 0 0 0.3rem rgba(139, 247, 208, 0.08);
}

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

.hero-card,
.local-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 28rem);
  padding: 1.25rem;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    rotate(calc(-2deg + var(--parallax-rotate, 0deg)));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
  will-change: transform;
}

.stat-chip {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.grid-card,
.mini-grid div,
.feature-card,
.service-card,
.package-card,
.timeline-step,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.grid-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
}

.grid-label,
.service-number,
.package-tier,
.mini-grid span {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 800;
}

.grid-value {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 700;
}

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

.mini-grid div {
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.mini-grid strong {
  display: block;
  line-height: 1.45;
}

.trust-band {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-band div {
  text-align: center;
  padding: 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.95rem;
}

.section > :not(.scroll-accent),
.trust-band > :not(.scroll-accent) {
  position: relative;
  z-index: 1;
}

.scroll-accent {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  transform: translate3d(var(--accent-x, 0), var(--accent-y, 0), 0)
    rotate(var(--accent-rotate, 0deg)) scale(var(--accent-scale, 1));
  transition:
    transform 900ms cubic-bezier(0.18, 0.84, 0.24, 1),
    opacity 700ms ease;
  transition-delay: var(--accent-delay, 0ms);
  will-change: transform, opacity;
}

.accent-chip,
.accent-line,
.accent-orb {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.accent-chip {
  width: 108px;
  height: 30px;
  border-radius: 999px;
}

.accent-chip::before,
.accent-line::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 12px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-strong) 100%
  );
}

.accent-chip::before {
  width: 34px;
  height: 6px;
}

.accent-line {
  width: 150px;
  height: 16px;
  border-radius: 999px;
}

.accent-line::before {
  width: 78px;
  height: 4px;
}

.accent-orb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.45),
      transparent 38%
    ),
    linear-gradient(135deg, rgba(139, 247, 208, 0.9), rgba(87, 232, 241, 0.4));
  box-shadow:
    0 0 0 14px rgba(87, 232, 241, 0.06),
    0 0 40px rgba(87, 232, 241, 0.22);
}

.accent-delay-1 {
  --accent-delay: 90ms;
}

.accent-delay-2 {
  --accent-delay: 200ms;
}

.accent-top-right {
  top: 1.2rem;
  right: 0.2rem;
}

.accent-top-left {
  top: 1.7rem;
  left: -0.3rem;
}

.accent-mid-left {
  top: 48%;
  left: -0.6rem;
}

.accent-mid-right {
  top: 42%;
  right: -0.3rem;
}

.accent-bottom-right {
  bottom: 1.5rem;
  right: 1.2rem;
}

.accent-bottom-left {
  bottom: 1.75rem;
  left: 0.6rem;
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2,
.cta-card h2,
.local-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.feature-grid,
.service-grid,
.package-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

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

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

.feature-card,
.service-card,
.package-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.feature-card h3,
.service-card h3,
.package-card h3,
.timeline-step h3,
.faq-item summary {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.service-number,
.package-tier {
  display: inline-block;
}

.package-card ul {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.75rem;
}

.package-featured {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(139, 247, 208, 0.15),
      rgba(255, 255, 255, 0.04)
    ),
    var(--panel-strong);
  transform: translateY(-0.75rem);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.timeline-step span {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-strong) 100%
  );
  color: #041019;
  font-weight: 800;
}

.local-section {
  padding-top: 1rem;
}

.local-card,
.cta-card {
  padding: 2rem;
}

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

.faq-item {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  margin: 0.85rem 0 0;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

.has-motion .scroll-accent.reveal {
  opacity: 0;
  transform: translate3d(
      var(--accent-hidden-x, 0px),
      var(--accent-hidden-y, 0px),
      0
    )
    rotate(var(--accent-hidden-rotate, -8deg)) scale(0.88);
}

.has-motion .scroll-accent.reveal.is-visible {
  opacity: 0.92;
  transform: translate3d(var(--accent-x, 0px), var(--accent-y, 0px), 0)
    rotate(var(--accent-rotate, 0deg)) scale(1);
}

.has-motion .accent-top-right,
.has-motion .accent-mid-right,
.has-motion .accent-bottom-right {
  --accent-hidden-x: 56px;
  --accent-hidden-y: 26px;
  --accent-hidden-rotate: 10deg;
}

.has-motion .accent-top-left,
.has-motion .accent-mid-left,
.has-motion .accent-bottom-left {
  --accent-hidden-x: -56px;
  --accent-hidden-y: 26px;
  --accent-hidden-rotate: -10deg;
}

.accent-chip,
.accent-line {
  --accent-rotate: -2deg;
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 24px;
    padding: 0.9rem;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    min-width: 230px;
    padding: 0.9rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(7, 16, 31, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .split-section,
  .feature-grid,
  .service-grid,
  .package-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: 100%;
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
      rotate(var(--parallax-rotate, 0deg));
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .site-header {
    top: 0.75rem;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .mini-grid,
  .timeline-step {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .scroll-accent {
    opacity: 0.68;
    transform: scale(0.92);
  }

  .accent-mid-left,
  .accent-mid-right,
  .accent-bottom-right {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ambient,
  .hero-card,
  .scroll-accent {
    transform: none !important;
  }

  .hero-title-blur {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
