:root {
  --bg: #07090d;
  --panel: #0d1118;
  --panel-strong: #121824;
  --ink: #f7fbff;
  --muted: #aeb8c7;
  --soft: #dbe4ef;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --green: #cbfe1c;
  --green-soft: rgba(203, 254, 28, 0.14);
  --blue: #4aa8ff;
  --rose: #ff5d7a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --site-max-width: 1600px;
  --container: min(100% - clamp(1rem, 4vw, 2.5rem), var(--site-max-width));
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #07090d 0%, #090c12 46%, #07090d 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(140% 90% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(90% 55% at 50% 0%, rgba(0, 0, 0, 0.32), transparent 72%),
    radial-gradient(90% 55% at 50% 100%, rgba(0, 0, 0, 0.32), transparent 72%);
}

body.menu-open {
  overflow: hidden;
}

main {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(203, 254, 28, 0.25);
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: var(--container);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(8, 11, 16, 0.78);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 1.05rem + 0.8vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.06rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  border-color: rgba(203, 254, 28, 0.72);
  background: #cbfe1c;
  color: #080b10;
  box-shadow:
    0 0 0 1px rgba(203, 254, 28, 0.32),
    0 14px 30px rgba(203, 254, 28, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #ddff59;
  color: #05070a;
  box-shadow:
    0 0 0 1px rgba(203, 254, 28, 0.48),
    0 18px 42px rgba(203, 254, 28, 0.3);
}

.site-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.site-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  left: 50%;
  width: 100vw;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(22px, 3.5vw, 38px);
  margin: 0 0 0 -50vw;
  padding: 124px clamp(18px, 4vw, 54px) 58px;
  border-bottom: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background-image: url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
}

.hero::after {
  z-index: -1;
  background: transparent;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-contact {
  position: relative;
  z-index: 1;
}

.hero > :first-child {
  width: 100%;
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.44), 0 0 18px rgba(203, 254, 28, 0.18);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

h1 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(3.25rem, 8vw, 7rem);
  font-weight: 900;
}

h1 span,
h2 span {
  color: var(--green);
}

.hero h1 span {
  display: block;
}

.hero h1 .hero-flip-word {
  display: inline-block;
  min-width: 3.55em;
  margin-left: -0.13em;
  transform-origin: 50% 55%;
  backface-visibility: hidden;
}

.hero h1 .hero-flip-word.is-flipping {
  animation: heroWordFlip 520ms cubic-bezier(0.2, 0.74, 0.26, 1);
}

@keyframes heroWordFlip {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }

  44% {
    transform: rotateX(82deg) translateY(-0.06em);
    opacity: 0.24;
  }

  56% {
    transform: rotateX(-82deg) translateY(0.06em);
    opacity: 0.24;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.hero-copy {
  max-width: 50rem;
  margin: 22px auto 0;
  color: var(--soft);
  font-size: clamp(1.14rem, 1.06rem + 0.38vw, 1.36rem);
}

.hero-actions,
.section-actions,
.package-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-contact {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.hero-phone {
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 1.1rem + 0.45vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.hero-phone:hover,
.hero-phone:focus-visible {
  color: var(--green);
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hero-social a {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-social a:hover,
.hero-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(203, 254, 28, 0.65);
  color: var(--green);
  background: rgba(203, 254, 28, 0.1);
  outline: none;
}

.button {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.button-primary {
  border-color: transparent;
  background: var(--green);
  color: #080b10;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(203, 254, 28, 0.35),
    0 18px 42px rgba(152, 215, 0, 0.2),
    0 12px 34px rgba(0, 0, 0, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -140% -45%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.32) 50%, transparent 60%);
  transform: translateX(-40%);
  transition: transform 0.55s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ddff59;
  box-shadow:
    0 0 0 1px rgba(203, 254, 28, 0.45),
    0 22px 54px rgba(152, 215, 0, 0.24),
    0 14px 38px rgba(0, 0, 0, 0.32);
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: translateX(22%);
}

.button-compact {
  min-height: 42px;
  padding-inline: 14px;
}

.band {
  padding: clamp(70px, 9vw, 116px) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.band-dark {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

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

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
}

.section-head p {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1rem + 0.28vw, 1.24rem);
}

.intro-video {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  aspect-ratio: 16 / 9;
}

.intro-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cap-slider {
  --cap-gap: clamp(14px, 2vw, 22px);
  --cap-loop-width: 100%;
  --cap-center-duration: 1100ms;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.cap-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 0;
  animation: capScroll 72s linear infinite;
  will-change: transform;
}

.cap-slider:hover .cap-track {
  animation-play-state: paused;
}

.cap-track.is-paused {
  animation-play-state: paused;
}

.cap-track.is-centering {
  animation: none;
  transition: transform var(--cap-center-duration) cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-track-group {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: var(--cap-gap);
  padding-right: var(--cap-gap);
}

.cap-item {
  flex: 0 0 clamp(260px, 26vw, 340px);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 4px;
  opacity: 0.86;
  transform: translate3d(0, 0, 0) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 520ms ease;
}

.cap-slider:hover .cap-item {
  opacity: 0.58;
}

.cap-slider:hover .cap-item:hover {
  opacity: 1;
  transform: translate3d(0, -6px, 0) scale(1.015);
}

.cap-icon {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.48), 0 0 18px rgba(203, 254, 28, 0.18);
}

.cap-item h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1rem + 0.45vw, 1.5rem);
  line-height: 1.15;
}

.cap-item p {
  margin: 0;
  color: var(--soft);
  font-size: clamp(0.98rem, 0.92rem + 0.2vw, 1.08rem);
  line-height: 1.52;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.992);
  filter: blur(10px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--scroll-reveal-delay, 0ms),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) var(--scroll-reveal-delay, 0ms),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--scroll-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@keyframes capScroll {
  from {
    transform: translate3d(calc(var(--cap-loop-width) * -1), 0, 0);
  }

  to {
    transform: translate3d(calc(var(--cap-loop-width) * -2), 0, 0);
  }
}

.service-card,
.price-card,
.package-block,
.package-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 24, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 44px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(203, 254, 28, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.price-card:hover,
.package-block:hover,
.package-hero:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 254, 28, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(203, 254, 28, 0.12);
}

.service-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
}

.tag-row span {
  padding: 4px 8px;
  border: 1px solid rgba(203, 254, 28, 0.25);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.billing-toggle button {
  min-width: 104px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--soft);
  font-weight: 900;
  cursor: pointer;
}

.billing-toggle button.is-active {
  background: var(--green);
  color: #080b10;
}

.billing-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-slider {
  --slide-width: 32%;
  --slide-gap: 16px;
  --peek-opacity: 0.38;
  position: relative;
  width: 100%;
  padding-inline: clamp(2.4rem, 6vw, 3.1rem);
}

.pricing-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.pricing-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.55rem;
  height: 2.55rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.78);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.pricing-slider-arrow-prev {
  left: 0;
}

.pricing-slider-arrow-next {
  right: 0;
}

.pricing-slider-arrow:hover:not(:disabled),
.pricing-slider-arrow:focus-visible:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(203, 254, 28, 0.66);
  color: var(--green);
  outline: none;
}

.pricing-slider-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.pricing-slider-dots {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pricing-slider-dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}

.pricing-slider-dot:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.price-grid {
  display: flex;
  align-items: stretch;
  gap: var(--slide-gap);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.price-card {
  position: relative;
  flex: 0 0 var(--slide-width);
  width: var(--slide-width);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  opacity: var(--peek-opacity);
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity 0.38s ease, transform 0.38s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card.is-active-slide {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.price-card.is-featured {
  border-color: rgba(203, 254, 28, 0.42);
  background: rgba(13, 17, 24, 0.78);
}

.price-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green);
  color: #080b10;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 14px;
}

.tier {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 1.2rem + 0.35vw, 1.7rem);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 16px;
}

.price-row .currency,
.price-row .suffix {
  color: var(--muted);
  font-weight: 900;
}

.price-row .amount {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 2.2rem + 0.7vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.price-caption,
.outcome,
.price-card li,
.package-muted {
  color: var(--muted);
}

.price-caption {
  margin: 4px 0 16px;
  font-size: 0.98rem;
  font-weight: 800;
}

.outcome {
  margin: 0 0 16px;
  font-size: 1.08rem;
}

.feature-list,
.package-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.package-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-list li::before,
.package-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.card-spacer {
  flex: 1;
  min-height: 22px;
}

.compare-panel,
.custom-panel {
  margin-top: 24px;
  padding: clamp(18px, 3vw, 28px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.compare-panel {
  display: grid;
  gap: 20px;
}

.compare-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.compare-panel h3,
.custom-panel h3,
.package-block h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.compare-table-wrap {
  overflow-x: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 0;
  background: transparent;
}

.compare-matrix {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
}

.compare-matrix th,
.compare-matrix td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-matrix th:first-child,
.compare-matrix td:first-child {
  border-left: 0;
}

.compare-matrix thead th {
  min-width: 9.6rem;
  padding: 18px 14px;
  background: transparent;
  color: var(--ink);
  text-align: center;
  vertical-align: bottom;
}

.compare-matrix thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 6;
  min-width: 14rem;
  background: transparent;
  color: var(--green);
  text-align: left;
  box-shadow: none;
}

.compare-matrix thead th.is-featured {
  background: transparent;
  box-shadow: inset 0 3px 0 var(--green);
}

.compare-plan-badge,
.compare-plan-tier,
.compare-matrix thead small {
  display: block;
}

.compare-plan-badge {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-plan-tier {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-matrix thead strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1.05;
}

.compare-matrix thead small {
  margin-top: 7px;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 900;
}

.compare-matrix tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  padding: 15px 14px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 1.08rem;
  font-weight: 900;
}

.compare-matrix td {
  padding: 14px 10px;
  color: var(--soft);
  text-align: center;
  vertical-align: middle;
}

.compare-status {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
}

.compare-matrix td.is-included .compare-status {
  background: rgba(203, 254, 28, 0.14);
  color: var(--green);
}

.compare-matrix td.is-missing .compare-status {
  color: rgba(174, 184, 199, 0.52);
}

.compare-detail {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.32;
}

.custom-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.custom-panel p {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  width: var(--container);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 44px 0 54px;
  color: var(--muted);
  content-visibility: auto;
  contain-intrinsic-size: auto 180px;
}

.footer-brand {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 900;
}

.site-footer p {
  max-width: 390px;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-footer a:hover {
  color: var(--green);
}

.package-main {
  width: var(--container);
  margin: 0 auto;
  padding: 132px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green);
}

.package-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
}

.package-hero h1 {
  max-width: 100%;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.package-price {
  margin: 20px 0 0;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.package-price span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
}

.package-tagline,
.package-value {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 1.1rem;
}

.package-value {
  color: var(--muted);
}

.package-hero-image {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 18px;
  margin-top: 18px;
}

.package-block {
  padding: clamp(20px, 3vw, 30px);
}

.package-notes {
  margin-top: 18px;
}

.package-block h2 + .package-list,
.package-block h2 + p {
  margin-top: 16px;
}

.package-block h2:not(:first-child) {
  margin-top: 30px;
}

.package-punch {
  margin: 18px 0 0;
  padding: 18px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 900;
}

.package-action-form {
  margin: 0;
}

.package-action-form .button {
  width: 100%;
}

.package-actions .button {
  min-width: 180px;
}

@media (min-width: 1680px) {
  html {
    font-size: 112.5%;
  }

  body {
    font-size: 19px;
  }

  .site-header {
    min-height: 76px;
  }

  .site-logo {
    font-size: clamp(1.5rem, 1.1vw, 1.95rem);
  }

  .site-nav a {
    font-size: 1.08rem;
  }

  .hero > :first-child {
    max-width: 72rem;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(4.8rem, 6.7vw, 8.8rem);
  }

  .hero-copy {
    max-width: 58rem;
    font-size: clamp(1.36rem, 0.9vw, 1.64rem);
  }

  .button {
    min-height: 56px;
    padding-inline: 24px;
    font-size: 1.05rem;
  }

  .hero-phone {
    font-size: clamp(1.42rem, 0.9vw, 1.7rem);
  }

  .hero-social a {
    width: 3.45rem;
    height: 3.45rem;
    font-size: 1.52rem;
  }

  .section-head {
    max-width: 900px;
  }

  .section-head h2 {
    font-size: clamp(3rem, 3.6vw, 5.6rem);
  }

  .section-head p {
    max-width: 760px;
    font-size: 1.34rem;
  }

  .cap-item p,
  .price-card li,
  .package-list li {
    font-size: 1.18rem;
  }
}

@media (max-width: 980px) {
  body::before {
    background:
      radial-gradient(120% 80% at 50% 50%, transparent 46%, rgba(0, 0, 0, 0.5) 86%, rgba(0, 0, 0, 0.74) 100%),
      radial-gradient(90% 46% at 50% 0%, rgba(0, 0, 0, 0.26), transparent 76%);
  }

  .site-menu-button {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 11, 16, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: flex-start;
    margin: 0;
  }

  .package-hero,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .band {
    padding: clamp(56px, 8vw, 84px) 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .cap-item {
    flex-basis: clamp(240px, 52vw, 320px);
    min-height: 180px;
  }

  .cap-track {
    animation-duration: 128s;
  }

  .pricing-slider {
    --slide-width: min(74vw, 28rem);
    padding-inline: clamp(2.1rem, 6vw, 2.7rem);
  }

  .compare-matrix {
    min-width: 820px;
  }

  .compare-matrix thead th {
    min-width: 8.6rem;
  }

  .compare-matrix thead th:first-child {
    min-width: 11.5rem;
  }

  .custom-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, var(--site-max-width));
  }

  body {
    font-size: 17px;
  }

  .site-header {
    top: 10px;
    min-height: 62px;
    padding: 8px 10px 8px 12px;
  }

  .site-logo {
    font-size: clamp(0.98rem, 5vw, 1.18rem);
    letter-spacing: 0.06em;
  }

  .site-nav {
    top: 78px;
    right: 12px;
    left: 12px;
  }

  .site-nav a {
    min-height: 48px;
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-copy,
  .section-head p,
  .outcome,
  .custom-panel p {
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 46px;
  }

  .hero-contact {
    gap: 0.7rem;
  }

  .hero-social a {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.24rem;
  }

  .section-head h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

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

  .button {
    width: 100%;
    min-height: 68px;
    padding-inline: 22px;
    font-size: 1.18rem;
  }

  .cap-track {
    animation-duration: 160s;
  }

  .cap-item {
    flex-basis: min(82vw, 320px);
    min-height: 210px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    min-width: 0;
  }

  .pricing-slider {
    --slide-width: min(86vw, 23rem);
    padding-inline: 0;
  }

  .pricing-slider-arrow {
    width: 2.3rem;
    height: 2.3rem;
  }

  .price-card {
    padding: 16px;
  }

  .compare-head .button {
    width: 100%;
  }

  .compare-table-wrap {
    margin-inline: -12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .compare-matrix {
    min-width: 720px;
  }

  .compare-matrix thead th {
    min-width: 7.6rem;
    padding: 14px 10px;
  }

  .compare-matrix thead th:first-child {
    min-width: 10rem;
  }

  .compare-matrix thead strong {
    font-size: 1.12rem;
  }

  .compare-plan-tier {
    font-size: 0.8rem;
  }

  .compare-matrix tbody th {
    padding: 13px 10px;
    font-size: 1rem;
  }

  .compare-matrix td {
    padding: 12px 8px;
  }

  .compare-detail {
    font-size: 0.92rem;
  }

  .custom-panel,
  .compare-panel {
    padding: 18px 14px;
  }

  .custom-panel {
    align-items: center;
    text-align: center;
  }

  .custom-panel p {
    margin-right: auto;
    margin-left: auto;
  }

  .custom-panel .section-actions {
    width: 100%;
    align-items: center;
  }

  .custom-panel .button {
    width: min(100%, 22rem);
  }

  .site-footer {
    padding-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cap-slider {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .cap-track {
    animation: none;
    padding-bottom: 4px;
  }

  .cap-item,
  .cap-slider:hover .cap-item,
  .cap-slider:hover .cap-item:hover,
  .scroll-reveal,
  .scroll-reveal.is-scroll-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .price-grid {
    transition: none;
  }
}
