:root {
  --bg: #05070c;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --blue: #2f6bff;
  --blue-light: #6b93ff;
  --blue-glow: rgba(47, 107, 255, 0.35);
  --text: #ffffff;
  --text-muted: #b7bfd4;
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  position: relative;
}

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

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

ul { list-style: none; }

/* Ambient background: one continuous glow field behind every section,
   so sections blend into each other instead of switching backgrounds. */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 900px 520px at 50% -8%, rgba(47, 107, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 700px 500px at 95% 22%, rgba(47, 107, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 800px 600px at 0% 55%, rgba(47, 107, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 900px 550px at 100% 78%, rgba(47, 107, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 1000px 500px at 50% 105%, rgba(47, 107, 255, 0.22), transparent 60%),
    var(--bg);
}

.bg-decor::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 1200px 900px at 50% 0%, #000 0%, transparent 75%);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 820px;
}

.text-center { text-align: center; }
.text-blue { color: var(--blue-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue) 55%, #1c4fd6);
  color: #fff;
  box-shadow: 0 8px 24px var(--blue-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px var(--blue-glow);
}

.btn--outline {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue-light);
}

.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }

/* Header — floating pill */
.header {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 24px;
}

.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  background: rgba(10, 13, 20, 0.65);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 28px;
  height: 28px;
}

.logo__text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface-strong);
}

/* Eyebrow — pill badge */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto 20px;
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  background: rgba(47, 107, 255, 0.12);
  border: 1px solid rgba(47, 107, 255, 0.35);
  border-radius: 999px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px 2px var(--blue-light);
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 26px;
  text-shadow: 0 0 60px rgba(107, 147, 255, 0.4);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}

.hero__arc {
  position: absolute;
  top: -560px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  border: 1px solid rgba(107, 147, 255, 0.18);
  box-shadow: 0 0 140px 30px rgba(47, 107, 255, 0.12) inset;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 640px;
  background: radial-gradient(ellipse, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* Darkens the area behind the headline on mobile for more contrast; hidden on desktop. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  position: relative;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero__note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Hero before/after showcase */
.hero__gallery-label {
  margin: 64px 0 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.hero .gallery {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.preview__thumb {
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.35), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
}

/* Sections */
.section {
  padding: 110px 0;
  position: relative;
}

/* Grid / cards */
.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 107, 255, 0.12);
  border: 1px solid rgba(47, 107, 255, 0.3);
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(47, 107, 255, 0.15);
}

.card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-light);
}

.card--quote p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.card__author {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.card p {
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(14px);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--blue-light);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(47, 107, 255, 0.3);
  background: rgba(47, 107, 255, 0.12);
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(47, 107, 255, 0.15);
}

.step p {
  color: var(--text-muted);
}

/* Gallery — before/after compare sliders */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --pos: 50%;
}

.compare__after,
.compare__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.compare__before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__badge {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.7);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  color: var(--text);
  pointer-events: none;
}

.compare__badge--before { left: 14px; }

.compare__badge--after {
  right: 14px;
  color: var(--blue-light);
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.compare__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 14px rgba(47, 107, 255, 0.7);
}

.compare__handle-grip {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.compare__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 40px;
  height: 100%;
}

.compare__range::-moz-range-thumb {
  width: 40px;
  height: 100%;
  border: none;
  background: transparent;
}

.compare__range::-moz-range-track {
  background: transparent;
}

/* Portfolio */
.portfolio__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.portfolio__item:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.portfolio__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

/* Pricing */
.pricing {
  align-items: stretch;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.plan:hover {
  transform: translateY(-4px);
}

.plan--featured {
  background: var(--surface-strong);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 25px 60px var(--blue-glow);
  transform: translateY(-8px);
}

.plan--featured:hover {
  transform: translateY(-12px);
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 8px 0 4px;
}

.plan__price span:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.plan__price span:last-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.plan__features {
  flex: 1;
  margin-bottom: 28px;
}

.plan__features li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan__features li:first-child {
  border-top: none;
}

.plan .btn {
  width: 100%;
}

/* FAQ — glass cards */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 24px;
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease;
}

.faq__item.is-open {
  border-color: var(--border-strong);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
}

.faq__icon {
  color: var(--blue-light);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  color: var(--text-muted);
  padding-bottom: 22px;
}

/* Honesty */
.honesty__punch {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto;
}

.honesty__note {
  margin: 20px auto 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Reassure strip */
.reassure {
  padding: 0 0 60px;
}

.reassure__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reassure__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.reassure__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.15);
  border: 1px solid rgba(47, 107, 255, 0.35);
  color: var(--blue-light);
  font-size: 0.85rem;
  font-weight: 700;
}

.reassure__item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.reassure__item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* CTA final */
.cta-final {
  padding: 110px 0;
}

.cta-final__panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 40px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(47, 107, 255, 0.1), 0 30px 90px rgba(47, 107, 255, 0.15);
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  padding: 40px 0 56px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .reassure__row { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .hero { padding: 120px 0 70px; }
  .hero__scrim {
    display: block;
    background: radial-gradient(ellipse 700px 480px at 50% 0%, rgba(0, 0, 0, 0.6), transparent 65%);
  }
  .section { padding: 70px 0; }
  .cta-final__panel { padding: 48px 24px; }
}
