:root {
  color-scheme: dark;
  --bg0: #06070c;
  --bg1: #0a0d17;
  --panel: rgba(13, 16, 28, 0.78);
  --panel2: rgba(13, 16, 28, 0.56);
  --stroke: rgba(255, 255, 255, 0.075);
  --stroke2: rgba(255, 255, 255, 0.13);
  --text: rgba(245, 248, 255, 0.96);
  --muted: rgba(245, 248, 255, 0.74);
  --muted2: rgba(245, 248, 255, 0.56);
  --accent: #2f6bff;
  --accent2: #5a9bff;
  --accent-ink: rgba(6, 7, 12, 0.96);
  --shadow: 0 28px 96px rgba(0, 0, 0, 0.58);
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1120px;
  --gutter: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(90, 155, 255, 0.42) rgba(0, 0, 0, 0.22);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.18);
}

::-webkit-scrollbar-thumb {
  background: rgba(90, 155, 255, 0.32);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.18);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(90, 155, 255, 0.42);
}

body {
  margin: 0;
  background: radial-gradient(1200px 720px at 50% 0px, rgba(47, 107, 255, 0.22), transparent 62%),
    radial-gradient(900px 640px at 18% 80px, rgba(255, 255, 255, 0.06), transparent 68%),
    radial-gradient(760px 520px at 88% 140px, rgba(90, 155, 255, 0.12), transparent 65%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.92), transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.03;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  padding: clamp(52px, 7vw, 92px) 0;
}

.booking-section {
  padding-bottom: clamp(34px, 5vw, 56px);
}

.hero {
  padding-top: clamp(18px, 4vw, 34px);
  position: relative;
  overflow: hidden;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(980px 520px at 50% 10%, rgba(47, 107, 255, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(6, 7, 12, 0.78), rgba(6, 7, 12, 0.94));
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(6, 7, 12, 0.84), rgba(6, 7, 12, 0.62));
  backdrop-filter: blur(14px);
}

.site-header .hero-top {
  margin: 0;
  padding: 14px 0;
}

.site-header .btn {
  min-height: 44px;
}

main {
  padding-top: 72px;
}

#booking {
  scroll-margin-top: 110px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(18px, 4vw, 28px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 25% 20%, rgba(90, 155, 255, 0.9), rgba(47, 107, 255, 0.18));
  box-shadow: 0 18px 54px rgba(47, 107, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-name {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted2);
}

.brand-tag-short {
  display: none;
}

.hero-copy {
  text-align: center;
  margin: 0 auto clamp(16px, 3.5vw, 28px);
  width: min(980px, 100%);
}

.hero .h1 {
  margin: 0 auto;
  max-width: 25ch;
  text-transform: capitalize;
}

.hero .subhead {
  max-width: 64ch;
}

.hero .subhead-small {
  max-width: 64ch;
}

.h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  font-size: clamp(34px, 4.1vw, 56px);
}

.subhead {
  margin: 14px auto 0;
  max-width: 920px;
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(16px, 1.8vw, 18px);
}

.subhead-small {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(245, 248, 255, 0.6);
}

.h2 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-size: clamp(26px, 3.1vw, 40px);
}

.h3 {
  margin: 0;
  font-weight: 720;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.lead {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.micro-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.micro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(15, 16, 22, 0.5);
  color: rgba(245, 248, 255, 0.84);
  font-size: 13px;
}

.micro-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.16);
}

.vsl-block {
  margin-top: clamp(18px, 3.5vw, 28px);
}

.vsl-shell {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.vsl-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(620px 340px at 50% 0%, rgba(47, 107, 255, 0.3), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
  filter: blur(8px);
}

.vsl-overlay {
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-lg) - 12px);
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4));
  cursor: pointer;
  z-index: 2;
  transition: opacity 160ms ease;
}


.vsl-overlay[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.vsl-micro {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(245, 248, 255, 0.88);
  background: rgba(15, 16, 22, 0.65);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.vsl-micro-text {
  font-weight: 700;
}

.vsl-micro-sub {
  color: rgba(245, 248, 255, 0.62);
  font-weight: 650;
  font-size: 12px;
}

.vsl-micro-sub::before {
  content: "•";
  margin: 0 8px;
  opacity: 0.7;
}

.vsl-micro-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(90, 155, 255, 0.95);
}

.vsl-micro-icon svg {
  width: 18px;
  height: 18px;
}

.vsl-play {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(100% 100% at 35% 20%, rgba(90, 155, 255, 0.95), rgba(47, 107, 255, 0.16));
  box-shadow: 0 26px 86px rgba(47, 107, 255, 0.26);
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.vsl-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid rgba(7, 7, 10, 0.9);
}

.vsl-frame,
.vsl-embed {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-lg) - 12px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.vsl-frame {
  aspect-ratio: 16 / 9;
  background-image: radial-gradient(720px 420px at 45% 35%, rgba(90, 155, 255, 0.18), transparent 62%),
    url("../img/video.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.vsl-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.proof-strip {
  width: min(1100px, 100%);
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  overflow-x: auto;
  padding: 0 4px;
  scrollbar-width: none;
}

.proof-strip::-webkit-scrollbar {
  display: none;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(15, 16, 22, 0.45);
  color: rgba(245, 248, 255, 0.78);
  font-size: 13px;
}

.proof-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.14);
}

.vsl-embed {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.2);
}

.vsl-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-cta {
  display: grid;
  place-items: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-cta .btn-xl {
  width: min(520px, 100%);
}

@media (min-width: 900px) {
  .hero-cta .btn-xl {
    padding: 18px 28px;
    font-size: 17px;
    min-height: 56px;
  }
}

.cta-sub {
  color: var(--muted2);
  font-size: 13px;
}

.cta-qual {
  color: rgba(245, 248, 255, 0.78);
  font-size: 13px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(6, 7, 12, 0), rgba(6, 7, 12, 0.92));
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  width: min(520px, 100%);
  margin: 0 auto;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 750;
  letter-spacing: -0.01em;
  cursor: pointer;
  touch-action: manipulation;
  min-height: 48px;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease,
    box-shadow 150ms ease;
  color: var(--text);
  background: rgba(15, 16, 22, 0.55);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: 2px solid rgba(47, 107, 255, 0.8);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: var(--accent-ink);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 72px rgba(47, 107, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #79b0ff, #2f6bff);
  box-shadow: 0 22px 88px rgba(47, 107, 255, 0.28);
}

.btn-secondary {
  background: rgba(15, 16, 22, 0.62);
  border-color: rgba(47, 107, 255, 0.5);
}

.btn-secondary:hover {
  border-color: rgba(90, 155, 255, 0.78);
  box-shadow: 0 18px 68px rgba(0, 0, 0, 0.38);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(245, 248, 255, 0.9);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-xl {
  padding: 16px 22px;
  font-size: 16px;
}

.section-head {
  text-align: center;
  width: min(940px, 100%);
  margin: 0 auto clamp(18px, 3.5vw, 28px);
}

.split {
  padding-top: 42px;
}

.clarity .section-head {
  margin-bottom: clamp(16px, 3vw, 22px);
}

.clarity-wrap {
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(980px 520px at 50% 0%, rgba(47, 107, 255, 0.16), transparent 58%),
    rgba(13, 16, 28, 0.26);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.52);
}

.clarity .two-col {
  gap: 18px;
  align-items: stretch;
}

.clarity .panel {
  padding: 26px 26px 24px;
  border-color: rgba(255, 255, 255, 0.11);
  background: radial-gradient(760px 520px at 30% 0%, rgba(47, 107, 255, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(13, 16, 28, 0.78), rgba(13, 16, 28, 0.54));
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.44);
}

.clarity .panel-muted {
  background: radial-gradient(760px 520px at 70% 0%, rgba(255, 255, 255, 0.07), transparent 58%),
    linear-gradient(180deg, rgba(13, 16, 28, 0.62), rgba(13, 16, 28, 0.44));
}

.clarity .panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -0.02em;
  color: rgba(245, 248, 255, 0.94);
  margin-bottom: 18px;
}

.clarity .panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.clarity .panel-icon svg {
  width: 18px;
  height: 18px;
}

.clarity .panel-icon-is {
  background: radial-gradient(120% 120% at 30% 20%, rgba(90, 155, 255, 0.5), rgba(47, 107, 255, 0.18));
  color: rgba(90, 155, 255, 0.98);
  border-color: rgba(47, 107, 255, 0.28);
  box-shadow: 0 18px 56px rgba(47, 107, 255, 0.18);
}

.clarity .panel-icon-not {
  color: rgba(245, 248, 255, 0.62);
}

.clarity-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.clarity-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(245, 248, 255, 0.78);
  line-height: 1.5;
}

.clarity .panel-muted .clarity-list li {
  color: rgba(245, 248, 255, 0.64);
}

.clarity-li-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 0;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.clarity-li-icon svg {
  width: 14px;
  height: 14px;
}

.clarity-li-icon-is {
  border-color: rgba(47, 107, 255, 0.24);
  background: rgba(47, 107, 255, 0.12);
  color: rgba(90, 155, 255, 0.98);
}

.clarity-li-icon-not {
  color: rgba(245, 248, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.clarity-li-text {
  font-size: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  padding: 20px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.panel-muted {
  background: var(--panel2);
}

.panel-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: rgba(244, 241, 234, 0.92);
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.bullets li {
  margin: 8px 0;
}

.bullets-tight li {
  margin: 6px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(13, 16, 28, 0.8), rgba(13, 16, 28, 0.56));
  padding: 18px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  min-height: 210px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:focus-within {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.52);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(120% 120% at 25% 20%, rgba(90, 155, 255, 0.3), rgba(15, 16, 22, 0.55));
  color: rgba(245, 248, 255, 0.88);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.card-foot {
  font-size: 13px;
  color: rgba(90, 155, 255, 0.88);
  border-top: 1px solid var(--stroke);
  padding-top: 10px;
}

.build .section-head {
  margin-bottom: clamp(18px, 3.5vw, 26px);
}

.build-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.build-card {
  padding: 22px;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: radial-gradient(840px 560px at 30% 0%, rgba(47, 107, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(13, 16, 28, 0.76), rgba(13, 16, 28, 0.5));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  transition: none;
}

.build-card:focus-within {
  border-color: rgba(90, 155, 255, 0.22);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.build .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(90, 155, 255, 0.92);
}

.build .card-icon svg {
  width: 22px;
  height: 22px;
}

.build .h3 {
  font-size: 18px;
}

.build-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.build-lines li {
  position: relative;
  padding-left: 16px;
  color: rgba(245, 248, 255, 0.74);
  line-height: 1.45;
  font-size: 15px;
}

.build-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(90, 155, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
}

.build .card-foot {
  color: rgba(90, 155, 255, 0.86);
  border-top-color: rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: 4px;
}

.cta-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(980px 420px at 30% 10%, rgba(47, 107, 255, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(13, 16, 28, 0.76), rgba(13, 16, 28, 0.56));
  padding: clamp(26px, 4vw, 38px);
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  box-shadow: var(--shadow);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 16, 28, 0.46);
  color: rgba(245, 248, 255, 0.78);
  backdrop-filter: blur(10px);
}

.cta-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 107, 255, 0.22);
  background: rgba(47, 107, 255, 0.12);
  color: rgba(90, 155, 255, 0.95);
}

.cta-badge-icon svg {
  width: 14px;
  height: 14px;
}

.cta-badge-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-title {
  margin: 0;
  max-width: 18ch;
}

.cta-copy {
  display: grid;
  gap: 6px;
  max-width: 62ch;
  color: rgba(245, 248, 255, 0.7);
  line-height: 1.6;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
  width: 100%;
  max-width: 760px;
}

.cta-actions .btn {
  flex: 1 1 320px;
  min-width: 260px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust .section-head {
  margin-bottom: clamp(18px, 3.5vw, 26px);
  text-align: center;
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.trust-accent {
  color: rgba(90, 155, 255, 0.98);
}

.trust .section-head .lead {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.trust-metric {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(720px 520px at 50% 0%, rgba(47, 107, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(13, 16, 28, 0.66), rgba(13, 16, 28, 0.46));
  padding: 20px;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.26);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  text-align: center;
}

.trust-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(90, 155, 255, 0.92);
}

.trust-metric-icon svg {
  width: 22px;
  height: 22px;
}

.trust-metric-value {
  font-size: 34px;
  font-weight: 860;
  letter-spacing: -0.03em;
  color: rgba(90, 155, 255, 0.98);
  line-height: 1.05;
  margin-top: 2px;
}

.trust-metric-title {
  font-size: 15px;
  font-weight: 780;
  color: rgba(245, 248, 255, 0.9);
}

.trust-metric-note {
  font-size: 13px;
  color: rgba(245, 248, 255, 0.62);
  line-height: 1.45;
}

.trust-quote {
  margin-top: 18px;
  width: min(600px, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(13, 16, 28, 0.58), rgba(13, 16, 28, 0.42));
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.trust-quote-body {
  max-width: 86ch;
  margin: 0 auto;
  color: rgba(245, 248, 255, 0.74);
  font-style: italic;
  line-height: 1.7;
  font-size: 16px;
}

.trust-quote-foot {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(47, 107, 255, 0.18);
  border: 1px solid rgba(47, 107, 255, 0.22);
  color: rgba(90, 155, 255, 0.98);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-sig {
  text-align: left;
}

.trust-sig-name {
  font-weight: 780;
  color: rgba(245, 248, 255, 0.9);
  font-size: 14px;
}

.trust-sig-title {
  color: rgba(245, 248, 255, 0.62);
  font-size: 13px;
}

.booking-final {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(980px 520px at 50% 0%, rgba(47, 107, 255, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(13, 16, 28, 0.68), rgba(13, 16, 28, 0.44));
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.28);
}

.booking-head {
  text-align: center;
  width: min(820px, 100%);
  margin: 0 auto 18px;
}

.booking-head .lead {
  margin: 10px auto 0;
  max-width: 60ch;
}

.booking-embed {
  width: min(1020px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.calendly-iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
  background: transparent;
}

.trust-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-cta .btn-xl {
  width: min(520px, 100%);
}

.trust-cta .cta-sub {
  max-width: 62ch;
}

.footer-site {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: clamp(24px, 4vw, 32px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 248, 255, 0.6);
  font-size: 13px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .booking {
    grid-template-columns: 1fr;
  }

  .calendly-iframe {
    height: 720px;
  }

  .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 86px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .hero-top {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-top .btn {
    width: auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-tag {
    line-height: 1.35;
  }

  .brand-tag {
    font-size: 12px;
  }

  .brand-tag-full {
    display: none;
  }

  .brand-tag-short {
    display: inline;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero .h1 {
    max-width: 18ch;
    line-height: 1.08;
    text-wrap: balance;
  }

  .subhead {
    margin-top: 12px;
    line-height: 1.55;
  }

  .micro-row {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .micro {
    padding: 9px 11px;
    gap: 9px;
    font-size: 12.5px;
  }

  .micro-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.16);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .clarity-wrap {
    padding: 10px;
  }

  .clarity .two-col {
    gap: 12px;
  }

  .clarity .panel {
    padding: 20px 20px 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .build-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .build-card {
    padding: 20px;
  }

  .build-lines li {
    font-size: 15px;
  }

  .vsl-shell {
    padding: 10px;
    border-radius: 22px;
  }

  .vsl-overlay {
    inset: 10px;
    border-radius: 12px;
  }

  .trust-cta {
    gap: 10px;
  }

  .trust-cta .btn {
    width: 100%;
  }

  .cta-copy {
    font-size: 15px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: 0;
    flex: none;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-final {
    padding: 16px;
  }

  .calendly-iframe {
    height: 680px;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .trust-metric {
    padding: 18px;
  }

  .trust-metric-value {
    font-size: 32px;
  }

  .btn {
    padding: 15px 18px;
    font-size: 14px;
  }

  .btn-xl {
    padding: 16px 20px;
    font-size: 15px;
  }

  .hero-cta .btn-xl {
    width: 100%;
  }

  .vsl-micro {
    top: 10px;
    left: 10px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .proof-item {
    font-size: 12px;
    padding: 8px 10px;
  }

  .vsl-micro-icon {
    width: 16px;
    height: 16px;
  }

  .vsl-micro-icon svg {
    width: 16px;
    height: 16px;
  }

  .vsl-play {
    width: 68px;
    height: 68px;
  }

  .vsl-play::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 16px;
  }

  main {
    padding-top: 80px;
  }

  #booking {
    scroll-margin-top: 124px;
  }


  .booking-actions {
    gap: 10px;
  }

}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }

  .card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.52);
    transform: translateY(-2px);
  }

  .build .card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
    transform: none;
  }

  .vsl-overlay:hover .vsl-play {
    transform: translateY(-1px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
