:root {
  --bg: #11161a;
  --bg-2: #0e1317;
  --panel: #161d23;
  --panel-2: #1b232b;
  --line: rgba(255, 255, 255, 0.075);
  --line-strong: rgba(255, 255, 255, 0.12);
  --blue: #0066ff;
  --blue-2: #3d85ff;
  --green: #22c55e;
  --amber: #f59e0b;
  --text: #e8edf2;
  --muted: #647284;
  --muted-2: #94a3b8;
  --dark: #0a0f13;
  --radius: 16px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 102, 255, 0.2), transparent 32%),
    radial-gradient(circle at 8% 16%, rgba(0, 102, 255, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Aptos", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.16;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 22, 26, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-wordmark {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.header-cta,
.site-footer a {
  text-decoration: none;
}

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

.header-cta {
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 102, 255, 0.28);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 78px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 8%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.18);
  filter: blur(100px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-2);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  font-weight: 850;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(52px, 5.9vw, 82px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

.hero-lede,
.section-heading p,
.copy-block p,
.pricing-copy p,
.booking-copy p {
  max-width: 690px;
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 102, 255, 0.28);
}

.button.primary:hover {
  background: #0d70ff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.button.full {
  width: 100%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  overflow: hidden;
  max-width: 840px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 126px;
  padding: 22px;
  background: rgba(22, 29, 35, 0.82);
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-2);
  font-family: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(27, 35, 43, 0.94), rgba(17, 22, 26, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 102, 255, 0.18), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  pointer-events: none;
}

.panel-topline,
.hero-panel h2,
.leak-list {
  position: relative;
}

.panel-topline {
  width: auto;
  max-width: 72%;
  margin-bottom: 42px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.22));
}

.panel-wordmark {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
}

.leak-list {
  display: grid;
  gap: 2px;
  margin: 28px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  list-style: none;
}

.leak-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(17, 22, 26, 0.72);
}

.leak-list p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.check-icon,
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.stat-section,
.system-section,
.booking-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
}

.stat-section,
.booking-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(22, 29, 35, 0.52);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading.centered {
  display: block;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.stat-grid,
.system-grid,
.fit-section {
  display: grid;
  gap: 16px;
}

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

.stat-card,
.system-card,
.fit-card,
.price-card,
.calendar-shell,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.stat-card {
  min-height: 255px;
  padding: 30px;
}

.stat-card .source {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 62px;
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.stat-card p,
.system-card p,
.system-card li,
.fit-card li,
.price-card p {
  color: var(--muted-2);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.76fr);
  gap: 70px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 0;
  border-radius: 0;
}

.timeline-item span {
  color: var(--blue-2);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.timeline-item p {
  margin: 0;
  color: var(--muted-2);
}

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

.system-card {
  padding: 34px;
}

.system-card .card-number {
  margin-bottom: 54px;
}

.system-card ul,
.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.accent-card {
  background:
    linear-gradient(150deg, rgba(0, 102, 255, 0.95), rgba(3, 85, 206, 0.92) 52%, rgba(39, 49, 56, 0.96));
  color: #fff;
}

.accent-card p,
.accent-card li {
  color: rgba(255, 255, 255, 0.78);
}

.accent-card .card-number {
  background: #fff;
  color: var(--blue);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.52fr);
  gap: 54px;
  align-items: center;
}

.price-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(27, 35, 43, 0.96), rgba(14, 19, 23, 0.96));
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-row strong {
  color: #fff;
  font-family: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 58px;
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.price-card p {
  margin: 24px 0;
}

.fit-section {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.fit-card {
  padding: 34px;
}

.fit-card.good {
  border-color: rgba(34, 197, 94, 0.28);
}

.fit-card.good h2 {
  color: var(--green);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(110deg, rgba(0, 102, 255, 0.96), rgba(3, 85, 206, 0.88) 54%, rgba(39, 49, 56, 0.9)),
    var(--blue);
}

.booking-section .eyebrow,
.booking-section p,
.booking-section h2 {
  color: #fff;
}

.booking-section .eyebrow::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.booking-copy .eyebrow {
  justify-content: center;
}

.booking-copy p {
  margin-right: auto;
  margin-left: auto;
}

.calendar-shell {
  width: min(980px, 100%);
  min-height: 780px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.calendar-embed {
  display: block;
  width: 100%;
  min-height: 744px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.calendar-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 484px;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: 13px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(10, 15, 19, 0.2);
  background-size: 28px 28px;
  text-align: center;
}

.calendar-placeholder img {
  width: 56px;
  margin-bottom: 18px;
}

.calendar-placeholder p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 54px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--muted-2);
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--blue-2);
  font-weight: 900;
}

.footer-wordmark {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.legal-page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 80px;
}

.legal-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(22, 29, 35, 0.78);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 76px);
}

.legal-card h2 {
  margin-top: 46px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-card h3 {
  margin-top: 28px;
}

.legal-card p,
.legal-card li {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.75;
}

.legal-card a {
  color: #fff;
  font-weight: 800;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 22px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal],
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

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

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .pricing-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 720px;
  }

  .section-heading {
    display: block;
  }

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

  .system-grid,
  .fit-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .brand-wordmark {
    width: 104px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .stat-section,
  .system-section,
  .booking-section {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lede,
  .section-heading p,
  .copy-block p,
  .pricing-copy p,
  .booking-copy p {
    font-size: 17px;
  }

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

  .proof-strip,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .stat-card,
  .system-card,
  .fit-card,
  .price-card {
    padding: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    font-size: 44px;
  }

  .calendar-shell {
    min-height: 700px;
  }

  .calendar-embed {
    min-height: 664px;
  }

  .calendar-placeholder {
    min-height: 384px;
  }

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

  .footer-links {
    gap: 16px;
  }
}
