:root {
  --bg: #d9e4ea;
  --shell: rgba(247, 250, 252, 0.78);
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --ink: #101317;
  --muted: #67717b;
  --line: rgba(16, 19, 23, 0.08);
  --line-strong: rgba(16, 19, 23, 0.14);
  --accent: #efb3c6;
  --accent-rgb: 239, 179, 198;
  --accent-alt: #d6f2ff;
  --radius-shell: 42px;
  --radius-card: 30px;
  --radius-pill: 999px;
  --container: min(1280px, calc(100vw - 24px));
  --shadow-soft: 0 22px 70px rgba(55, 71, 86, 0.12);
  --shadow-shell: 0 24px 80px rgba(52, 71, 84, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 16% 14%, rgba(var(--accent-rgb), 0.28), transparent 20%),
    radial-gradient(circle at 88% 10%, rgba(214, 242, 255, 0.8), transparent 24%),
    linear-gradient(180deg, #dbe6eb 0%, #d5e1e7 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

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

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

.page-ambient,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-ambient {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.55), transparent 26%),
    radial-gradient(circle at 75% 35%, rgba(var(--accent-rgb), 0.14), transparent 24%);
}

.cursor-glow {
  width: 28rem;
  height: 28rem;
  inset: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 68%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  opacity: 0.75;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.22);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 19, 23, 0.96), rgba(var(--accent-rgb), 0.96));
  border-radius: 999px;
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  padding: 14px 0 0;
  z-index: 20;
}

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

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-pill);
  background: rgba(247, 250, 252, 0.66);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(56, 72, 84, 0.1);
}

.site-header.is-scrolled .header-shell {
  background: rgba(247, 250, 252, 0.84);
}

.brand,
h1,
h2,
h3,
.stat-value,
.price-main {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.04em;
}

.brand {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
}

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

.main-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.header-cta,
.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 40px rgba(16, 19, 23, 0.18);
}

.btn-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(16, 19, 23, 0.08);
}

.btn-full {
  width: 100%;
}

.site-main {
  padding: 24px 0 80px;
}

.hero-section,
.content-section,
.pricing-section,
.booking-section,
.metrics-section {
  padding-top: 22px;
}

.hero-shell,
.content-shell,
.pricing-shell,
.booking-shell,
.metrics-shell,
.footer-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-shell);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--shell);
  box-shadow: var(--shadow-shell);
  backdrop-filter: blur(18px);
}

.hero-shell::before,
.content-shell::before,
.pricing-shell::before,
.booking-shell::before,
.metrics-shell::before,
.footer-shell::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-shell) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.hero-shell {
  padding: 44px;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.mini-label,
.feature-index,
.signal-pill,
.stage-chip {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(16, 19, 23, 0.5);
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.eyebrow-dark {
  color: rgba(16, 19, 23, 0.44);
}

h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 7.4vw, 5.9rem);
  line-height: 0.92;
  font-weight: 700;
}

.hero-sub {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-seo-line {
  margin-top: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 19, 23, 0.48);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.35fr) minmax(210px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.info-card,
.feature-panel,
.price-card,
.booking-form,
.process-ribbon,
.stage-card,
.metrics-shell,
.info-row {
  border-radius: var(--radius-card);
}

.info-card,
.feature-panel,
.price-card,
.booking-form,
.process-ribbon,
.info-row {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.motion-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --parallax-y: 0px;
  --lift-scale: 1;
  transform: translate3d(0, var(--parallax-y), 0) perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--lift-scale));
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
  will-change: transform;
}

.motion-card:hover {
  --lift-scale: 1.015;
  box-shadow: 0 26px 80px rgba(55, 71, 86, 0.16);
}

.info-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.avatar-row {
  display: flex;
  align-items: center;
}

.avatar-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: -10px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: linear-gradient(135deg, #111, #4f5660);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.card-copy,
.feature-panel p,
.price-sub,
.price-list,
.booking-text,
.form-note,
.form-status,
.section-head p,
.info-row span {
  color: var(--muted);
  line-height: 1.8;
}

.stat-card {
  align-content: end;
}

.mini-label {
  color: rgba(16, 19, 23, 0.42);
}

.stat-value {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.9;
  font-weight: 700;
}

.bullet-list,
.price-list {
  list-style: none;
}

.bullet-list {
  display: grid;
  gap: 10px;
}

.bullet-list li,
.price-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.media-card {
  align-content: center;
}

.play-puck {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.58), transparent 38%),
    linear-gradient(135deg, #121519, #414852);
  position: relative;
}

.play-puck::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-38%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.stage-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 20% 16%, rgba(var(--accent-rgb), 0.26), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(214, 242, 255, 0.9), transparent 24%),
    linear-gradient(180deg, rgba(249, 251, 252, 0.98), rgba(239, 244, 247, 0.96));
  box-shadow: 0 26px 80px rgba(46, 68, 84, 0.16);
}

.stage-card::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-card) - 12px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  pointer-events: none;
}

.stage-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 20%, rgba(255, 255, 255, 0.5) 20.2%, transparent 20.4%),
    linear-gradient(40deg, transparent 24%, rgba(255, 255, 255, 0.52) 24.2%, transparent 24.4%);
  opacity: 0.85;
}

.three-root {
  position: absolute;
  inset: 0;
}

.three-root canvas {
  width: 100% !important;
  height: 100% !important;
}

.stage-chip {
  position: absolute;
  z-index: 2;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(74, 92, 105, 0.12);
  animation: chipFloat 6.4s ease-in-out infinite;
}

.stage-chip-left {
  top: 22px;
  left: 22px;
}

.stage-chip-right {
  top: 22px;
  right: 22px;
  animation-delay: 1.1s;
}

.stage-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(70, 88, 102, 0.12);
}

.stage-footer strong {
  display: block;
  font-size: 1rem;
}

.stage-footer span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

.signal-pill {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  background: #111;
  color: #fff;
}

.stage-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
}

.stage-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.stage-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(16, 19, 23, 0.12);
  border-top-color: rgba(16, 19, 23, 0.88);
  animation: spin 1s linear infinite;
}

.stage-loader p {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 19, 23, 0.58);
}

.metrics-shell,
.content-shell,
.pricing-shell,
.booking-shell,
.footer-shell {
  padding: 28px;
}

.metrics-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.metric strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.metric span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.section-copy {
  max-width: 760px;
}

h2 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.94;
  font-weight: 700;
  max-width: 11ch;
}

.section-head > p {
  max-width: 38ch;
}

.feature-grid,
.pricing-grid,
.booking-shell,
.faq-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.feature-panel,
.price-card {
  padding: 22px;
}

.feature-index {
  color: rgba(16, 19, 23, 0.4);
}

.feature-panel h3,
.price-main {
  margin-top: 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 0.96;
  font-weight: 700;
}

.feature-panel p {
  margin-top: 12px;
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
}

.process-step {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.faq-shell {
  padding: 28px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.faq-item {
  padding: 22px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.price-main small {
  font-size: 0.34em;
  letter-spacing: 0.04em;
}

.price-sub {
  margin-top: 12px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.price-card-featured {
  background: #111317;
  color: #fff;
  border-color: rgba(17, 19, 23, 0.6);
}

.price-card-featured .mini-label,
.price-card-featured .price-sub,
.price-card-featured .price-list {
  color: rgba(255, 255, 255, 0.72);
}

.price-card-featured .price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.booking-shell {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.15fr);
  align-items: start;
}

.booking-text {
  margin-top: 18px;
  max-width: 44ch;
}

.info-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.info-row strong {
  font-size: 0.95rem;
}

.booking-form {
  padding: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.field-row-single {
  grid-template-columns: 1fr;
}

.field-row label {
  display: grid;
  gap: 10px;
}

.field-row span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 19, 23, 0.44);
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1rem 0.96rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(16, 19, 23, 0.22);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18);
  transform: translateY(-1px);
}

.form-note {
  margin-top: 12px;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5em;
  margin-top: 6px;
  font-size: 0.92rem;
}

.form-status.is-ok {
  color: #156a50;
}

.form-status.is-warning {
  color: #885e0f;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-shell p {
  max-width: 42ch;
  color: var(--muted);
}

.reveal {
  --reveal-y: 28px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y, 0px)), 0) perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(var(--lift-scale, 1));
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.reveal-scale {
  --lift-scale: 0.96;
}

.reveal.in-view {
  opacity: 1;
  --reveal-y: 0px;
  --lift-scale: 1;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

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

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

@media (max-width: 1120px) {
  .hero-board,
  .feature-grid,
  .pricing-grid,
  .booking-shell,
  .faq-grid,
  .section-head,
  .process-ribbon,
  .footer-shell,
  .metrics-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    align-items: start;
  }

  .section-head > p,
  .booking-text {
    max-width: none;
  }

  .hero-side {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 14px, 100%);
    --radius-shell: 30px;
    --radius-card: 24px;
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .header-shell,
  .hero-shell,
  .content-shell,
  .pricing-shell,
  .booking-shell,
  .metrics-shell,
  .footer-shell {
    padding: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero-section,
  .content-section,
  .pricing-section,
  .booking-section,
  .metrics-section {
    padding-top: 14px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero-board {
    margin-top: 24px;
  }

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

  .stage-card {
    min-height: 480px;
  }

  .stage-chip {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .stage-footer {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .motion-card {
    transform: translate3d(0, var(--parallax-y), 0) scale(1);
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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