:root {
  --color-ink: #17202a;
  --color-muted: #5d6673;
  --color-panel: #ffffff;
  --color-soft: #f4f7fb;
  --color-deep: #0f2537;
  --color-accent: #00d7ff;
  --color-accent-dark: #00d7ff;
  --color-line: #dce4ef;
  --shadow-card: 0 24px 70px rgba(15, 37, 55, 0.14);
  --radius-large: 28px;
  --radius-medium: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--color-ink);
  background: #fbfcff;
  line-height: 1.6;
}

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

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

p {
  color: var(--color-muted);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 255, 0.9);
  border-bottom: 1px solid rgba(220, 228, 239, 0.75);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 215, 255, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 118px;
  background:
    radial-gradient(circle at top right, rgba(0, 215, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 56px;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-title .word-complex,
.hero-title .word-clear {
  display: inline-block;
  position: relative;
}

.hero-title .word-complex {
  color: var(--color-accent);
}

.hero-title .word-complex::before {
  content: attr(data-scramble);
  position: absolute;
  inset: 0 auto auto 0;
  min-width: 100%;
  color: var(--color-accent);
  font-family: Consolas, "Courier New", monospace;
  letter-spacing: -0.045em;
  opacity: 0;
  text-shadow: 0 0 18px rgba(0, 215, 255, 0.55);
  white-space: nowrap;
}

.hero-title.is-animating .word-complex {
  color: transparent;
}

.hero-title.is-animating .word-complex::before {
  animation: codeJitter 150ms steps(2, end) infinite;
  opacity: 1;
}

.hero-title.is-settled .word-complex {
  animation: complexSettle 520ms ease both;
}

.hero-title .word-clear {
  isolation: isolate;
}

.hero-title .word-clear::before {
  content: "";
  position: absolute;
  inset: -0.22em -0.35em;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at 60% 45%, rgba(0, 215, 255, 0.32), transparent 42%),
    radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.72), transparent 36%);
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0;
  pointer-events: none;
}

.hero-title.is-animating .word-clear {
  animation: clearReveal 1320ms ease-out both;
}

.hero-title.is-animating .word-clear::before {
  animation: fogDissipate 1320ms ease-out both;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: 1.18rem;
}

@keyframes codeJitter {
  0% {
    transform: translate(0, 0) skewX(0deg);
  }

  50% {
    transform: translate(0.018em, -0.015em) skewX(-2deg);
  }

  100% {
    transform: translate(-0.014em, 0.012em) skewX(2deg);
  }
}

@keyframes complexSettle {
  0% {
    filter: blur(2px);
    letter-spacing: -0.02em;
    text-shadow: 0 0 18px rgba(0, 215, 255, 0.32);
  }

  100% {
    filter: blur(0);
    letter-spacing: inherit;
    text-shadow: none;
  }
}

@keyframes clearReveal {
  0% {
    filter: blur(16px);
    opacity: 0.35;
    transform: translateY(0.05em);
    text-shadow: 0 0 30px rgba(15, 37, 55, 0.45);
  }

  72% {
    filter: blur(2px);
    opacity: 0.9;
    text-shadow: 0 0 12px rgba(0, 215, 255, 0.18);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
    text-shadow: none;
  }
}

@keyframes fogDissipate {
  0% {
    opacity: 0.9;
    transform: translateX(-18%) scale(1);
  }

  58% {
    opacity: 0.45;
    transform: translateX(12%) scale(1.12);
  }

  100% {
    opacity: 0;
    transform: translateX(32%) scale(1.28);
  }
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--color-deep);
  background: var(--color-accent);
  box-shadow: 0 16px 38px rgba(0, 215, 255, 0.24);
}

.button-primary:hover {
  background: var(--color-accent-dark);
}

.button-secondary {
  color: var(--color-deep);
  background: #ffffff;
  border: 1px solid var(--color-line);
}

.hero-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.card-kicker {
  margin-bottom: 20px;
  color: var(--color-deep);
  font-weight: 800;
}

.hero-checklist {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--color-muted);
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: inset 0 0 0 5px rgba(0, 215, 255, 0.22);
}

.section-light {
  background: var(--color-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p {
  font-size: 1.05rem;
}

.card-grid,
.proof-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.proof-card,
.pricing-card {
  min-height: 260px;
  padding: 30px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
}

.service-card {
  box-shadow: 0 16px 50px rgba(15, 37, 55, 0.08);
}

.service-package {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-package p {
  margin-bottom: 0;
}

.includes-label {
  margin-bottom: 10px;
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-includes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.service-includes li::marker {
  color: var(--color-accent);
}

.ideal-for {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.ideal-for span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ideal-for p {
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.rich-text {
  max-width: 700px;
  font-size: 1.08rem;
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(0, 215, 255, 0.22), transparent 28rem),
    var(--color-deep);
}

.section-dark p,
.section-dark .eyebrow {
  color: #b9cbe0;
}

.section-dark .eyebrow {
  color: var(--color-accent);
}

.proof-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.proof-card p {
  color: #c8d5e4;
}

.proof-disclaimer {
  max-width: 860px;
  margin: 24px 0 0;
  color: #9fb1c6;
  font-size: 0.86rem;
}

.proof-number {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.15em;
}

.pricing-section {
  background: var(--color-soft);
}

.pricing-card {
  display: grid;
  grid-template-rows: 44px 82px 1fr;
  min-height: 260px;
  box-shadow: 0 16px 50px rgba(15, 37, 55, 0.08);
}

.pricing-card h3,
.pricing-card p {
  margin-bottom: 0;
}

.pricing-card-featured {
  border-color: rgba(0, 215, 255, 0.55);
  box-shadow: 0 24px 70px rgba(0, 215, 255, 0.14);
}

.pricing-price {
  align-self: center;
  color: var(--color-accent);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.contact-section {
  padding-top: 80px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 46px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  max-width: 420px;
}

.contact-note {
  margin: 0;
  font-size: 0.92rem;
  text-align: right;
}

.booking-card {
  margin-top: 28px;
  padding: 46px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.booking-heading {
  margin-bottom: 28px;
}

.booking-frame {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
  border-radius: var(--radius-medium);
}

.booking-fallback {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.booking-fallback a {
  color: var(--color-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.footer-inner a {
  font-weight: 800;
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 128px;
  }

  .section {
    padding: 72px 0;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 32px;
  }

  .card-grid,
  .proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .contact-note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 152px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .hero-card,
  .contact-card,
  .booking-card {
    padding: 28px;
  }
}
