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

/* ================================================================
   ANZALTEK GLOBAL — black with red signal bands
   ================================================================ */
.global-page {
  background: #f3f5f2;
}

.global-page .site-header {
  background: rgba(8, 8, 12, 0.82);
}

.global-page .site-header.scrolled {
  background: rgba(8, 8, 12, 0.96);
}

.global-page .button-primary {
  background: #f75465;
  color: #fff;
  box-shadow: 0 10px 32px rgba(247, 84, 101, 0.22);
}

.global-page .button-primary:hover {
  background: #ff6d7d;
  box-shadow: 0 14px 40px rgba(247, 84, 101, 0.3);
}

.global-page .brand-product {
  color: rgba(255, 255, 255, 0.57);
}

.global-hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 92px);
  padding-bottom: 0;
  background:
    radial-gradient(circle at 13% 22%, rgba(235, 44, 66, 0.17), transparent 28%),
    radial-gradient(circle at 84% 38%, rgba(255, 112, 126, 0.11), transparent 27%),
    linear-gradient(145deg, #07070a 0%, #101117 52%, #07070a 100%);
}

.global-hero::before {
  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: 68px 68px;
}

.global-hero::after {
  border-color: rgba(255, 86, 104, 0.09);
  box-shadow: inset 0 0 0 140px rgba(255, 255, 255, 0.006), inset 0 0 0 280px rgba(255, 67, 87, 0.012);
}

.global-red-stripe {
  position: absolute;
  z-index: 0;
  width: 54vw;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(247, 84, 101, 0.06) 8%, rgba(247, 84, 101, 0.78) 50%, rgba(247, 84, 101, 0.06) 92%, transparent);
  box-shadow: 0 0 35px rgba(247, 84, 101, 0.22);
  pointer-events: none;
  transform: rotate(-9deg);
}

.global-red-stripe-one {
  top: 22%;
  right: -12%;
}

.global-red-stripe-two {
  right: -17%;
  bottom: 22%;
  height: 2px;
  opacity: 0.56;
}

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

.global-hero .text-gradient {
  background: linear-gradient(112deg, #ff596b 3%, #ffd2d7 50%, #ffffff 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.global-hero .status-dot {
  background: #ff596b;
  box-shadow: 0 0 0 5px rgba(255, 89, 107, 0.1), 0 0 22px rgba(255, 89, 107, 0.36);
}

.mini-check {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid rgba(255, 109, 125, 0.38);
  border-radius: 50%;
  color: #ff7c8b;
  font-size: 0.6rem;
}

.global-map {
  position: relative;
  perspective: 1200px;
}

.global-map-glow {
  position: absolute;
  inset: 8% 6%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 84, 101, 0.65), rgba(48, 128, 255, 0.38));
  filter: blur(95px);
  opacity: 0.25;
}

.global-map-shell {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transform: rotateY(-3deg) rotateX(2deg);
}

.map-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.map-topline span {
  color: #ff6f7e;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.map-topline strong {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
}

.map-route {
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  gap: 14px;
  align-items: center;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.map-route:hover {
  transform: translateX(5px);
}

.map-route-personal:hover {
  border-color: rgba(195, 246, 110, 0.36);
  background: rgba(195, 246, 110, 0.06);
}

.map-route-enterprise:hover {
  border-color: rgba(64, 146, 255, 0.46);
  background: rgba(64, 146, 255, 0.07);
}

.route-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 850;
}

.map-route-personal .route-index {
  color: #c3f66e;
}

.map-route-enterprise .route-index {
  color: #6cb2ff;
}

.route-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.route-copy small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-copy strong {
  margin: 2px 0;
  font-size: 1.03rem;
  letter-spacing: -0.025em;
}

.route-copy em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.69rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.map-connector {
  display: grid;
  height: 80px;
  place-items: center;
}

.map-connector span {
  width: 1px;
  height: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.08), rgba(247, 84, 101, 0.56));
}

.map-connector span:last-child {
  background: linear-gradient(rgba(247, 84, 101, 0.56), rgba(255, 255, 255, 0.08));
}

.map-connector b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(247, 84, 101, 0.42);
  border-radius: 50%;
  color: #ff7382;
  font-size: 0.6rem;
  box-shadow: 0 0 24px rgba(247, 84, 101, 0.13);
}

.map-foot {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.41);
  font-size: 0.69rem;
  text-align: center;
}

.global-services {
  background:
    radial-gradient(circle at 11% 15%, rgba(247, 84, 101, 0.07), transparent 24%),
    #f3f5f2;
}

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

.service-path {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding: clamp(32px, 4vw, 52px);
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(6, 16, 24, 0.2);
}

.service-path-focus {
  background:
    radial-gradient(circle at 82% 16%, rgba(195, 246, 110, 0.14), transparent 28%),
    linear-gradient(145deg, #071521, #0a2230);
}

.service-path-sap {
  background:
    radial-gradient(circle at 76% 15%, rgba(50, 137, 255, 0.24), transparent 29%),
    linear-gradient(145deg, #050b14, #0b1c32);
}

.service-path-band {
  position: absolute;
  top: 88px;
  right: -100px;
  width: 430px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #318cff, transparent);
  transform: rotate(-13deg);
  box-shadow: 0 0 26px rgba(49, 140, 255, 0.38);
}

.service-path-number {
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-path-orbit {
  position: absolute;
  top: 72px;
  right: 48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(195, 246, 110, 0.2);
  border-radius: 50%;
}

.service-path-orbit::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(195, 246, 110, 0.36);
  border-radius: 50%;
  content: "";
}

.service-path-orbit b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c3f66e;
  box-shadow: 0 0 22px rgba(195, 246, 110, 0.7);
  transform: translate(-50%, -50%);
}

.service-path-signal {
  position: absolute;
  top: 87px;
  right: 49px;
  display: flex;
  gap: 7px;
  align-items: flex-end;
  height: 84px;
}

.service-path-signal i {
  width: 8px;
  border-radius: 99px;
  background: linear-gradient(#56adff, rgba(49, 140, 255, 0.13));
}

.service-path-signal i:nth-child(1) { height: 28%; }
.service-path-signal i:nth-child(2) { height: 65%; }
.service-path-signal i:nth-child(3) { height: 44%; }
.service-path-signal i:nth-child(4) { height: 92%; }
.service-path-signal i:nth-child(5) { height: 72%; }

.service-path-kicker {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-path h3 {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.service-path > p:not(.service-path-kicker):not(.service-path-note) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.service-path ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.service-path li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
}

.service-path-sap .button-sap {
  background: #328cff;
  color: #fff;
}

.global-page .service-path-focus .button-primary {
  background: var(--lime);
  color: #0a1a1e;
  box-shadow: 0 10px 32px rgba(157, 223, 73, 0.2);
}

.global-page .service-path-focus .button-primary:hover {
  background: #d2ff86;
}

.service-path-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.69rem;
  line-height: 1.55;
}

.global-principle {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(247, 84, 101, 0.13), transparent 28%),
    #090a0e;
  color: #fff;
}

.global-principle::after {
  position: absolute;
  top: 28%;
  right: -8%;
  width: 44%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(247, 84, 101, 0.75), transparent);
  content: "";
  transform: rotate(-10deg);
}

.principle-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.principle-heading h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
}

.principle-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.57);
  font-size: 1.05rem;
}

.principle-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.principle-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.principle-steps li > span {
  color: #ff6979;
  font-size: 0.7rem;
  font-weight: 850;
}

.principle-steps strong {
  font-size: 1.1rem;
}

.principle-steps p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

.global-contact {
  background: #f6f8f5;
}

.global-contact > .container > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
}

/* ================================================================
   SAP + IA — black with blue signal bands
   ================================================================ */
.sap-page {
  --sap-blue: #2f8cff;
  --sap-blue-light: #78c3ff;
  --sap-blue-soft: #dcefff;
  --sap-night: #050b14;
  --sap-night-soft: #0a1728;
  background: #f3f6f9;
}

.sap-header,
.sap-header.scrolled {
  background: rgba(5, 11, 20, 0.94);
}

.sap-page .button-sap {
  background: linear-gradient(135deg, #2f8cff, #1674e8);
  color: #fff;
  box-shadow: 0 10px 34px rgba(47, 140, 255, 0.24);
}

.sap-page .button-sap:hover {
  background: linear-gradient(135deg, #4a9eff, #2586f5);
  box-shadow: 0 14px 42px rgba(47, 140, 255, 0.32);
}

.button-sap-outline {
  border-color: rgba(47, 140, 255, 0.48);
  background: rgba(47, 140, 255, 0.08);
  color: #dcefff;
}

.button-sap-outline:hover {
  border-color: rgba(117, 193, 255, 0.78);
  background: rgba(47, 140, 255, 0.14);
}

.sap-hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 96px);
  padding-bottom: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 140, 255, 0.2), transparent 30%),
    radial-gradient(circle at 87% 34%, rgba(93, 186, 255, 0.14), transparent 27%),
    linear-gradient(145deg, #050b14 0%, #091626 55%, #050b14 100%);
}

.sap-hero::before {
  background-image:
    linear-gradient(rgba(117, 190, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 190, 255, 0.027) 1px, transparent 1px);
  background-size: 66px 66px;
}

.sap-hero::after {
  border-color: rgba(47, 140, 255, 0.09);
  box-shadow: inset 0 0 0 140px rgba(47, 140, 255, 0.009), inset 0 0 0 280px rgba(47, 140, 255, 0.009);
}

.sap-blue-stripe {
  position: absolute;
  z-index: 0;
  right: -12%;
  width: 58vw;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.06) 10%, rgba(47, 140, 255, 0.82) 50%, rgba(47, 140, 255, 0.06) 90%, transparent);
  box-shadow: 0 0 38px rgba(47, 140, 255, 0.3);
  pointer-events: none;
  transform: rotate(-10deg);
}

.sap-blue-stripe-one {
  top: 22%;
}

.sap-blue-stripe-two {
  right: -17%;
  bottom: 20%;
  height: 2px;
  opacity: 0.62;
}

.sap-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(54px, 7vw, 95px);
  align-items: center;
}

.sap-gradient {
  background: linear-gradient(115deg, #59a9ff 4%, #dcefff 52%, #75c5ff 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sap-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sap-blue);
  box-shadow: 0 0 0 5px rgba(47, 140, 255, 0.12), 0 0 22px rgba(47, 140, 255, 0.48);
}

.sap-check {
  color: var(--sap-blue-light);
}

.sap-console-wrap {
  position: relative;
  perspective: 1200px;
}

.sap-console-glow {
  position: absolute;
  inset: 7% 5%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1684f7, #80ceff);
  filter: blur(100px);
  opacity: 0.2;
}

.sap-console {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(117, 193, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(70, 150, 238, 0.12), rgba(255, 255, 255, 0.026));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transform: rotateY(-3deg) rotateX(2deg);
}

.sap-console::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(47, 140, 255, 0.1);
  content: "";
}

.sap-console-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.sap-console-top > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sap-console-top div > span {
  color: var(--sap-blue-light);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.sap-console-top strong {
  color: #fff;
  font-size: 1.08rem;
}

.sap-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(47, 140, 255, 0.3);
  border-radius: 99px;
  background: rgba(47, 140, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.65rem;
  font-weight: 720;
}

.sap-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sap-blue-light);
  box-shadow: 0 0 12px var(--sap-blue);
}

.sap-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.sap-signal-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.028);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.67rem;
}

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

.sap-path-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(rgba(255, 255, 255, 0.07), rgba(47, 140, 255, 0.65));
}

.sap-path-line.active {
  flex: 1;
  background: linear-gradient(rgba(117, 193, 255, 0.9), rgba(47, 140, 255, 0.08));
}

.sap-decision-path b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(117, 193, 255, 0.5);
  border-radius: 50%;
  color: var(--sap-blue-light);
  font-size: 0.61rem;
  box-shadow: 0 0 28px rgba(47, 140, 255, 0.2);
}

.sap-output-card {
  padding: 24px;
  border: 1px solid rgba(47, 140, 255, 0.3);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(47, 140, 255, 0.14), rgba(255, 255, 255, 0.04));
}

.sap-output-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.sap-output-head span {
  color: var(--sap-blue-light);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.sap-output-head em {
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.64rem;
  font-style: normal;
}

.sap-output-card h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.42rem;
}

.sap-output-card > p {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.77rem;
  line-height: 1.55;
}

.sap-output-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sap-output-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.69rem;
}

.sap-output-card li i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.sap-output-card li.active {
  color: rgba(255, 255, 255, 0.78);
}

.sap-output-card li.active i {
  border-color: var(--sap-blue-light);
  background: var(--sap-blue-light);
  box-shadow: 0 0 10px rgba(47, 140, 255, 0.55);
}

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

.sap-progress span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1674e8, #75c5ff);
}

.sap-console-foot {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  text-align: center;
}

.sap-console-foot span {
  color: var(--sap-blue-light);
}

.sap-metrics strong {
  color: #fff;
}

.sap-ink-accent {
  color: #237ed8;
}

.sap-problem {
  background: #f3f6f9;
}

.sap-problem .section-intro {
  color: #5a6877;
}

.sap-before-card {
  border-color: rgba(8, 31, 55, 0.11);
}

.sap-after-card {
  border-color: rgba(47, 140, 255, 0.25);
  background: linear-gradient(145deg, rgba(47, 140, 255, 0.1), rgba(255, 255, 255, 0.8));
}

.sap-after-card .comparison-label {
  color: #1169bd;
}

.sap-method {
  background:
    radial-gradient(circle at 78% 22%, rgba(47, 140, 255, 0.15), transparent 29%),
    #050b14;
  color: #fff;
}

.sap-method .method-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.56);
}

.sap-text-link {
  color: #5eb1ff;
}

.sap-method-list {
  border-top-color: rgba(117, 193, 255, 0.14);
}

.sap-method-list li {
  border-bottom-color: rgba(117, 193, 255, 0.14);
}

.sap-method-list .step-number {
  border-color: rgba(47, 140, 255, 0.34);
  background: rgba(47, 140, 255, 0.08);
  color: var(--sap-blue-light);
}

.sap-method-list .step-content p {
  color: rgba(255, 255, 255, 0.48);
}

.sap-method-list .step-tag {
  border-color: rgba(47, 140, 255, 0.22);
  background: rgba(47, 140, 255, 0.08);
  color: rgba(117, 193, 255, 0.88);
}

.sap-capabilities {
  background: #f6f8fb;
}

.sap-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sap-capability-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(10, 36, 61, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(10, 35, 60, 0.06);
}

.sap-capability-card > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(47, 140, 255, 0.1);
  color: #1674d4;
  font-size: 0.67rem;
  font-weight: 850;
}

.sap-capability-card h3 {
  font-size: 1.28rem;
}

.sap-capability-card p {
  color: #607080;
  font-size: 0.87rem;
}

.sap-capability-card em {
  color: #237ed8;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 780;
}

.sap-processes {
  display: grid;
  grid-template-columns: 0.32fr 1.68fr;
  gap: 34px;
  align-items: start;
  margin-top: 38px;
  padding: 28px 30px;
  border: 1px solid rgba(47, 140, 255, 0.15);
  border-radius: 22px;
  background: rgba(47, 140, 255, 0.05);
}

.sap-processes > p {
  margin: 0;
  color: #1a5fa1;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sap-processes > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sap-processes span {
  padding: 7px 10px;
  border: 1px solid rgba(47, 140, 255, 0.18);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  color: #4d6275;
  font-size: 0.69rem;
}

.sap-ownership {
  background: #eaf1f8;
}

.ownership-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 0%, rgba(47, 140, 255, 0.25), transparent 35%),
    #050b14;
  color: #fff;
  box-shadow: 0 35px 90px rgba(5, 17, 31, 0.22);
}

.ownership-shell::after {
  position: absolute;
  top: 90px;
  right: -110px;
  width: 500px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(47, 140, 255, 0.78), transparent);
  content: "";
  transform: rotate(-12deg);
}

.ownership-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 52px;
}

.ownership-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
}

.ownership-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.58);
}

.ownership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(117, 193, 255, 0.17);
  border-radius: 20px;
  background: rgba(117, 193, 255, 0.17);
}

.ownership-grid > div {
  padding: 25px;
  background: rgba(5, 11, 20, 0.9);
}

.ownership-grid span {
  color: var(--sap-blue-light);
  font-size: 0.64rem;
  font-weight: 850;
}

.ownership-grid strong {
  display: block;
  margin: 18px 0 7px;
  font-size: 0.95rem;
}

.ownership-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.sap-modes {
  background: #f6f8fb;
}

.sap-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.sap-mode-card {
  display: flex;
  min-height: 650px;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 28px;
  flex-direction: column;
}

.sap-mode-initial {
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 140, 255, 0.22), transparent 30%),
    #06111f;
  color: #fff;
}

.sap-mode-enterprise {
  border: 1px solid rgba(15, 44, 70, 0.11);
  background: #fff;
  color: #10232a;
  box-shadow: 0 24px 70px rgba(10, 36, 60, 0.08);
}

.mode-label {
  margin-bottom: 24px;
  color: #5caeff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sap-mode-card h3 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.sap-mode-card > p:not(.mode-label):not(.enterprise-note) {
  color: #617181;
}

.sap-mode-initial > p:not(.mode-label) {
  color: rgba(255, 255, 255, 0.56);
}

.mode-price {
  margin: 14px 0 22px;
  color: #fff;
  font-size: 3.8rem;
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.mode-price small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.sap-mode-card ul {
  display: grid;
  gap: 11px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.sap-mode-card li {
  position: relative;
  padding-left: 20px;
  color: #586b7d;
  font-size: 0.87rem;
}

.sap-mode-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sap-blue);
  content: "";
  box-shadow: 0 0 12px rgba(47, 140, 255, 0.36);
}

.sap-mode-initial li {
  color: rgba(255, 255, 255, 0.66);
}

.scope-boundary {
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(117, 193, 255, 0.2);
  border-radius: 15px;
  background: rgba(47, 140, 255, 0.07);
}

.scope-boundary strong {
  color: var(--sap-blue-light);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-boundary p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.sap-mode-card .button {
  margin-top: auto;
}

.enterprise-note {
  margin: 10px 0 24px;
  padding: 17px 19px;
  border-left: 3px solid var(--sap-blue);
  border-radius: 0 13px 13px 0;
  background: rgba(47, 140, 255, 0.07);
  color: #476075;
  font-size: 0.82rem;
}

.sap-mode-enterprise .button-sap-outline {
  color: #116fca;
}

.sap-mode-enterprise > small {
  margin-top: 13px;
  color: #748290;
  font-size: 0.68rem;
}

.sap-process {
  background: #edf3f8;
}

.sap-process .process-number {
  border-color: rgba(47, 140, 255, 0.28);
  background: rgba(47, 140, 255, 0.09);
  color: #1b78d2;
}

.sap-faq {
  background: #f8fafc;
}

.sap-faq .faq-list details {
  border-color: rgba(15, 54, 87, 0.12);
}

.sap-booking {
  background: #050b14;
}

.sap-booking-shell {
  border-color: rgba(117, 193, 255, 0.18);
  background:
    radial-gradient(circle at 10% 18%, rgba(47, 140, 255, 0.24), transparent 31%),
    radial-gradient(circle at 92% 78%, rgba(47, 140, 255, 0.14), transparent 28%),
    linear-gradient(145deg, #071221, #050b14);
}

.sap-booking-shell::before {
  background-image:
    linear-gradient(rgba(117, 193, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 193, 255, 0.025) 1px, transparent 1px);
}

.sap-booking-card {
  border-color: rgba(47, 140, 255, 0.2);
}

.sap-calendar-icon {
  display: grid;
  place-items: center;
  background: rgba(47, 140, 255, 0.12);
  color: var(--sap-blue-light);
}

.sap-calendar-icon span {
  font-size: 0.72rem;
  font-weight: 900;
}

.sap-slot-preview {
  display: grid;
  min-width: 145px;
  padding: 15px;
  border: 1px solid rgba(47, 140, 255, 0.16);
  border-radius: 13px;
  background: rgba(47, 140, 255, 0.06);
}

.sap-slot-preview span {
  color: #5caeff;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.sap-slot-preview strong {
  color: #fff;
  font-size: 0.72rem;
}

.sap-slot-preview i {
  height: 1px;
  margin: 11px 0;
  background: rgba(255, 255, 255, 0.12);
}

.sap-booking-button {
  background: linear-gradient(135deg, #2f8cff, #1674e8);
  color: #fff;
}

.sap-booking-button:hover {
  background: linear-gradient(135deg, #4d9fff, #2586f5);
}

.sap-secure-note {
  color: #507399;
}

.sap-final {
  background: #f4f7fa;
}

.sap-final-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
}

.sap-final-mark span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sap-blue));
}

.sap-final-mark span:last-child {
  background: linear-gradient(90deg, var(--sap-blue), transparent);
}

.sap-final-mark b {
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--sap-blue);
  box-shadow: 0 0 0 1px var(--sap-blue), 0 0 20px rgba(47, 140, 255, 0.46);
}

.sap-final p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: #607080;
}

.sap-footer {
  background: #050b14;
}

.sap-footer .footer-bottom p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

@media (max-width: 1050px) {
  .global-hero-grid,
  .sap-hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
  }

  .global-map-shell,
  .sap-console {
    padding: 22px;
  }

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

@media (max-width: 900px) {
  .global-hero-grid,
  .sap-hero-grid,
  .principle-layout {
    grid-template-columns: 1fr;
  }

  .global-map,
  .sap-console-wrap {
    width: min(100%, 590px);
    margin: 22px auto 0;
  }

  .service-path-grid,
  .sap-mode-grid {
    grid-template-columns: 1fr;
  }

  .service-path {
    min-height: 0;
  }

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

  .sap-processes {
    grid-template-columns: 1fr;
  }

  .sap-mode-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .global-page {
    padding-bottom: 0;
  }

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

  .global-map-shell,
  .sap-console {
    padding: 19px;
    border-radius: 24px;
    transform: none;
  }

  .map-route {
    grid-template-columns: 36px 1fr 30px;
    gap: 10px;
    padding: 17px;
  }

  .route-index {
    width: 34px;
    height: 34px;
  }

  .route-copy em {
    white-space: normal;
  }

  .global-red-stripe,
  .sap-blue-stripe {
    width: 88vw;
    opacity: 0.55;
  }

  .service-path {
    padding: 32px 27px;
    border-radius: 24px;
  }

  .service-path-number {
    margin-bottom: 90px;
  }

  .service-path-orbit,
  .service-path-signal {
    top: 66px;
    right: 30px;
  }

  .service-path h3 {
    font-size: 2.35rem;
  }

  .principle-layout {
    gap: 42px;
  }

  .sap-capability-grid,
  .ownership-grid {
    grid-template-columns: 1fr;
  }

  .sap-capability-card {
    min-height: 0;
  }

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

  .ownership-grid {
    gap: 1px;
  }

  .sap-mode-card {
    padding: 34px 27px;
    border-radius: 24px;
  }

  .sap-slot-preview {
    min-width: 0;
  }

  .sap-footer .footer-bottom p:last-child {
    text-align: left;
  }

  .sap-mobile-cta a {
    background: var(--sap-blue);
    color: #fff;
  }
}

@media (max-width: 430px) {
  .map-topline {
    flex-direction: column;
    gap: 7px;
  }

  .map-route {
    grid-template-columns: 34px 1fr;
  }

  .route-arrow {
    display: none;
  }

  .sap-signal-row span:nth-child(3),
  .sap-signal-row span:nth-child(4) {
    display: none;
  }

  .sap-console-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .sap-output-head {
    flex-direction: column;
    gap: 4px;
  }
}

@media print {
  .global-red-stripe,
  .sap-blue-stripe,
  .global-map,
  .sap-console-wrap,
  .sap-mobile-cta {
    display: none !important;
  }
}
