:root {
  --night: #071521;
  --night-soft: #0d2130;
  --night-line: rgba(255, 255, 255, 0.12);
  --ink: #10232a;
  --ink-soft: #53666a;
  --paper: #f4f7f2;
  --paper-deep: #e9eee7;
  --white: #ffffff;
  --lime: #c3f66e;
  --lime-deep: #9ddf49;
  --mint: #60d9b1;
  --sky: #75bfff;
  --coral: #ffb19b;
  --border: rgba(16, 35, 42, 0.14);
  --shadow-sm: 0 12px 35px rgba(15, 36, 43, 0.08);
  --shadow-lg: 0 35px 100px rgba(3, 16, 25, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 78px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
  border-radius: 4px;
}

::selection {
  background: var(--lime);
  color: var(--night);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--night);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.section {
  position: relative;
  padding: 112px 0;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 5.65rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #597177;
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(195, 246, 110, 0.12), 0 0 22px rgba(195, 246, 110, 0.42);
}

.text-gradient {
  background: linear-gradient(115deg, var(--lime) 5%, #d6ffd5 45%, var(--sky) 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ink-accent {
  color: #367c6c;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 20px;
  flex: 0 0 auto;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--lime);
  color: #0a1a1e;
  box-shadow: 0 8px 30px rgba(157, 223, 73, 0.2);
}

.button-primary:hover {
  background: #d2ff86;
  box-shadow: 0 13px 35px rgba(157, 223, 73, 0.28);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.button-large {
  min-height: 58px;
  padding: 16px 25px;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #317b69;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link-large {
  font-size: 1.05rem;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.15;
}

.ambient-one {
  top: 12vh;
  left: -280px;
  background: var(--mint);
}

.ambient-two {
  right: -300px;
  bottom: 10vh;
  background: var(--sky);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 21, 33, 0.8);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(7, 21, 33, 0.94);
  box-shadow: 0 10px 32px rgba(1, 10, 16, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--lime);
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.brand-product {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.main-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.87rem;
  font-weight: 670;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  min-height: 100vh;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 96px);
  padding-bottom: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(96, 217, 177, 0.12), transparent 28%),
    radial-gradient(circle at 87% 32%, rgba(117, 191, 255, 0.13), transparent 26%),
    linear-gradient(145deg, #071521 0%, #0a1a28 55%, #071521 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.hero::after {
  position: absolute;
  right: -15%;
  top: -20%;
  width: 65vw;
  height: 65vw;
  max-width: 900px;
  max-height: 900px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: inset 0 0 0 140px rgba(255, 255, 255, 0.008), inset 0 0 0 280px rgba(255, 255, 255, 0.008);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

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

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.59);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.hero-lead em {
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-notes svg {
  width: 16px;
  color: var(--mint);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  height: 85%;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--mint), var(--sky));
  filter: blur(90px);
  opacity: 0.15;
}

.focus-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transform: rotateY(-3deg) rotateX(2deg);
}

.focus-panel::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(195, 246, 110, 0.08);
  content: "";
}

.panel-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.panel-topbar > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-kicker {
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.panel-topbar strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(195, 246, 110, 0.2);
  border-radius: 99px;
  background: rgba(195, 246, 110, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 700;
}

.live-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.input-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 10px;
}

.input-cloud span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.input-cloud span:nth-child(2) {
  opacity: 0.75;
}

.input-cloud span:nth-child(3) {
  opacity: 0.55;
}

.signal-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 94px;
}

.path-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(96, 217, 177, 0.45));
}

.path-line.active {
  flex: 1;
  background: linear-gradient(to bottom, rgba(195, 246, 110, 0.8), rgba(195, 246, 110, 0.1));
}

.path-node {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(195, 246, 110, 0.45);
  border-radius: 50%;
  background: rgba(195, 246, 110, 0.08);
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(195, 246, 110, 0.14);
}

.focus-card {
  padding: 24px;
  border: 1px solid rgba(195, 246, 110, 0.22);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(195, 246, 110, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.11);
}

.focus-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.focus-card-head .number {
  color: var(--lime);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.time-chip {
  padding: 4px 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
}

.focus-card .visual-title {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.focus-card > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.79rem;
  line-height: 1.55;
}

.micro-steps {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.micro-steps span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.micro-steps i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.micro-steps .done {
  color: rgba(255, 255, 255, 0.76);
}

.micro-steps .done i {
  border-color: var(--mint);
  background: var(--mint);
  box-shadow: 0 0 10px rgba(96, 217, 177, 0.5);
}

.progress-line {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.progress-line span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--lime));
}

.panel-footnote {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  text-align: center;
}

.panel-footnote span {
  color: var(--lime);
}

.metric-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 105px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.metric-strip > div {
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding: 29px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.metric-strip > div:first-child {
  padding-left: 0;
}

.metric-strip > div:last-child {
  border-right: 0;
}

.metric-strip strong {
  font-size: 1.12rem;
  letter-spacing: -0.035em;
}

.metric-strip span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

/* Problem and comparison */
.section-problem {
  overflow: hidden;
  background: var(--paper);
}

.section-problem::before {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: rgba(96, 217, 177, 0.18);
  content: "";
  filter: blur(120px);
  transform: translateX(-50%);
}

.section-intro {
  margin: 0 auto 62px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1010px;
}

.comparison-card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.after-card {
  border-color: rgba(54, 124, 108, 0.23);
  background: linear-gradient(145deg, rgba(96, 217, 177, 0.12), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-sm);
}

.comparison-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-label span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 35, 42, 0.06);
}

.after-card .comparison-label {
  color: #317b69;
}

.after-card .comparison-label span {
  background: rgba(96, 217, 177, 0.18);
}

.comparison-card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  color: #53666a;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 23px;
}

.comparison-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: #9caaa8;
  content: "";
}

.after-card li {
  color: #2b4748;
}

.after-card li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

/* Method */
.section-method {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(96, 217, 177, 0.09), transparent 32%),
    linear-gradient(145deg, #0a1925, #071521);
  color: var(--white);
}

.section-method::after {
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 255, 255, 0.008), inset 0 0 0 180px rgba(255, 255, 255, 0.008);
  content: "";
}

.method-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 125px);
  align-items: start;
}

.method-heading {
  position: sticky;
  top: 115px;
}

.method-heading .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.method-heading h2 {
  font-size: clamp(2.45rem, 4.2vw, 4rem);
}

.method-heading > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 1.02rem;
}

.method-heading .text-link {
  color: var(--lime);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.method-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-content h3 {
  font-size: 1.5rem;
}

.step-content p {
  max-width: 520px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.step-tag {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid rgba(96, 217, 177, 0.2);
  border-radius: 99px;
  background: rgba(96, 217, 177, 0.06);
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Includes */
.section-includes {
  background: #f7f9f5;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: 58px;
}

.split-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.deliverable-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.deliverable-card:hover {
  border-color: rgba(54, 124, 108, 0.26);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.deliverable-card.featured {
  background: linear-gradient(145deg, #dff6e9, #f7f9f5 70%);
}

.deliverable-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(54, 124, 108, 0.1);
  border-radius: 50%;
  content: "";
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(54, 124, 108, 0.2);
  border-radius: 14px;
  background: rgba(96, 217, 177, 0.09);
  color: #317b69;
}

.card-icon svg {
  width: 25px;
}

.card-overline {
  display: block;
  margin-bottom: 7px;
  color: #66807c;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deliverable-card h3 {
  font-size: 1.5rem;
}

.deliverable-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

/* Fit */
.section-fit {
  padding-top: 20px;
  background: #f7f9f5;
}

.fit-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fit-header {
  padding: 43px 48px 27px;
  border-bottom: 1px solid var(--border);
}

.fit-header h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fit-columns > div {
  padding: 37px 48px 41px;
}

.fit-columns > div:first-child {
  border-right: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(96, 217, 177, 0.08), transparent 65%);
}

.fit-columns h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.fit-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

.fit-icon.yes {
  background: rgba(96, 217, 177, 0.19);
  color: #277762;
}

.fit-icon.no {
  background: rgba(255, 177, 155, 0.18);
  color: #9c5c4c;
}

.fit-columns ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.fit-columns li {
  position: relative;
  padding-left: 19px;
}

.fit-columns li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c948f;
  content: "";
}

.ethical-note {
  margin: 0;
  padding: 23px 48px;
  border-top: 1px solid var(--border);
  background: #f6f7f3;
  color: #59696a;
  font-size: 0.82rem;
}

.ethical-note strong {
  color: var(--ink);
}

/* Process */
.section-process {
  background: #eaf0ea;
}

.section-process .section-heading {
  margin-bottom: 57px;
}

.process-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-row::before {
  position: absolute;
  top: 22px;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49, 123, 105, 0.35) 12%, rgba(49, 123, 105, 0.35) 88%, transparent);
  content: "";
}

.process-row li {
  position: relative;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(49, 123, 105, 0.3);
  border-radius: 50%;
  background: #eaf0ea;
  color: #317b69;
  font-size: 0.74rem;
  font-weight: 850;
}

.process-row h3 {
  font-size: 1.2rem;
}

.process-row p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* FAQ */
.section-faq {
  background: #f7f9f5;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 115px;
}

.faq-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.faq-heading > p:not(.eyebrow) {
  margin: 35px 0 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq-heading .text-link {
  font-size: 0.88rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 2px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 740;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(16, 35, 42, 0.2);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 660px;
  padding: 0 42px 25px 2px;
  color: var(--ink-soft);
}

/* Booking */
.section-booking {
  overflow: hidden;
  background: #f7f9f5;
}

.booking-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: center;
  overflow: hidden;
  padding: clamp(45px, 6vw, 78px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 12%, rgba(117, 191, 255, 0.13), transparent 30%),
    linear-gradient(145deg, #0b2030, #071521);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.booking-shell::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0.008), inset 0 0 0 200px rgba(255, 255, 255, 0.008);
  content: "";
}

.booking-copy,
.booking-card,
.booking-embed {
  position: relative;
  z-index: 1;
}

.booking-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.booking-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 33px 0 30px;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 3.2rem;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price small {
  padding-top: 7px;
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.price-line > span:last-child {
  padding-left: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  line-height: 1.45;
}

.booking-includes {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  list-style: none;
}

.booking-includes li {
  display: flex;
  gap: 10px;
}

.booking-includes span {
  color: var(--mint);
  font-weight: 800;
}

.booking-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.27);
}

.booking-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.calendar-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: #e5f5e9;
  color: #317b69;
}

.calendar-icon svg {
  width: 23px;
}

.booking-card-header > div:last-child {
  display: flex;
  flex-direction: column;
}

.booking-card-header span {
  color: #738284;
  font-size: 0.7rem;
}

.booking-card-header strong {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.booking-placeholder {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  min-height: 178px;
  padding: 25px 0;
}

.mini-calendar {
  padding: 15px 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8faf7;
}

.week-row,
.date-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  text-align: center;
}

.week-row {
  margin-bottom: 12px;
  color: #83908e;
  font-size: 0.55rem;
  font-weight: 760;
}

.date-row i {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e8ede8;
}

.date-row i.selected {
  background: var(--lime-deep);
  box-shadow: 0 0 0 4px rgba(157, 223, 73, 0.16);
}

.booking-placeholder p {
  margin: 0;
  color: #6a7a7c;
  font-size: 0.76rem;
  line-height: 1.55;
}

.booking-placeholder strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.button-booking {
  width: 100%;
  min-height: 57px;
  background: var(--night);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(7, 21, 33, 0.18);
}

.button-booking:hover {
  background: #102b3d;
  box-shadow: 0 15px 32px rgba(7, 21, 33, 0.24);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  color: #53666a;
  font-size: 0.8125rem;
  text-align: center;
}

.secure-note svg {
  width: 14px;
}

.booking-fallback {
  margin: 15px 0 0;
  color: #53666a;
  font-size: 0.8125rem;
  text-align: center;
}

.booking-fallback a {
  color: #317b69;
  font-weight: 750;
}

.booking-embed {
  grid-column: 1 / -1;
  min-height: 680px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
}

.booking-embed iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

/* Final note and footer */
.final-note {
  background: #f7f9f5;
}

.final-mark {
  width: 56px;
  margin: 0 auto 30px;
  color: #398774;
}

.final-note h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.4rem);
}

.final-note p {
  max-width: 700px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.site-footer {
  padding: 67px 0 26px;
  background: var(--night);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-bottom: 55px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links h2 {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.79rem;
  line-height: 1.6;
  text-align: left;
  text-decoration: none;
}

.footer-links button {
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}

/* Dialogs */
.legal-dialog {
  width: min(calc(100% - 32px), 650px);
  max-height: min(82vh, 720px);
  padding: 0;
  border: 0;
  border-radius: 23px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.legal-dialog::backdrop {
  background: rgba(3, 13, 20, 0.76);
  backdrop-filter: blur(5px);
}

/* Standalone legal pages */
.legal-page {
  min-height: 100vh;
  background: #f4f7f3;
}

.legal-page .site-header {
  position: static;
  background: var(--night);
}

.legal-page main {
  padding: 72px 0 96px;
}

.legal-document {
  width: min(calc(100% - 32px), 840px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(7, 21, 33, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 21, 33, 0.08);
}

.legal-document h1 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 7vw, 4.2rem);
}

.legal-document h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-document a {
  color: #1f705e;
}

.legal-document .legal-meta {
  margin-bottom: 32px;
  color: #657477;
  font-size: 0.84rem;
}

.legal-document .legal-callout {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--mint);
  border-radius: 0 14px 14px 0;
  background: #eef7f2;
}

.legal-back {
  display: inline-flex;
  margin-top: 40px;
  font-weight: 800;
  text-decoration: none;
}

.dialog-inner {
  position: relative;
  padding: 42px;
}

.dialog-inner h2 {
  font-size: 2.4rem;
}

.dialog-inner p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dialog-inner a {
  color: #317b69;
  font-weight: 700;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 37px;
  height: 37px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  place-items: center;
  background: #f4f6f2;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.3rem;
}

.placeholder-label {
  margin-top: 25px;
  padding: 13px 15px;
  border: 1px dashed #b98d48;
  border-radius: 9px;
  background: #fff8e9;
  color: #7c5b2a !important;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.mobile-cta {
  display: none;
}

/* Progressive reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
  }

  .focus-panel {
    padding: 22px;
  }

  .metric-strip > div {
    flex-direction: column;
    gap: 2px;
  }

  .method-layout {
    gap: 60px;
  }

  .footer-main {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: 0;
  }

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

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

  .hero-visual {
    width: min(100%, 560px);
    margin: 20px auto 0;
  }

  .metric-strip {
    margin-top: 75px;
  }

  .method-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .method-heading,
  .faq-heading {
    position: static;
  }

  .method-heading > p:not(.eyebrow) {
    max-width: 680px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading > p {
    max-width: 700px;
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 35px;
  }

  .process-row::before {
    display: none;
  }

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

  .booking-copy {
    max-width: 700px;
  }

  .booking-card {
    max-width: 540px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* Mobile navigation and layout */
@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

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

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .site-header,
  .site-header.scrolled {
    height: var(--header-height);
  }

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

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-product {
    font-size: 0.62rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 28px 85px;
    background: rgba(7, 21, 33, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav > a:not(.button) {
    display: block;
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.25rem;
  }

  .main-nav .button {
    margin-top: 28px;
    min-height: 54px;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 0;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-notes {
    gap: 9px 15px;
  }

  .focus-panel {
    padding: 19px;
    border-radius: 24px;
    transform: none;
  }

  .panel-topbar {
    margin-bottom: 24px;
  }

  .focus-card {
    padding: 20px;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 62px;
  }

  .metric-strip > div,
  .metric-strip > div:first-child {
    padding: 19px 12px;
  }

  .metric-strip > div:nth-child(2) {
    border-right: 0;
  }

  .metric-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .comparison-grid,
  .deliverables-grid,
  .fit-columns,
  .process-row {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .deliverable-card {
    padding: 29px;
  }

  .method-list li {
    grid-template-columns: 47px 1fr;
    gap: 15px;
    padding: 29px 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .split-heading {
    margin-bottom: 38px;
  }

  .deliverable-card {
    min-height: 0;
  }

  .fit-header {
    padding: 34px 29px 24px;
  }

  .fit-columns > div {
    padding: 30px 29px;
  }

  .fit-columns > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .ethical-note {
    padding: 20px 29px;
  }

  .process-row {
    gap: 34px;
  }

  .process-row li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .process-number {
    margin: 0;
  }

  .faq-layout {
    gap: 35px;
  }

  .booking-shell {
    padding: 34px 24px;
    border-radius: 25px;
  }

  .booking-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .booking-card {
    padding: 21px;
  }

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

  .mini-calendar {
    max-width: 220px;
  }

  .footer-main {
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .dialog-inner {
    padding: 39px 24px 28px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    min-height: 70px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 21, 33, 0.96);
    color: var(--white);
    box-shadow: 0 -10px 35px rgba(2, 12, 18, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-cta > span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .mobile-cta strong {
    font-size: 0.78rem;
  }

  .mobile-cta small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
  }

  .mobile-cta a {
    padding: 10px 17px;
    border-radius: 99px;
    background: var(--lime);
    color: var(--night);
    font-size: 0.76rem;
    font-weight: 850;
    text-decoration: none;
  }
}

@media (max-width: 430px) {
  .brand-product {
    display: none;
  }

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

  .input-cloud span:nth-child(3),
  .input-cloud span:nth-child(4) {
    display: none;
  }

  .metric-strip strong {
    font-size: 1rem;
  }

  .metric-strip span {
    font-size: 0.64rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 2.8rem;
  }
}

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

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

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

@media print {
  .site-header,
  .mobile-cta,
  .hero-actions,
  .booking-card,
  .ambient {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
    color: black;
  }

  .hero,
  .section-method,
  .booking-shell,
  .site-footer {
    background: white !important;
    color: black !important;
    box-shadow: none;
  }

  .section {
    padding: 35px 0;
  }
}
