/* Josefin Sans is self-hosted under the SIL Open Font License in assets/fonts. */
@font-face {
  font-family: "Josefin Sans";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/josefin-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Josefin Sans";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/josefin-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Josefin Sans";
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/josefin-sans-italic-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Josefin Sans";
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/josefin-sans-italic-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;

  /* Core colour system */
  --color-primary: #bee9e8;
  --color-primary-deep: #7dcfcd;
  --color-bg: #f9f8f4;
  --color-surface: #ffffff;
  --color-surface-alt: #eef7f7;
  --color-surface-raised: #f4fbfa;
  --color-surface-popover: #ffffff;
  --color-surface-overlay: #ffffff;
  --color-accent: #1b7b78;
  --color-accent-strong: #125f5d;
  --color-text-primary: #111111;
  --color-text-body: #333333;
  --color-text-muted: #777777;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.16);
  --color-error: #cc3333;
  --color-success: #1b7b78;
  --color-warning: #a66300;
  --color-on-accent: #f9f8f4;
  --color-anchor-bg: #102f2e;
  --color-anchor-text: #fdf0d5;
  --color-overlay: rgba(10, 10, 10, 0.62);
  --color-shadow: rgba(18, 95, 93, 0.1);
  --color-shadow-strong: rgba(18, 95, 93, 0.18);
  --color-glow: rgba(125, 207, 205, 0.28);
  --color-header: rgba(249, 248, 244, 0.84);
  --color-noise: rgba(17, 17, 17, 0.035);
  --color-print-bg: #ffffff;
  --color-print-text: #111111;

  /* Surface elevations */
  --surface-level-0: var(--color-bg);
  --surface-level-1: var(--color-surface);
  --surface-level-2: var(--color-surface-raised);
  --surface-level-3: var(--color-surface-popover);
  --surface-level-4: var(--color-surface-overlay);

  /* 8-point spacing system */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --section-space: clamp(var(--space-6), 8vw, var(--space-8));
  --container-padding: clamp(1.25rem, 5vw, 3rem);

  /* Type scale */
  --text-xs: clamp(0.75rem, 1vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(1rem, 1.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 2vw, 1.375rem);
  --text-xl: clamp(1.375rem, 2.5vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 3vw, 2.25rem);
  --text-3xl: clamp(2.25rem, 4.5vw, 3.25rem);
  --text-4xl: clamp(3rem, 6vw, 5rem);
  --text-hero: clamp(3.5rem, 9vw, 7.5rem);

  /* Geometry and elevation */
  --radius-xs: 0.375rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --radius-round: 50%;
  --border-subtle: 1px solid var(--color-border);
  --border-strong: 1px solid var(--color-border-strong);
  --shadow-sm: 0 0.75rem 2rem var(--color-shadow);
  --shadow-md: 0 1.25rem 3rem var(--color-shadow);
  --shadow-lg: 0 2rem 5rem var(--color-shadow-strong);
  --glow-active: 0 0 1.25rem var(--color-glow);

  /* Motion */
  --duration-fast: 150ms;
  --duration-base: 220ms;
  --duration-slow: 350ms;
  --duration-reveal: 650ms;
  --ease-standard: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1.15);
  --transition-fast: var(--duration-fast) var(--ease-standard);
  --transition-base: var(--duration-base) var(--ease-standard);

  /* Layout and layering */
  --container: 85rem;
  --content-reading: 68ch;
  --header-height: 5.5rem;
  --z-base: 1;
  --z-sticky: 100;
  --z-header: 1000;
  --z-drawer: 1100;
  --z-popover: 1200;
  --z-modal: 1300;
  --z-skip: 2000;
  --font: "Josefin Sans", "Segoe UI", sans-serif;

  /* Compatibility aliases for established components */
  --bg: var(--color-bg);
  --surface: var(--color-surface);
  --surface-elevated: var(--color-surface-raised);
  --text: var(--color-text-primary);
  --text-muted: var(--color-text-body);
  --brand: var(--color-accent);
  --brand-secondary: var(--color-accent-strong);
  --accent: var(--color-primary-deep);
  --border: var(--color-border);
  --soft: var(--color-surface-alt);
  --success: var(--color-success);
  --warning: var(--color-warning);
  --error: var(--color-error);
  --gradient: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-deep) 58%,
    var(--color-accent) 100%
  );
  --step--1: var(--text-xs);
  --step-0: var(--text-base);
  --step-1: var(--text-lg);
  --step-2: var(--text-xl);
  --step-3: var(--text-3xl);
  --step-4: var(--text-4xl);
}

[data-theme="dark"] {
  color-scheme: dark;
  --color-primary: #fdf0d5;
  --color-primary-deep: #f0d9a8;
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-alt: #1c1c1c;
  --color-surface-raised: #1c1c1c;
  --color-surface-popover: #242424;
  --color-surface-overlay: #2a2a2a;
  --color-accent: #fdf0d5;
  --color-accent-strong: #f0d9a8;
  --color-text-primary: #fdf0d5;
  --color-text-body: #d4cfc6;
  --color-text-muted: #888880;
  --color-border: rgba(253, 240, 213, 0.1);
  --color-border-strong: rgba(253, 240, 213, 0.2);
  --color-error: #e05c5c;
  --color-success: #fdf0d5;
  --color-warning: #e8b95f;
  --color-on-accent: #0a0a0a;
  --color-anchor-bg: #fdf0d5;
  --color-anchor-text: #0a0a0a;
  --color-overlay: rgba(0, 0, 0, 0.78);
  --color-shadow: rgba(0, 0, 0, 0.08);
  --color-shadow-strong: rgba(0, 0, 0, 0.14);
  --color-glow: rgba(253, 240, 213, 0.18);
  --color-header: rgba(20, 20, 20, 0.84);
  --color-noise: rgba(253, 240, 213, 0.025);
  --surface-level-0: #0a0a0a;
  --surface-level-1: #141414;
  --surface-level-2: #1c1c1c;
  --surface-level-3: #242424;
  --surface-level-4: #2a2a2a;
  --shadow-sm: 0 0 0 1px var(--color-border);
  --shadow-md: 0 0 0 1px var(--color-border);
  --shadow-lg: 0 0 0 1px var(--color-border-strong);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

a {
  color: var(--brand);
  text-underline-offset: 0.22em;
}
a:hover {
  color: var(--brand-secondary);
}

:focus-visible {
  outline: none;
  outline-offset: 3px;
}

::selection {
  background: var(--brand);
  color: var(--color-on-accent);
}

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

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-2);
}
h4 {
  font-size: var(--step-1);
}

p,
li {
  color: var(--text-muted);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}
.container--narrow {
  width: min(calc(100% - 2rem), 54rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(4rem, 7vw, 7.5rem);
}
.section--compact {
  padding-block: clamp(3rem, 5vw, 5rem);
}
.section--soft {
  background: var(--soft);
}
.section--surface {
  background: var(--surface);
}
.section--bordered {
  border-block: 1px solid var(--border);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 2px;
  background: var(--gradient);
  content: "";
}

.section-heading {
  max-width: 50rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-heading h2 {
  margin-bottom: 1rem;
}
.section-heading p {
  max-width: 46rem;
  margin-bottom: 0;
  font-size: var(--step-1);
}
.section-heading--center {
  margin-inline: auto;
  text-align: center;
}
.section-heading--center p {
  margin-inline: auto;
}

.gradient-text {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: var(--shadow-sm);
  color: var(--color-on-accent);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.button:hover {
  color: var(--color-on-accent);
  filter: saturate(1.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.button--secondary {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: none;
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.button--ghost {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--brand);
}
.button--ghost:hover {
  background: var(--soft);
  color: var(--brand-secondary);
  box-shadow: none;
}
.button--small {
  min-height: 2.55rem;
  padding: 0.58rem 0.9rem;
  font-size: var(--step--1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}
.text-link:hover::after {
  transform: translateX(0.25rem);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.1rem;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 4.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  display: grid;
  width: 2.4rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--gradient);
  box-shadow: var(--shadow-sm);
  color: var(--color-on-accent);
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.1rem;
  align-items: center;
  list-style: none;
}
.nav-list a {
  display: inline-flex;
  padding: 0.72rem 0.62rem;
  border-radius: 0.65rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--soft);
  color: var(--brand);
}

.header-actions {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}
.theme-select {
  min-height: 2.55rem;
  max-width: 7.2rem;
  padding: 0.5rem 1.85rem 0.5rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background-color: var(--surface);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.theme-control {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  z-index: 999;
  inset: var(--header-height) 0 0;
  display: none;
  overflow-y: auto;
  padding: 1rem 1rem 2rem;
  background: var(--bg);
}

.mobile-drawer[aria-hidden="false"] {
  display: block;
}
.mobile-nav {
  display: grid;
  gap: 0.35rem;
}
.mobile-nav a {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--surface);
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}
.mobile-nav a[aria-current="page"] {
  border-color: var(--brand);
  color: var(--brand);
}
.mobile-drawer__actions {
  display: grid;
  margin-top: 1rem;
  gap: 0.75rem;
}
.mobile-contact {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--soft);
}
.mobile-contact p {
  margin-bottom: 0.45rem;
  font-size: var(--step--1);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.hero::before {
  position: absolute;
  z-index: -2;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--brand) 19%, transparent),
    transparent 68%
  );
  content: "";
  inset: -16rem -10rem auto auto;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(22rem, 0.97fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.hero-copy h1,
.hero-copy h2 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
}
.hero-copy h2 {
  font-size: var(--step-4);
}
.hero-copy > p {
  max-width: 42rem;
  margin-bottom: 1.65rem;
  font-size: var(--step-1);
}
.hero-trust {
  display: flex;
  margin-top: 1.4rem;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: var(--step--1);
}
.hero-trust::before {
  color: var(--success);
  content: "●";
}

.system-visual {
  position: relative;
  min-height: 30rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface) 88%, transparent),
    var(--soft)
  );
  box-shadow: var(--shadow-lg);
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 9.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 45%, var(--border));
  border-radius: 50%;
  background: var(--surface);
  box-shadow:
    0 0 0 1.2rem color-mix(in srgb, var(--brand) 5%, transparent),
    var(--shadow-sm);
  color: var(--text);
  font-weight: 850;
  text-align: center;
  transform: translate(-50%, -50%);
}

.system-node {
  position: absolute;
  display: flex;
  min-width: 7rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 750;
}

.system-node::before {
  width: 0.62rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gradient);
  content: "";
}
.system-node:nth-child(2) {
  top: 9%;
  left: 8%;
}
.system-node:nth-child(3) {
  top: 10%;
  right: 7%;
}
.system-node:nth-child(4) {
  top: 43%;
  right: 3%;
}
.system-node:nth-child(5) {
  right: 9%;
  bottom: 8%;
}
.system-node:nth-child(6) {
  bottom: 9%;
  left: 8%;
}
.system-node:nth-child(7) {
  top: 43%;
  left: 3%;
}

.hero--second {
  background: var(--soft);
}
.capability-list {
  display: grid;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
}
.capability-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: var(--step--1);
}
.capability-list li::before {
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}
.layer-visual {
  display: grid;
  min-height: 30rem;
  padding: 1.25rem;
  grid-template: repeat(5, 1fr) / 1fr;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.layer-card {
  display: grid;
  padding: 1rem 1.2rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--soft) 62%, var(--surface));
}
.layer-card strong {
  color: var(--text);
}
.layer-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.layer-index {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--gradient);
  color: var(--color-on-accent);
  font-size: 0.8rem;
  font-weight: 850;
}

.metrics-ribbon {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.metric {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.metric:last-child {
  border-right: 0;
}
.metric strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1;
}
.metric span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.feature-panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.fact {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--soft);
}
.fact strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}
.fact span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.learn-more-band {
  padding-block: clamp(2.2rem, 5vw, 4rem);
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.band-grid h2 {
  margin-bottom: 0.6rem;
  font-size: var(--step-2);
}
.band-grid p {
  max-width: 48rem;
  margin-bottom: 0;
}

.tagline-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 2rem;
  background: var(--gradient);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.tagline-panel::after {
  position: absolute;
  width: 20rem;
  aspect-ratio: 1;
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 25%, transparent);
  border-radius: 50%;
  content: "";
  inset: -10rem -5rem auto auto;
}
.tagline-panel h2,
.tagline-panel p {
  position: relative;
  z-index: 1;
  color: var(--color-anchor-text);
}
.tagline-panel h2 {
  max-width: 24ch;
  margin-inline: auto;
}
.tagline-panel p {
  max-width: 50rem;
  margin: 0 auto;
  opacity: 0.9;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card,
.reason-card,
.article-card,
.story-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}
.service-card:hover,
.reason-card:hover,
.article-card:hover {
  border-color: color-mix(in srgb, var(--brand) 48%, var(--border));
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-mark {
  display: grid;
  width: 3.2rem;
  aspect-ratio: 1;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--gradient);
  color: var(--color-on-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.service-card p {
  margin-bottom: 1rem;
}
.service-card .benefit {
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: var(--step--1);
  font-weight: 650;
}
.service-card .text-link {
  margin-top: auto;
}
.service-card--wide {
  grid-column: span 2;
}
.reason-card {
  box-shadow: none;
}
.reason-number {
  margin-bottom: 1.4rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.reason-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}
.reason-card p {
  margin-bottom: 0;
  font-size: var(--step--1);
}

.pricing-toolbar {
  display: flex;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.pricing-controls__group {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.segmented-control {
  display: inline-flex;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}
.segmented-control button {
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 760;
}
.segmented-control button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.price-card {
  position: relative;
  display: flex;
  padding: 1.35rem;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.price-card--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--color-on-accent);
  font-size: 0.66rem;
  font-weight: 850;
}
.price-card h3 {
  margin-bottom: 0.35rem;
}
.price {
  margin: 0.8rem 0 0.25rem;
  color: var(--text);
  font-size: 1.85rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.price-period {
  min-height: 2.5em;
  font-size: 0.75rem;
}
.price-card ul {
  margin: 1rem 0 1.4rem;
  padding-left: 1.2rem;
}
.price-card li {
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
}
.price-card .button {
  margin-top: auto;
}
.plan-suitable {
  min-height: 5.5rem;
}
.plan-inclusions,
.plan-examples {
  margin-bottom: 1rem;
}
.pricing-disclaimer {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--soft);
}
.pricing-disclaimer p:last-child {
  margin-bottom: 0;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.72fr);
  gap: 1.25rem;
  align-items: start;
}
.calculator-form,
.estimate-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.calculator-form {
  padding: clamp(1rem, 3vw, 2rem);
}
.calculator-step {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.calculator-step:first-of-type {
  padding-top: 0;
}
.calculator-step:last-of-type {
  border-bottom: 0;
}
.calculator-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.estimate-panel {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  padding: 1.35rem;
}
.calculator-intro {
  margin-bottom: 1.5rem;
}
.service-toggle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.service-toggle {
  display: flex;
  padding: 0.85rem;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--soft);
  cursor: pointer;
}
.service-toggle:has(input:checked) {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 9%, var(--surface));
}
.service-toggle input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--brand);
}
.service-toggle__text strong {
  display: block;
  color: var(--text);
  font-size: 0.82rem;
}
.service-toggle__text small {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
}
.service-config {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--bg);
}
.service-config[hidden] {
  display: none;
}
.service-config summary {
  padding: 1rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}
.service-config summary span {
  display: block;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
}
.service-config__body {
  display: grid;
  padding: 0 1rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.field {
  display: grid;
  gap: 0.35rem;
}
.field--full {
  grid-column: 1 / -1;
}
.field label,
.field legend {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 750;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--surface);
  color: var(--text);
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field small {
  color: var(--text-muted);
  font-size: 0.7rem;
}
.field-error {
  min-height: 1.2em;
  color: var(--error);
  font-size: 0.7rem;
}
.checkbox-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.checkbox-row input {
  width: 1.1rem;
  min-height: auto;
  margin-top: 0.25rem;
  accent-color: var(--brand);
}
.check-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.conditional-fields {
  display: contents;
}
.service-config__note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: var(--soft);
  font-size: 0.72rem;
}
.calculator-actions {
  display: flex;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.calculator-actions-status {
  min-height: 1.4rem;
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.estimate-panel h3 {
  font-size: 1.25rem;
}
.estimate-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.estimate-empty {
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: 0.8rem;
  text-align: center;
}
.estimate-lines {
  display: grid;
  gap: 0.65rem;
}
.estimate-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.estimate-line strong {
  color: var(--text);
  text-align: right;
}
.estimate-line--total {
  margin-top: 0.55rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
}
.estimate-line--grand strong {
  color: var(--brand);
  font-size: 1.35rem;
}
.estimate-service {
  margin-bottom: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg);
}
.estimate-service summary {
  padding: 0.75rem;
  color: var(--text);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}
.estimate-service__body {
  padding: 0 0.75rem 0.75rem;
}
.estimate-service__details {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
}
.estimate-service__details li {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
}
.estimate-review,
.estimate-tax-note,
.estimate-outlay {
  font-size: 0.7rem;
}
.coupon-row {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.coupon-row input {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--bg);
  color: var(--text);
}
.coupon-message {
  min-height: 1.4rem;
  margin-top: 0.35rem;
  font-size: 0.72rem;
}
.calculator-disclaimer {
  margin-top: 1rem;
  font-size: 0.7rem;
}
.estimate-mobile-button {
  display: none;
}
.calculator-explanation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pricing-notice {
  margin-top: 1.25rem;
}

.map-board {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at 50% 50%,
      color-mix(in srgb, var(--brand) 10%, transparent),
      transparent 45%
    ),
    var(--surface);
  box-shadow: var(--shadow-sm);
}
.map-board::before,
.map-board::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}
.map-board::before {
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 8% 16%;
  opacity: 0.38;
}
.map-board::after {
  inset: 12% 8%;
  border: 1px dashed color-mix(in srgb, var(--brand) 35%, var(--border));
  border-radius: 50%;
}
.map-region {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 6.5rem;
  min-height: 3.2rem;
  padding: 0.6rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}
.map-region::before {
  position: absolute;
  width: 0.7rem;
  aspect-ratio: 1;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 45%, transparent);
  content: "";
  inset: -0.25rem auto auto 50%;
  transform: translateX(-50%);
}
.map-region:hover,
.map-region:focus-visible,
.map-region[aria-pressed="true"] {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-3px);
}
.delivery-map .map-region[data-region="India"] {
  top: 39%;
  left: 57%;
}
.delivery-map .map-region[data-region="South Asia"] {
  top: 47%;
  left: 68%;
}
.delivery-map .map-region[data-region="Middle East"] {
  top: 42%;
  left: 47%;
}
.delivery-map .map-region[data-region="Southeast Asia"] {
  top: 56%;
  left: 78%;
}
.delivery-map .map-region[data-region="Europe"] {
  top: 27%;
  left: 48%;
}
.delivery-map .map-region[data-region="North America"] {
  top: 31%;
  left: 18%;
}
.delivery-map .map-region[data-region="Africa"] {
  top: 59%;
  left: 47%;
}
.delivery-map .map-region[data-region="Australia and New Zealand"] {
  top: 72%;
  left: 78%;
}
.map-tooltip {
  position: absolute;
  z-index: 5;
  right: 1rem;
  bottom: 1rem;
  max-width: 22rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-lg);
}
.map-tooltip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.map-tooltip p {
  margin: 0;
  font-size: 0.78rem;
}

.quote-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 7vw, 5.5rem);
  border-radius: 2rem;
  background: var(--gradient);
  box-shadow: var(--shadow-lg);
}
.quote-banner blockquote {
  max-width: 51rem;
  margin: 0 0 1.5rem;
  color: var(--color-anchor-text);
  font-size: clamp(1.65rem, 3.4vw, 3.4rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.18;
}
.quote-banner p {
  max-width: 46rem;
  color: color-mix(in srgb, var(--color-anchor-text) 88%, transparent);
}
.quote-banner .button--secondary {
  border-color: color-mix(in srgb, var(--color-anchor-text) 40%, transparent);
  background: color-mix(in srgb, var(--color-anchor-text) 12%, transparent);
  color: var(--color-anchor-text);
}

.rail {
  overflow: hidden;
}
.rail-track {
  display: flex;
  transition: transform 420ms ease;
}
.rail-slide {
  min-width: 100%;
  padding: 0.25rem;
}
.testimonial-card {
  min-height: 18rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.placeholder-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
}
.testimonial-card h3 {
  max-width: 24ch;
}
.testimonial-meta {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}
.rail-controls {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.rail-buttons {
  display: flex;
  gap: 0.5rem;
}
.icon-button {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.rail-status {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.faq-item > h3 {
  margin: 0;
}
.faq-question {
  display: flex;
  width: 100%;
  padding: 1.1rem 1.2rem;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 780;
  text-align: left;
}
.faq-question::after {
  color: var(--brand);
  content: "+";
  font-size: 1.35rem;
}
.faq-question[aria-expanded="true"]::after {
  content: "−";
}
.faq-answer {
  overflow: hidden;
}
.faq-answer[hidden] {
  display: none;
}
.faq-answer > div {
  padding: 0 1.2rem 1.15rem;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

.enquiry-card {
  display: grid;
  padding: clamp(1.4rem, 4vw, 3.25rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.contact-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  margin-bottom: 0.5rem;
}
.contact-list a {
  font-weight: 700;
  text-decoration: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.8rem;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  padding-block: 4rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(13rem, 1.35fr) repeat(4, minmax(8rem, 0.72fr));
  gap: 1.6rem;
}
.footer-brand p {
  max-width: 24rem;
  font-size: 0.86rem;
}
.footer-tagline {
  color: var(--text);
  font-weight: 750;
}
.footer-column h2 {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.45rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-bottom {
  display: flex;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
  background: var(--soft);
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1.15rem;
}
.page-hero p {
  max-width: 48rem;
  font-size: var(--step-1);
}
.breadcrumbs {
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}
.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  content: "/";
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.pill {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.36fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.content-prose {
  max-width: 50rem;
}
.page--about .two-column > *,
.page--about .about-story {
  min-width: 0;
  max-width: 100%;
}
.page--about .about-story {
  width: 100%;
}
.page--about .about-story blockquote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface-alt);
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  line-height: 1.55;
  text-align: left;
  overflow-wrap: anywhere;
}
.content-prose > * + * {
  margin-top: 1.2rem;
}
.content-prose h2 {
  margin-top: 2.5rem;
}
.content-prose h3 {
  margin-top: 2rem;
}
.content-prose li + li {
  margin-top: 0.45rem;
}
.content-prose table,
.article-body table {
  width: 100%;
  border-collapse: collapse;
}
.content-prose th,
.content-prose td,
.article-body th,
.article-body td {
  padding: 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.content-prose th,
.article-body th {
  background: var(--soft);
  color: var(--text);
}
.sticky-aside {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.sticky-aside h2 {
  font-size: 1rem;
}
.sticky-aside ol,
.sticky-aside ul {
  margin: 0;
  padding-left: 1.15rem;
}
.sticky-aside a {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: none;
}
.sticky-aside a.is-active {
  color: var(--brand);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.process-step {
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.process-step span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
}
.process-step h3 {
  font-size: 1rem;
}
.process-step p {
  margin: 0;
  font-size: 0.78rem;
}
.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.comparison-panel {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.comparison-panel--growthut {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, var(--surface));
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.story-card h3 {
  font-size: 1.15rem;
}
.measurement-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
}
.measurement-list li {
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 700;
}
.closing-question {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 5px solid var(--accent);
  border-radius: 0 1.4rem 1.4rem 0;
  background: var(--soft);
}
.closing-question p {
  margin: 0;
  color: var(--text);
  font-size: var(--step-2);
  font-weight: 760;
  line-height: 1.3;
}

.filter-bar {
  display: grid;
  padding: 1rem;
  grid-template-columns: minmax(14rem, 1fr) auto auto;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.filter-bar input,
.filter-bar select {
  min-height: 2.8rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--bg);
  color: var(--text);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.article-banner {
  display: grid;
  min-height: 11rem;
  margin: -1.25rem -1.25rem 1.25rem;
  padding: 1rem;
  place-items: end start;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--gradient);
  color: var(--color-on-accent);
}
.article-banner span {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-card h2,
.article-card h3 {
  font-size: 1.25rem;
}
.article-card__meta {
  display: flex;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.7rem;
}
.article-card .text-link {
  margin-top: auto;
}
.pagination {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  gap: 0.45rem;
}
.pagination a,
.pagination span {
  display: grid;
  min-width: 2.5rem;
  min-height: 2.5rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
}
.pagination [aria-current="page"] {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--color-on-accent);
}

.article-header {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.article-header h1 {
  max-width: 17ch;
}
.article-standfirst {
  max-width: 50rem;
  font-size: var(--step-1);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.share-controls {
  display: flex;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.share-controls button,
.share-controls a {
  display: inline-flex;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}
.article-cover {
  display: grid;
  min-height: clamp(18rem, 42vw, 32rem);
  margin-bottom: 2.5rem;
  padding: 2rem;
  place-items: end start;
  border-radius: 2rem;
  background: var(--gradient);
  box-shadow: var(--shadow-lg);
  color: var(--color-on-accent);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.article-body {
  min-width: 0;
}
.article-body > * + * {
  margin-top: 1.15rem;
}
.article-body h2 {
  margin-top: 3rem;
}
.article-body h3 {
  margin-top: 2rem;
}
.article-body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--brand);
  background: var(--soft);
  color: var(--text);
  font-size: 1.2rem;
}
.callout {
  padding: 1.15rem;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, var(--border));
  border-radius: 1rem;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}
.drop-cap::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--brand);
  font-size: 4.2rem;
  font-weight: 850;
  line-height: 0.78;
}
.mobile-toc {
  display: none;
  margin: 1.2rem 0;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}
.mobile-toc summary {
  padding: 1rem;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.mobile-toc nav {
  padding: 0 1rem 1rem;
}
.summary-table-wrap {
  overflow-x: auto;
}

.legal-layout {
  max-width: 52rem;
}
.legal-layout h2 {
  margin-top: 2.4rem;
}
.notice {
  padding: 1rem;
  border: 1px solid var(--warning);
  border-radius: 0.8rem;
  background: color-mix(in srgb, var(--warning) 8%, var(--surface));
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: 1rem;
  bottom: 1rem;
  display: none;
  width: min(28rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-lg);
}
.cookie-banner.is-visible {
  display: block;
}
.cookie-banner p {
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
}

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

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

@media (max-width: 73rem) {
  .desktop-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-actions .button,
  .header-actions .theme-select {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 62rem) {
  .hero-grid,
  .two-column,
  .enquiry-card,
  .calculator-shell,
  .content-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .system-visual,
  .layer-visual {
    min-height: 27rem;
  }
  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .metric:nth-child(3) {
    border-right: 0;
  }
  .metric:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }
  .card-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .estimate-panel,
  .sticky-aside {
    position: static;
  }
  .article-layout > .sticky-aside {
    display: none;
  }
  .mobile-toc {
    display: block;
  }
}

@media (max-width: 45rem) {
  :root {
    --header-height: 4.6rem;
  }
  .container,
  .container--narrow {
    width: min(calc(100% - 1.25rem), var(--container));
  }
  .brand small {
    display: none;
  }
  .brand-mark {
    width: 2.15rem;
  }
  .hero {
    padding-block: 3.5rem;
  }
  .hero-copy h1,
  .hero-copy h2 {
    max-width: none;
  }
  .capability-list,
  .service-toggle-list,
  .service-config__body,
  .form-grid,
  .check-grid,
  .calculator-explanation-grid {
    grid-template-columns: 1fr;
  }
  .system-visual {
    min-height: 25rem;
  }
  .system-node {
    min-width: 5.7rem;
    padding: 0.5rem;
    font-size: 0.65rem;
  }
  .system-core {
    width: 7.6rem;
    font-size: 0.78rem;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metric:nth-child(2n) {
    border-right: 0;
  }
  .metric:nth-child(3) {
    border-right: 1px solid var(--border);
  }
  .metric:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }
  .metric:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .fact-grid,
  .card-grid,
  .article-grid,
  .pricing-grid,
  .process-grid,
  .comparison,
  .story-grid,
  .measurement-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-card--wide {
    grid-column: auto;
  }
  .band-grid {
    grid-template-columns: 1fr;
  }
  .pricing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .calculator-form {
    padding: 1rem;
  }
  .estimate-mobile-button {
    position: sticky;
    z-index: 20;
    bottom: 0.7rem;
    display: flex;
    width: calc(100% - 1rem);
    margin: 1rem auto 0;
  }
  .map-board {
    min-height: auto;
    padding: 1rem;
  }
  .map-board::before,
  .map-board::after {
    display: none;
  }
  .map-region {
    position: relative;
    inset: auto !important;
    display: flex;
    width: 100%;
    margin-bottom: 0.55rem;
    justify-content: flex-start;
    border-radius: 0.8rem;
  }
  .map-region::before {
    position: static;
    margin-right: 0.6rem;
    transform: none;
  }
  .map-tooltip {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 0.8rem;
  }
  .filter-bar {
    grid-template-columns: 1fr;
  }
  .article-cover {
    min-height: 17rem;
    padding: 1.2rem;
    border-radius: 1.2rem;
  }
  .article-body {
    text-align: left;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .calculator-actions,
  .estimate-mobile-button,
  .button-row,
  .share-controls {
    display: none !important;
  }
  body {
    background: var(--color-print-bg);
    color: var(--color-print-text);
  }
  .section {
    padding-block: 1.5rem;
  }
  .calculator-shell {
    display: block;
  }
  .estimate-panel {
    position: static;
    box-shadow: none;
  }
}

/* ========================================================================== */
/* Growthut editorial redesign                                                */
/* ========================================================================== */

html {
  scroll-padding-top: calc(var(--header-height) + var(--space-3));
}

body {
  background-color: var(--surface-level-0);
  background-image:
    radial-gradient(
      circle at 8% 2%,
      color-mix(in srgb, var(--color-primary) 28%, transparent),
      transparent 30rem
    ),
    radial-gradient(
      circle at 96% 22%,
      color-mix(in srgb, var(--color-primary-deep) 13%, transparent),
      transparent 32rem
    );
  background-attachment: fixed;
  color: var(--color-text-primary);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(
    var(--color-noise) 0.55px,
    transparent 0.55px
  );
  background-size: 5px 5px;
  content: "";
  pointer-events: none;
}

body.menu-open {
  touch-action: none;
}

p,
li {
  color: var(--color-text-body);
}

h1,
h2,
h3,
h4 {
  color: var(--color-text-primary);
  font-family: var(--font);
  font-weight: 600;
}

h1 {
  font-size: var(--text-4xl);
  line-height: 1.06;
}
h2 {
  font-size: var(--text-3xl);
  line-height: 1.11;
}
h3 {
  font-size: var(--text-xl);
  line-height: 1.3;
}
h4 {
  font-size: var(--text-lg);
  line-height: 1.3;
}

label,
legend,
button,
.eyebrow,
.pill,
.placeholder-label,
.price-badge,
.article-card__meta,
.breadcrumbs,
.nav-list,
.mobile-drawer__label,
.footer-kicker {
  letter-spacing: 0.05em;
}

a {
  color: var(--color-accent);
}
a:hover {
  color: var(--color-accent-strong);
}

:focus-visible {
  outline: none;
  outline-offset: 4px;
}

::selection {
  background: var(--color-accent);
  color: var(--color-on-accent);
}

.skip-link {
  z-index: var(--z-skip);
  background: var(--color-accent);
  color: var(--color-on-accent);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  width: 100%;
  max-width: calc(var(--content-reading) + (2 * var(--container-padding)));
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-space);
}
.section--compact {
  padding-block: clamp(var(--space-5), 6vw, var(--space-7));
}
.section--soft {
  background: var(--color-surface-alt);
}
.section--surface {
  background: var(--surface-level-1);
}
.section--bordered {
  border-block: var(--border-subtle);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(var(--space-4), 5vw, var(--space-6));
}

.section-heading h2 {
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.section-heading p {
  max-width: 52rem;
  font-size: var(--text-lg);
}

.eyebrow {
  gap: var(--space-1);
  margin-bottom: var(--space-2);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
}

.eyebrow::before {
  width: var(--space-4);
  height: 1px;
  background: var(--color-accent);
}

.gradient-text {
  background: none;
  color: var(--color-accent);
  -webkit-text-fill-color: currentColor;
}

.button-row {
  gap: var(--space-2);
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 3rem;
  overflow: hidden;
  padding: 0.9rem 1.3rem 0.78rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  box-shadow: none;
  color: var(--color-on-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color var(--transition-base),
    transform var(--transition-fast),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-accent-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.button:hover {
  color: var(--color-on-accent);
  filter: none;
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

.button:hover::before {
  transform: scaleX(1);
}
.button:active {
  transform: scale(0.97);
}

.button--secondary {
  border-color: var(--color-accent);
  background: transparent;
  color: var(--color-accent);
}

.button--secondary::before {
  background: var(--color-primary);
}
.button--secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-strong);
  box-shadow: none;
}

[data-theme="dark"] .button--secondary:hover {
  color: #0a0a0a;
}

.button--ghost {
  min-height: 3rem;
  padding-inline: 0.5rem;
  border-color: transparent;
  background: transparent;
  color: var(--color-accent);
}

.button--ghost::before {
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
}
.button--ghost:hover {
  background: transparent;
  color: var(--color-accent-strong);
  box-shadow: none;
}
.button--small {
  min-height: 3rem;
  padding: 0.78rem 1rem 0.68rem;
  font-size: var(--text-xs);
}

.text-link {
  position: relative;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.text-link::before {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.text-link:hover::before {
  transform: scaleX(1);
}
.text-link::after {
  transition: transform var(--transition-base);
}

/* Shared header */
.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color var(--transition-base),
    backdrop-filter var(--transition-base),
    border-color var(--transition-base);
}

.site-header.is-scrolled,
.page:not(.page--home) .site-header {
  border-color: var(--color-border);
  background: var(--color-header);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
}

.header-inner {
  min-height: var(--header-height);
  gap: var(--space-2);
  transition: min-height var(--transition-base);
}

.site-header .header-inner {
  max-width: 96rem;
}

.site-header.is-scrolled .header-inner {
  min-height: 4.65rem;
}

.brand {
  gap: 0.75rem;
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand:hover {
  color: var(--color-text-primary);
}

.brand-mark {
  width: 2.65rem;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  box-shadow: none;
  color: var(--color-on-accent);
  font-size: var(--text-sm);
}

.brand small {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 450;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-list {
  gap: 0;
}
.nav-list a {
  position: relative;
  min-height: 3rem;
  padding: 1rem 0.52rem 0.8rem;
  border-radius: 0;
  color: var(--color-text-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition:
    color var(--transition-base),
    transform var(--transition-base);
}

.nav-list a::after {
  position: absolute;
  right: 0.52rem;
  bottom: 0.55rem;
  left: 0.52rem;
  height: 1px;
  background: var(--color-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav-list a:hover,
.nav-list a[aria-current="page"],
.nav-list a.is-section-active {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after,
.nav-list a.is-section-active::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 0.65rem;
}
.theme-control {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.55rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-level-1) 72%, transparent);
}

.theme-control__icon {
  width: 0.85rem;
  aspect-ratio: 1;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-round);
  background: linear-gradient(90deg, var(--color-accent) 50%, transparent 50%);
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

[data-theme="dark"] .theme-control__icon {
  transform: rotate(180deg);
}

.theme-select {
  min-height: 2.85rem;
  max-width: 6.65rem;
  padding: 0.65rem 1.6rem 0.5rem 0.25rem;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: 550;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.theme-select option,
select option {
  background-color: #ffffff;
  color: #111111;
}

[data-theme="dark"] .theme-select option,
[data-theme="dark"] select option {
  background-color: #1a1a1a;
  color: #fdf0d5;
}

.site-footer .theme-select option,
.site-footer select option {
  background-color: #102f2e;
  color: #fdf0d5;
}

.menu-toggle {
  width: 3rem;
  min-height: 3rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
}

.mobile-drawer {
  position: fixed;
  z-index: var(--z-drawer);
  inset: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.mobile-drawer[aria-hidden="false"],
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: var(--color-overlay);
  cursor: pointer;
}

.mobile-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(42rem, 100%);
  overflow-y: auto;
  padding: var(--space-3) var(--container-padding) var(--space-5);
  background: var(--surface-level-0);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-standard);
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  margin-bottom: var(--space-5);
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
}

.drawer-close {
  position: relative;
  width: 3rem;
  min-height: 3rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
  color: var(--color-text-primary);
  cursor: pointer;
}

.drawer-close::before,
.drawer-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}
.drawer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-drawer__label,
.footer-kicker {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-nav {
  gap: 0;
}
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: var(--border-subtle);
  border-radius: 0;
  background: transparent;
  color: var(--color-text-primary);
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  font-weight: 520;
  letter-spacing: -0.02em;
  transform: translateY(1rem);
  transition:
    color var(--transition-base),
    transform var(--duration-slow) var(--ease-standard);
}

.mobile-drawer.is-open .mobile-nav a {
  transform: translateY(0);
}
.mobile-drawer.is-open .mobile-nav a:nth-child(2) {
  transition-delay: 40ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(3) {
  transition-delay: 80ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(4) {
  transition-delay: 120ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(5) {
  transition-delay: 160ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(6) {
  transition-delay: 200ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(7) {
  transition-delay: 240ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(8) {
  transition-delay: 280ms;
}
.mobile-drawer.is-open .mobile-nav a:nth-child(9) {
  transition-delay: 320ms;
}
.mobile-nav a[aria-current="page"] {
  border-color: var(--color-border);
  color: var(--color-accent);
}

.mobile-drawer__actions {
  margin-top: var(--space-4);
  gap: var(--space-2);
}
.mobile-contact {
  padding: var(--space-2);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}
.mobile-social-note {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

/* Shared footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--space-8) var(--space-3);
  border-top: 0;
  background: var(--color-anchor-bg);
  color: var(--color-anchor-text);
}

.site-footer::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(
    color-mix(in srgb, var(--color-anchor-text) 8%, transparent) 0.55px,
    transparent 0.55px
  );
  background-size: 6px 6px;
  content: "";
}

.footer-watermark {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.28em;
  color: color-mix(in srgb, var(--color-anchor-text) 4%, transparent);
  font-size: clamp(7rem, 21vw, 22rem);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .brand,
.site-footer .footer-column h2,
.site-footer .footer-newsletter h2 {
  color: var(--color-anchor-text);
}
.site-footer .brand-mark {
  background: var(--color-anchor-text);
  color: var(--color-anchor-bg);
}
.site-footer p,
.site-footer li,
.site-footer .brand small {
  color: color-mix(in srgb, var(--color-anchor-text) 70%, transparent);
}
.site-footer a {
  color: var(--color-anchor-text);
}

.footer-destination {
  display: grid;
  margin-bottom: var(--space-7);
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  gap: clamp(var(--space-4), 7vw, var(--space-8));
  align-items: end;
}

.footer-brand p {
  max-width: 39rem;
  font-size: var(--text-base);
}
.footer-brand .button {
  margin-top: var(--space-2);
}
.footer-tagline {
  max-width: 29ch;
  color: var(--color-anchor-text) !important;
  font-size: var(--text-xl) !important;
  line-height: 1.25;
}

.footer-newsletter {
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 16%, transparent);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--color-anchor-text) 5%, transparent);
}
.footer-newsletter h2 {
  margin-bottom: var(--space-2);
  font-size: var(--text-2xl);
}
.footer-newsletter p {
  font-size: var(--text-sm);
}
.newsletter-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-1);
}
.newsletter-preview label {
  grid-column: 1 / -1;
  color: color-mix(in srgb, var(--color-anchor-text) 70%, transparent);
  font-size: var(--text-xs);
  text-transform: uppercase;
}
.newsletter-preview input {
  min-width: 0;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--color-anchor-bg) 72%, transparent);
  color: var(--color-anchor-text);
}

.site-footer .button--secondary {
  border-color: var(--color-anchor-text);
  color: var(--color-anchor-text);
}
.site-footer .button--secondary::before {
  background: color-mix(in srgb, var(--color-anchor-text) 10%, transparent);
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(var(--space-3), 4vw, var(--space-6));
}
.footer-column h2 {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links li {
  margin-bottom: 0.65rem;
}
.footer-links a {
  color: color-mix(in srgb, var(--color-anchor-text) 68%, transparent);
  font-size: var(--text-sm);
}
.footer-links a:hover {
  color: var(--color-anchor-text);
}

.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-color: color-mix(in srgb, var(--color-anchor-text) 14%, transparent);
}
.footer-bottom p {
  color: color-mix(in srgb, var(--color-anchor-text) 60%, transparent);
  font-size: var(--text-xs);
}
.footer-utilities {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.site-footer .theme-control {
  border-color: color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  background: transparent;
}
.site-footer .theme-select {
  color: var(--color-anchor-text);
}
.site-footer .theme-control__icon {
  border-color: var(--color-anchor-text);
  background: linear-gradient(
    90deg,
    var(--color-anchor-text) 50%,
    transparent 50%
  );
}

.back-to-top {
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-anchor-text);
  cursor: pointer;
  font-size: var(--text-xs);
  opacity: 0;
  transform: translateY(0.5rem);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    background var(--transition-base);
  visibility: hidden;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.back-to-top:hover {
  background: color-mix(in srgb, var(--color-anchor-text) 8%, transparent);
}

/* Shared inner-page editorial language */
.page-hero {
  isolation: isolate;
  padding-block: clamp(var(--space-6), 10vw, var(--space-8));
  border-bottom: 0;
  background:
    linear-gradient(
      118deg,
      color-mix(in srgb, var(--color-primary) 38%, transparent),
      transparent 55%
    ),
    var(--surface-level-0);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: var(--container-padding);
  width: clamp(12rem, 31vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--color-accent) 16%, transparent);
  border-radius: var(--radius-round);
  content: "";
  box-shadow: inset 0 0 0 clamp(2rem, 6vw, 5rem)
    color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.page-hero h1 {
  max-width: 17ch;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}
.page-hero p {
  max-width: 49rem;
  font-size: var(--text-lg);
}
.breadcrumbs {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill {
  min-height: 2.2rem;
  align-items: center;
  padding: 0.48rem 0.75rem 0.35rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
}

.card-grid {
  gap: var(--space-3);
}
.service-card,
.reason-card,
.story-card,
.price-card,
.article-card,
.feature-panel,
.comparison-panel {
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-level-1);
  box-shadow: none;
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.service-card,
.reason-card,
.story-card,
.article-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.reason-card::before,
.article-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--color-accent);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-base);
}

.fact,
.process-step,
.measurement-list li {
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-level-1);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: growthut-process;
}

.process-grid::before {
  position: absolute;
  top: var(--space-2);
  bottom: var(--space-2);
  left: 1.25rem;
  width: 1px;
  background: var(--color-border-strong);
  content: "";
}

.process-step {
  position: relative;
  max-width: calc(50% - var(--space-5));
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  counter-increment: growthut-process;
}
.process-step:nth-child(even) {
  margin-left: calc(50% + var(--space-5));
}
.process-step:nth-child(odd) {
  margin-right: calc(50% + var(--space-5));
}
.process-step::before {
  position: absolute;
  top: var(--space-3);
  width: 0.85rem;
  aspect-ratio: 1;
  border: 3px solid var(--surface-level-0);
  border-radius: var(--radius-round);
  background: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
  content: "";
}
.process-step:nth-child(odd)::before {
  right: calc((var(--space-5) * -1) - 0.44rem);
}
.process-step:nth-child(even)::before {
  left: calc((var(--space-5) * -1) - 0.44rem);
}
.process-step span {
  color: var(--color-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-step h3 {
  font-size: var(--text-xl);
}
.process-step p {
  font-size: var(--text-base);
}

.comparison {
  gap: 0;
  border-block: var(--border-subtle);
}
.comparison-panel {
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  border: 0;
  border-radius: 0;
}
.comparison-panel + .comparison-panel {
  border-left: var(--border-subtle);
}
.comparison-panel--growthut {
  background: var(--color-surface-alt);
}

.closing-question {
  padding: clamp(var(--space-4), 6vw, var(--space-7));
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
}
.closing-question p {
  color: var(--color-text-primary);
  font-size: var(--text-2xl);
  font-weight: 550;
}

.tagline-panel {
  padding: clamp(var(--space-4), 7vw, var(--space-8));
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--color-anchor-bg);
}
.tagline-panel h2 {
  max-width: 18ch;
  color: var(--color-anchor-text);
  font-size: var(--text-4xl);
  font-weight: 520;
}
.tagline-panel p {
  max-width: 43rem;
  color: color-mix(in srgb, var(--color-anchor-text) 75%, transparent);
  font-size: var(--text-lg);
}

.sticky-aside {
  top: calc(var(--header-height) + var(--space-3));
  padding: var(--space-3);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-level-1) 88%, transparent);
  backdrop-filter: blur(12px);
}
.sticky-aside h2 {
  font-size: var(--text-lg);
}
.sticky-aside a {
  display: block;
  min-height: 2.6rem;
  padding-block: 0.45rem;
  font-size: var(--text-sm);
}
.toc-item--nested {
  margin-left: var(--space-2);
}

.article-body {
  max-width: var(--content-reading);
  font-size: var(--text-base);
  line-height: 1.8;
  text-align: left;
}
.article-body h2 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}
.article-body h3 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}
.article-body blockquote {
  margin-block: var(--space-5);
  padding: var(--space-3) var(--space-4);
  border-left-color: var(--color-accent);
  background: var(--color-surface-alt);
  font-size: var(--text-xl);
}
.article-cover {
  border-radius: var(--radius-xl);
  background: var(--color-anchor-bg);
  box-shadow: none;
  color: var(--color-anchor-text);
}
.article-banner {
  background: var(--color-anchor-bg);
  color: var(--color-anchor-text);
}
.share-controls button,
.share-controls a {
  min-height: 3rem;
  border-radius: var(--radius-sm);
}

.content-prose table,
.article-body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: normal;
}

/* Homepage compositions */
.hero--primary {
  min-height: max(47rem, calc(100svh - var(--header-height)));
  display: grid;
  padding-block: clamp(var(--space-5), 8vw, var(--space-8));
  align-items: center;
  background:
    radial-gradient(
      circle at 78% 22%,
      color-mix(in srgb, var(--color-primary) 46%, transparent),
      transparent 25rem
    ),
    linear-gradient(
      128deg,
      var(--surface-level-0) 42%,
      color-mix(in srgb, var(--color-primary) 22%, var(--surface-level-0)) 100%
    );
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-atmosphere__shape {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--color-accent) 14%, transparent);
  border-radius: var(--radius-round);
}
.hero-atmosphere__shape--one {
  top: 10%;
  right: 1%;
  width: clamp(18rem, 37vw, 37rem);
  aspect-ratio: 1;
}
.hero-atmosphere__shape--two {
  right: 28%;
  bottom: -14rem;
  width: 26rem;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--color-primary) 9%, transparent);
}
.hero-atmosphere__noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    var(--color-noise) 0.65px,
    transparent 0.65px
  );
  background-size: 5px 5px;
}

.hero-grid--primary {
  grid-template-columns: minmax(0, 1.1fr) minmax(27rem, 0.9fr);
  gap: clamp(var(--space-4), 6vw, var(--space-7));
  align-items: center;
}
.hero-copy--primary h1 {
  max-width: 10.5ch;
  margin-bottom: var(--space-3);
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.03;
}
.hero-copy--primary h1 strong {
  color: var(--color-accent);
  font-weight: 650;
}
.hero-copy--primary > p {
  max-width: 43rem;
}
.hero-copy__supporting-link {
  min-height: 3rem;
  align-items: center;
}
.hero-trust {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.growth-system-visual {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at center,
      color-mix(in srgb, var(--color-primary) 32%, transparent),
      transparent 32%
    ),
    color-mix(in srgb, var(--surface-level-1) 74%, transparent);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.growth-system-visual::before,
.growth-system-visual::after {
  position: absolute;
  inset: 9%;
  border: 1px solid color-mix(in srgb, var(--color-accent) 12%, transparent);
  border-radius: var(--radius-round);
  content: "";
}
.growth-system-visual::after {
  inset: 25%;
  border-style: dashed;
}
.growth-system-visual__paths {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.growth-system-visual__paths path {
  fill: none;
  stroke: color-mix(in srgb, var(--color-accent) 28%, transparent);
  stroke-dasharray: 7 8;
  stroke-width: 1.3;
  animation: system-path 18s linear infinite;
}
.growth-system-visual__core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 12rem;
  aspect-ratio: 1;
  padding: var(--space-2);
  place-content: center;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-round);
  background: var(--color-accent);
  color: var(--color-on-accent);
  text-align: center;
  transform: translate(-50%, -50%);
}
.growth-system-visual__core span {
  font-size: var(--text-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.growth-system-visual__core strong {
  color: inherit;
  font-size: var(--text-lg);
  line-height: 1.2;
}
.growth-system-visual .growth-system-visual__module {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 9.5rem;
  padding: 0.85rem 0.95rem;
  gap: 0.12rem;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-level-1);
  box-shadow: var(--shadow-sm);
  color: var(--color-text-body);
  text-align: left;
  animation: system-float 7s var(--ease-standard) infinite alternate;
}
.growth-system-visual__module strong {
  color: var(--color-text-primary);
  font-size: var(--text-base);
}
.growth-system-visual__module > span:last-child {
  font-size: var(--text-xs);
}
.growth-system-visual__category {
  color: var(--color-accent) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.growth-system-visual .growth-system-visual__module--search {
  top: 8%;
  left: 8%;
}
.growth-system-visual .growth-system-visual__module--website {
  top: 8%;
  right: 7%;
  animation-delay: -1.5s;
}
.growth-system-visual .growth-system-visual__module--social {
  top: 39%;
  right: 2%;
  animation-delay: -3s;
}
.growth-system-visual .growth-system-visual__module--advertising {
  right: 8%;
  bottom: 7%;
  animation-delay: -4.5s;
}
.growth-system-visual .growth-system-visual__module--brand {
  bottom: 7%;
  left: 8%;
  animation-delay: -2.5s;
}
.growth-system-visual .growth-system-visual__module--design {
  top: 39%;
  left: 2%;
  animation-delay: -5s;
}

@keyframes system-path {
  to {
    stroke-dashoffset: -240;
  }
}
@keyframes system-float {
  to {
    transform: translateY(-0.45rem);
  }
}

.connected-growth {
  padding-block: clamp(var(--space-7), 12vw, 10rem);
  background: var(--color-surface-alt);
  clip-path: polygon(0 4rem, 100% 0, 100% calc(100% - 4rem), 0 100%);
}
.connected-growth__layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(var(--space-4), 7vw, var(--space-8));
  align-items: center;
}
.connected-growth__copy h2 {
  max-width: 13ch;
  font-size: var(--text-4xl);
}
.connected-growth__copy > p {
  max-width: 42rem;
}
.connected-growth .capability-list {
  grid-template-columns: 1fr;
}

.connected-system {
  position: relative;
  display: grid;
  min-height: 43rem;
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.55fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: var(--space-3);
  align-items: center;
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--surface-level-1);
}
.connected-system__paths {
  position: absolute;
  width: 100%;
  height: 55%;
  inset: 4% 0 auto;
}
.connected-system__paths path {
  fill: none;
  stroke: color-mix(in srgb, var(--color-accent) 23%, transparent);
  stroke-dasharray: 8 9;
  stroke-width: 1.25;
}
.connected-system__modules {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: center;
}
.connected-system__modules--discovery,
.connected-system__modules--experience {
  grid-column: 1;
}
.connected-system__modules--discovery {
  align-self: end;
}
.connected-system__modules--experience {
  align-self: start;
}
.connected-system__modules--activation {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
}
.connected-module {
  display: inline-flex;
  min-height: 2.6rem;
  padding: 0.65rem 0.75rem 0.5rem;
  align-items: center;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.connected-system__core {
  position: relative;
  z-index: 3;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  width: 11rem;
  aspect-ratio: 1;
  padding: var(--space-2);
  place-content: center;
  border-radius: var(--radius-round);
  background: var(--color-accent);
  color: var(--color-on-accent);
  text-align: center;
  box-shadow: 0 0 0 1.5rem
    color-mix(in srgb, var(--color-primary) 24%, transparent);
}
.connected-system__core span,
.connected-system__core small {
  color: inherit;
  font-size: var(--text-xs);
}
.connected-system__core strong {
  color: inherit;
  font-size: var(--text-2xl);
}
.connected-system__layers {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-1);
}
.connected-system__layers .layer-card {
  padding: 0.85rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-2);
  transform: none;
}
.connected-system__layers .layer-card span:last-child {
  font-size: 0.7rem;
}

.metrics-ribbon {
  padding-block: clamp(var(--space-4), 6vw, var(--space-6));
  border: 0;
  background: var(--color-anchor-bg);
  color: var(--color-anchor-text);
}
.metrics-ribbon .metrics-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.metrics-ribbon .metric {
  min-height: 10rem;
  padding: var(--space-2);
  justify-content: center;
  border-color: color-mix(in srgb, var(--color-anchor-text) 16%, transparent);
}
.metrics-ribbon .metric strong {
  color: var(--color-anchor-text);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 420;
  line-height: 0.95;
}
.metrics-ribbon .metric span {
  max-width: 12rem;
  color: color-mix(in srgb, var(--color-anchor-text) 70%, transparent);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-editorial {
  overflow: hidden;
}
.about-editorial__layout {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1.1fr) minmax(22rem, 0.75fr);
  gap: clamp(var(--space-3), 5vw, var(--space-6));
  align-items: start;
}
.about-editorial__label {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.about-editorial__content {
  display: grid;
  gap: var(--space-4);
}
.about-editorial__copy h2 {
  max-width: 14ch;
}
.about-editorial__copy p {
  max-width: var(--content-reading);
}
.about-editorial__facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-block: var(--border-subtle);
}
.about-editorial__facts .fact {
  padding: var(--space-2);
  border: 0;
  border-bottom: var(--border-subtle);
  border-radius: 0;
  background: transparent;
}

.listen-system {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  overflow: hidden;
}
.listen-system__heading h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-2xl);
}
.listen-system__stages {
  position: relative;
  margin: 0;
  padding: 0 0 0 var(--space-4);
  list-style: none;
}
.listen-system__stages::before,
.listen-system__stages::after {
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0.48rem;
  width: 1px;
  content: "";
}
.listen-system__stages::before {
  background: var(--color-border-strong);
}
.listen-system__stages::after {
  height: var(--listen-progress, 20%);
  background: var(--color-accent);
  transition: height var(--duration-slow) var(--ease-standard);
}
.listen-system__stage {
  position: relative;
  padding: 0 0 var(--space-3);
  opacity: 0.45;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}
.listen-system__stage::before {
  position: absolute;
  top: 0.35rem;
  left: calc(var(--space-4) * -1);
  width: 0.95rem;
  aspect-ratio: 1;
  border: 2px solid var(--surface-level-1);
  border-radius: var(--radius-round);
  background: var(--color-border-strong);
  content: "";
  transform: translateX(-0.02rem);
}
.listen-system__stage.is-active {
  opacity: 1;
  transform: translateX(0.25rem);
}
.listen-system__stage.is-active::before {
  background: var(--color-accent);
  box-shadow: 0 0 0 4px
    color-mix(in srgb, var(--color-primary) 48%, transparent);
}
.listen-system__index {
  display: block;
  color: var(--color-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}
.listen-system__stage strong {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
}
.listen-system__stage p {
  margin: 0;
  font-size: var(--text-sm);
}
.listen-system__annotation {
  display: flex;
  margin-top: var(--space-2);
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.learn-more-band {
  padding-block: var(--space-5);
  border-block: var(--border-subtle);
  background: var(--color-primary);
}
.learn-more-band .band-grid {
  align-items: center;
}
.learn-more-band h2 {
  max-width: 20ch;
  color: var(--color-text-primary);
}
.learn-more-band p {
  color: var(--color-text-body);
}

[data-theme="dark"] .learn-more-band,
[data-theme="dark"] .why-layout__cta,
[data-theme="dark"] .closing-question {
  background: linear-gradient(135deg, rgba(27, 123, 120, 0.28) 0%, rgba(16, 47, 46, 0.52) 100%), #141c1b;
  border: 1px solid rgba(125, 207, 205, 0.32);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .learn-more-band h2,
[data-theme="dark"] .why-layout__cta h2,
[data-theme="dark"] .closing-question p {
  color: #fdf0d5;
}

[data-theme="dark"] .learn-more-band p,
[data-theme="dark"] .why-layout__cta p {
  color: #d4cfc6;
}

[data-theme="dark"] .learn-more-band .button--secondary,
[data-theme="dark"] .why-layout__cta .button--secondary {
  border-color: #fdf0d5;
  color: #fdf0d5;
  background: rgba(253, 240, 213, 0.08);
}

[data-theme="dark"] .learn-more-band .button--secondary:hover,
[data-theme="dark"] .why-layout__cta .button--secondary:hover {
  background: #fdf0d5;
  color: #0a0a0a;
  border-color: #fdf0d5;
}

[data-theme="dark"] .learn-more-band .button:not(.button--secondary):not(.button--ghost),
[data-theme="dark"] .why-layout__cta .button:not(.button--secondary):not(.button--ghost) {
  background: #7dcfcd;
  border-color: #7dcfcd;
  color: #0a0a0a;
  font-weight: 750;
}

[data-theme="dark"] .learn-more-band .button:not(.button--secondary):not(.button--ghost):hover,
[data-theme="dark"] .why-layout__cta .button:not(.button--secondary):not(.button--ghost):hover {
  background: #fdf0d5;
  border-color: #fdf0d5;
  color: #0a0a0a;
}
.tagline-statement .tagline-panel {
  min-height: 35rem;
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.services-showcase {
  background: var(--surface-level-0);
}
.services-bento {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: var(--space-3);
}
.services-bento .service-card {
  display: flex;
  min-height: 30rem;
  padding: clamp(var(--space-3), 3vw, var(--space-4));
  flex-direction: column;
}
.services-bento .service-card--feature {
  grid-column: span 6;
  min-height: 42rem;
}
.services-bento .service-card--medium {
  grid-column: span 3;
}
.services-bento .service-card--wide {
  grid-column: 1 / -1;
  min-height: 24rem;
}
.service-card__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-1);
  align-items: start;
}
.service-card__heading h3 {
  grid-column: 1 / -1;
  max-width: 17ch;
  font-size: var(--text-2xl);
}
.service-card--feature .service-card__heading h3 {
  font-size: var(--text-3xl);
}
.service-card__category {
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-mark {
  min-width: 2.7rem;
  min-height: 2.4rem;
  padding: 0.5rem 0.55rem 0.35rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
  color: var(--color-accent);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.service-card__deliverables {
  display: grid;
  margin: var(--space-2) 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
}
.service-card--medium .service-card__deliverables {
  grid-template-columns: 1fr;
}
.service-card__deliverables li {
  padding: 0.55rem 0;
  border-bottom: var(--border-subtle);
  color: var(--color-text-body);
  font-size: var(--text-sm);
}
.service-card__visual {
  position: relative;
  min-height: 8rem;
  margin: auto 0 var(--space-3);
  overflow: hidden;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  transition: transform var(--transition-base);
}
.service-card--feature .service-card__visual {
  min-height: 13rem;
}
.service-card:hover .service-card__visual {
  transform: translateY(-0.25rem);
}
.service-visual--search {
  display: grid;
  padding: var(--space-2);
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  align-content: center;
}
.service-visual__query {
  grid-column: 1 / -1;
  padding: 0.65rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
.service-visual__result {
  padding: 0.75rem 0.4rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-accent-strong);
  font-size: var(--text-xs);
  text-align: center;
}
.service-visual--website {
  display: grid;
  padding: var(--space-2);
  grid-template-rows: auto 1fr auto auto;
  gap: 0.65rem;
}
.service-visual--website span {
  display: block;
  border-radius: var(--radius-xs);
  background: var(--surface-level-1);
}
.service-visual__browser-bar {
  width: 100%;
  height: 1.25rem;
}
.service-visual__website-heading {
  width: 62%;
  height: 2.2rem;
  background: var(--color-primary) !important;
}
.service-visual__website-copy {
  width: 82%;
  height: 1rem;
}
.service-visual__website-action {
  width: 28%;
  height: 1.8rem;
  background: var(--color-accent) !important;
}
.service-visual--social,
.service-visual--design,
.service-visual--advertising {
  display: flex;
  padding: var(--space-2);
  gap: 0.55rem;
  align-items: end;
}
.service-visual--social span {
  width: 33%;
  height: 70%;
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
}
.service-visual--social span:nth-child(2) {
  height: 94%;
  background: var(--color-primary);
}
.service-visual--brand {
  display: grid;
  padding: var(--space-2);
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  align-items: center;
}
.service-visual--brand span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: var(--radius-round);
  background: var(--color-primary);
  color: var(--color-accent-strong);
}
.service-visual--brand span:first-child {
  grid-column: span 3;
  width: 3.5rem;
  margin: auto;
  font-size: var(--text-xl);
}
.service-visual--design span {
  flex: 1;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  transform: rotate(-5deg);
}
.service-visual--design span:nth-child(2) {
  height: 80%;
  background: var(--color-primary-deep);
  transform: rotate(4deg);
}
.service-visual--design span:nth-child(3) {
  height: 60%;
  background: var(--color-accent);
}
.service-visual--advertising span {
  flex: 1;
  height: 28%;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  background: var(--color-primary-deep);
}
.service-visual--advertising span:nth-child(2) {
  height: 52%;
}
.service-visual--advertising span:nth-child(3) {
  height: 78%;
}
.service-visual--advertising span:nth-child(4) {
  height: 96%;
  background: var(--color-accent);
}
.service-visual--coming-soon {
  display: flex;
  padding: var(--space-2);
  gap: var(--space-2);
  align-items: center;
  justify-content: center;
}
.service-visual--coming-soon span {
  padding: 0.75rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  text-transform: uppercase;
}
.service-card--coming-soon {
  background: var(--color-anchor-bg);
}
.service-card--coming-soon h3 {
  color: var(--color-anchor-text);
}
.service-card--coming-soon p,
.service-card--coming-soon li {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}
.service-card--coming-soon .service-card__category,
.service-card--coming-soon .text-link {
  color: var(--color-anchor-text);
}
.service-card--coming-soon .service-card__visual {
  border-color: color-mix(in srgb, var(--color-anchor-text) 16%, transparent);
  background: color-mix(in srgb, var(--color-anchor-text) 5%, transparent);
}

.why-section {
  background: var(--color-surface-alt);
}
.why-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(var(--space-4), 7vw, var(--space-8));
  align-items: start;
}
.why-layout__intro {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
}
.why-layout__prompt {
  margin-top: var(--space-3);
  color: var(--color-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.why-layout__modules {
  border-top: var(--border-strong);
}
.why-layout .comparison-module {
  padding: var(--space-4) 0;
  border: 0;
  border-bottom: var(--border-subtle);
  border-radius: 0;
  background: transparent;
}
.comparison-module .reason-number {
  color: var(--color-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}
.comparison-module h3 {
  max-width: 23ch;
  font-size: var(--text-2xl);
}
.comparison-module__evidence {
  display: grid;
  margin-top: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: var(--border-subtle);
}
.comparison-module__evidence > div {
  padding: var(--space-2);
}
.comparison-module__evidence > div + div {
  border-left: var(--border-subtle);
  background: color-mix(in srgb, var(--color-primary) 36%, transparent);
}
.comparison-module__evidence span {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comparison-module__evidence p {
  margin: 0.45rem 0 0;
  font-size: var(--text-sm);
}
.why-layout__cta {
  grid-column: 1 / -1;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 0;
  border-radius: var(--radius-lg);
}

.process-section {
  overflow: hidden;
}
.process-section__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(var(--space-4), 7vw, var(--space-8));
  align-items: start;
}
.process-section__heading {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
}
.process-timeline {
  --process-progress: 0%;
  position: relative;
  margin: 0;
  padding: 0 0 var(--space-3);
  list-style: none;
}
.process-timeline::before,
.process-timeline::after {
  position: absolute;
  top: var(--space-4);
  bottom: var(--space-4);
  left: 50%;
  width: 1px;
  content: "";
}
.process-timeline::before {
  background: var(--color-border-strong);
}
.process-timeline::after {
  height: var(--process-progress);
  background: var(--color-accent);
  transition: height var(--duration-slow) var(--ease-standard);
}
.process-timeline .process-step,
.process-timeline .process-step:nth-child(odd),
.process-timeline .process-step:nth-child(even) {
  max-width: calc(50% - var(--space-5));
  margin: 0 0 var(--space-4);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.45;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}
.process-timeline .process-step:nth-child(odd) {
  margin-right: calc(50% + var(--space-5));
}
.process-timeline .process-step:nth-child(even) {
  margin-left: calc(50% + var(--space-5));
}
.process-timeline .process-step::before {
  top: 0.6rem;
}
.process-timeline .process-step.is-active {
  opacity: 1;
}
.process-step__marker {
  color: var(--color-accent) !important;
  font-size: var(--text-xs) !important;
  letter-spacing: 0.08em;
}
.process-step__content {
  padding: var(--space-3);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-level-1);
}
.process-step__content h3 {
  font-size: var(--text-xl);
}
.process-step__content p {
  font-size: var(--text-base);
}

.pricing-section {
  background: var(--surface-level-1);
}
.pricing-toolbar {
  padding: var(--space-2);
  border-block: var(--border-subtle);
}
.pricing-toolbar [data-currency-note] {
  flex: 1 1 100%;
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.segmented-control {
  padding: 0.25rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
}
.segmented-control button {
  min-height: 2.65rem;
  border-radius: var(--radius-xs);
  color: var(--color-text-body);
}
.segmented-control button[aria-pressed="true"] {
  background: var(--color-accent);
  color: var(--color-on-accent);
  box-shadow: none;
}
.pricing-grid {
  gap: var(--space-3);
  align-items: stretch;
}
.price-card {
  min-width: 0;
  padding: var(--space-3);
}
.price-card--featured {
  border-color: var(--color-accent);
  transform: translateY(-0.65rem);
}
.price-card--custom {
  background: color-mix(in srgb, var(--color-primary) 58%, var(--surface-level-1));
  border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
}
.price-card--custom h3 {
  color: var(--color-text-primary);
}
.price-card--custom .price-period {
  color: var(--color-text-body);
}
.price-card--custom .plan-suitable {
  color: var(--color-text-body);
}
.price-card--custom .plan-inclusions li {
  color: var(--color-text-body);
}
.price-card__label {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.price-card .price {
  margin-block: var(--space-2) 0.25rem;
  color: var(--color-text-primary);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-card--custom .price {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
}
.price-card--custom .button--secondary {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.price-card--custom .button--secondary:hover {
  background: var(--color-accent);
  color: var(--color-on-accent);
}

[data-theme="dark"] .price-card--custom {
  background: linear-gradient(145deg, rgba(27, 123, 120, 0.28) 0%, rgba(16, 47, 46, 0.6) 100%), #141c1b;
  border: 1px solid rgba(125, 207, 205, 0.38);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .price-card--custom h3,
[data-theme="dark"] .price-card--custom .price,
[data-theme="dark"] .price-card--custom .plan-suitable strong {
  color: #fdf0d5;
}
[data-theme="dark"] .price-card--custom .price-period,
[data-theme="dark"] .price-card--custom .plan-suitable,
[data-theme="dark"] .price-card--custom .plan-inclusions li {
  color: #d4cfc6;
}
[data-theme="dark"] .price-card--custom .button--secondary {
  border-color: #7dcfcd;
  color: #0a0a0a;
  background: #7dcfcd;
  font-weight: 750;
}
[data-theme="dark"] .price-card--custom .button--secondary:hover {
  border-color: #fdf0d5;
  background: #fdf0d5;
  color: #0a0a0a;
}
.price-card ul {
  padding-left: 1.2rem;
}
.price-card__details {
  margin: auto 0 var(--space-2);
  border-block: var(--border-subtle);
}
.price-card__details summary {
  min-height: 3rem;
  padding: 0.8rem 0 0.65rem;
  color: var(--color-accent);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
}
.price-card__details div {
  padding-bottom: var(--space-2);
}
.price-badge {
  border-radius: var(--radius-xs);
  background: var(--color-primary);
  color: var(--color-accent-strong);
}
.price-comparison {
  margin-top: var(--space-6);
  padding: clamp(var(--space-3), 5vw, var(--space-5));
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
}
.price-comparison__heading {
  display: grid;
  margin-bottom: var(--space-3);
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--space-3);
  align-items: end;
}
.price-comparison__heading h3 {
  margin: 0;
  font-size: var(--text-2xl);
}
.price-comparison__heading p {
  margin: 0;
}
.table-scroll {
  overflow-x: auto;
}
.price-comparison table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
}
.price-comparison th,
.price-comparison td {
  padding: 0.85rem;
  border-bottom: var(--border-subtle);
  color: var(--color-text-body);
  text-align: left;
}
.price-comparison th {
  color: var(--color-text-primary);
}

/* Dedicated pricing and guided calculator */
.pricing-page .page-hero h1 {
  max-width: 18ch;
}
.pricing-page .page-hero .button-row {
  margin-top: var(--space-3);
}
.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}
.pricing-controls__group {
  display: grid;
  gap: 0.35rem;
}
.pricing-controls__group > span {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-suitable {
  min-height: 10rem;
  margin: var(--space-2) 0 0;
  padding-top: var(--space-2);
  border-top: var(--border-subtle);
  font-size: var(--text-sm);
}
.plan-suitable strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-text-primary);
}
.plan-inclusions {
  flex: 1;
}
.plan-examples {
  margin: 0 0 var(--space-2);
  border-block: var(--border-subtle);
}
.plan-examples summary {
  min-height: 3rem;
  padding: 0.85rem 0 0.65rem;
  color: var(--color-accent);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
}
.plan-examples ul {
  margin-bottom: var(--space-2);
}

.plan-comparison {
  margin-top: var(--space-6);
}
.plan-comparison__heading {
  display: grid;
  max-width: 54rem;
  gap: 0.45rem;
}
.plan-comparison__heading h3 {
  margin: 0;
  font-size: var(--text-2xl);
}
.plan-comparison__heading p {
  margin: 0;
  font-size: var(--text-base);
}
.plan-comparison__scroll {
  margin-top: var(--space-3);
  overflow-x: auto;
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-level-1);
}
.plan-comparison table {
  width: 100%;
  min-width: 58rem;
  border-collapse: collapse;
}
.plan-comparison th,
.plan-comparison td {
  padding: 0.95rem 1rem;
  border-bottom: var(--border-subtle);
  color: var(--color-text-body);
  text-align: left;
  vertical-align: top;
}
.plan-comparison thead th {
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-comparison tbody th {
  width: 12rem;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
}
.plan-comparison td {
  font-size: var(--text-sm);
}
.plan-comparison tbody tr:last-child th,
.plan-comparison tbody tr:last-child td {
  border-bottom: 0;
}
.plan-comparison [data-plan-comparison-output] {
  display: block;
  color: var(--color-text-primary);
  font-size: var(--text-base);
}
.pricing-disclaimer {
  margin-top: var(--space-3);
  padding: var(--space-2);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}
.pricing-disclaimer p {
  margin: 0;
  font-size: var(--text-sm);
}

.calculator-shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  gap: var(--space-3);
  align-items: start;
}
.calculator-form {
  padding: clamp(var(--space-2), 3vw, var(--space-4));
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-level-1);
  box-shadow: none;
}
.calculator-progress {
  margin-bottom: var(--space-2);
  padding: var(--space-2);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}
.calculator-progress__summary {
  display: flex;
  margin: 0 0 0.7rem;
  justify-content: space-between;
  gap: var(--space-2);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: 600;
}
.calculator-progress__track {
  height: 0.32rem;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--color-border-strong);
}
.calculator-progress__bar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-accent);
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform var(--transition-base);
}
.calculator-progress__steps {
  display: grid;
  margin: 0.8rem 0 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
  list-style: none;
}
.calculator-progress__steps li {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 550;
  line-height: 1.25;
}
.calculator-progress__steps li[aria-current="step"] {
  color: var(--color-accent);
}
.calculator-wizard-status {
  min-height: 1.35rem;
  margin: 0 0 var(--space-1);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.calculator-step {
  overflow: hidden;
  padding: 0;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-level-1);
}
.calculator-step + .calculator-step {
  margin-top: var(--space-1);
  padding-top: 0;
  border-top: var(--border-subtle);
}
.calculator-step:last-of-type {
  border-bottom: var(--border-subtle);
}
.calculator-step > h3 {
  margin: 0;
  font-size: var(--text-lg);
}
.calculator-step__toggle {
  display: flex;
  width: 100%;
  min-height: 3.6rem;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  border: 0;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 580;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: none;
}
.calculator-step__toggle::after {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: var(--border-subtle);
  border-radius: var(--radius-round);
  color: var(--color-accent);
  content: "+";
  font-size: var(--text-lg);
  line-height: 1;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base);
}
.calculator-step__toggle[aria-expanded="true"] {
  background: var(--color-surface-alt);
}
.calculator-step__toggle[aria-expanded="true"]::after {
  content: "+";
  background: var(--color-primary);
  transform: rotate(45deg);
}
.calculator-step__panel {
  padding: var(--space-2);
  animation: calculator-panel-in var(--duration-slow) var(--ease-standard);
}
.calculator-step__panel > p {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}
.calculator-step__panel[hidden] {
  display: none;
}
.calculator-step__navigation {
  display: flex;
  margin-top: var(--space-2);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-1);
}
.calculator-step__navigation .button:only-child {
  margin-left: auto;
}
@keyframes calculator-panel-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.calculator-stage-label {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calculator-completion-step {
  margin-top: var(--space-2);
  padding: var(--space-2);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}
.calculator-completion-step h3 {
  margin-bottom: 0.4rem;
  font-size: var(--text-lg);
}
.calculator-completion-step > p {
  margin-bottom: var(--space-1);
  font-size: var(--text-sm);
}
.calculator-completion-step[data-step-current="false"] {
  display: none;
}
.calculator-completion-step[data-step-current="true"],
.estimate-panel[data-step-current="true"] {
  border-color: var(--color-accent);
}

.service-toggle-list {
  gap: var(--space-1);
}
.service-toggle {
  min-height: 4.5rem;
  padding: 0.9rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-0);
}
.service-toggle:has(input:checked) {
  border-color: var(--color-accent);
  background: var(--color-primary);
}
.service-toggle input {
  width: 1.25rem;
  min-height: 1.25rem;
  accent-color: var(--color-accent);
}
.service-toggle__text {
  display: grid;
}
.service-toggle__text strong {
  color: var(--color-text-primary);
  font-size: var(--text-sm);
}
.service-toggle__text small {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
.service-config {
  margin-top: var(--space-2);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-level-0);
}
.service-config summary {
  min-height: 3.6rem;
  padding: 1rem;
  color: var(--color-text-primary);
  font-weight: 600;
}
.service-config summary span {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 450;
}
.service-config__body {
  padding: 0 var(--space-2) var(--space-2);
  gap: var(--space-2);
}
.service-config__note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
  font-size: var(--text-xs);
}
.conditional-fields {
  display: contents;
}
.check-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-1);
}
.check-grid .checkbox-row {
  min-height: 3.4rem;
  padding: 0.75rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
}
.check-grid label {
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: 550;
}

.estimate-panel {
  top: calc(var(--header-height) + var(--space-3));
  padding: clamp(var(--space-2), 3vw, var(--space-3));
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  background: var(--surface-level-2);
  box-shadow: none;
}
.estimate-panel__header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-1);
  align-items: flex-start;
}
.estimate-panel__header p {
  margin: 0;
  font-size: var(--text-xs);
}
.estimate-panel h3 {
  font-size: var(--text-xl);
}
.estimate-service {
  margin-top: var(--space-1);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
}
.estimate-service summary {
  display: flex;
  padding: 0.8rem;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
}
.estimate-service summary strong {
  color: var(--color-accent);
  text-align: right;
}
.estimate-service__body {
  padding: 0 0.8rem 0.8rem;
}
.estimate-service__details {
  margin: 0 0 0.65rem;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
.estimate-service .estimate-line {
  font-size: var(--text-xs);
}
.estimate-review {
  margin: 0.7rem 0 0;
  padding: 0.65rem;
  border-left: 3px solid var(--color-warning);
  background: color-mix(
    in srgb,
    var(--color-warning) 7%,
    var(--surface-level-1)
  );
  font-size: var(--text-xs);
}
.estimate-summary {
  margin-top: var(--space-2);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}
.estimate-summary.is-updating {
  opacity: 0.45;
  transform: translateY(0.2rem);
}
.estimate-tax-note {
  margin: 0.7rem 0 0;
  font-size: var(--text-xs);
}
.estimate-outlay {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--color-border-strong);
}
.coupon-label {
  display: block;
  margin-top: var(--space-2);
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}
.coupon-label + .coupon-row {
  margin-top: 0.4rem;
}
.calculator-actions-status {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
.calculator-explanation-grid {
  gap: var(--space-2);
}
.calculator-explanation-grid .reason-card {
  padding: var(--space-3);
}
.pricing-notice {
  margin-top: var(--space-3);
}

.delivery-map {
  min-height: 39rem;
  overflow: hidden;
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--color-anchor-bg);
  box-shadow: none;
}
.delivery-map::before,
.delivery-map::after {
  display: none;
}
.delivery-map__world {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.delivery-map__continents path {
  fill: color-mix(in srgb, var(--color-anchor-text) 8%, transparent);
  stroke: color-mix(in srgb, var(--color-anchor-text) 26%, transparent);
  stroke-width: 1.2;
}
.delivery-map__paths path {
  fill: none;
  stroke: color-mix(in srgb, var(--color-primary-deep) 68%, transparent);
  stroke-dasharray: 8 10;
  stroke-width: 1.4;
  animation: map-path 18s linear infinite;
}
.delivery-map__origin circle {
  fill: none;
  stroke: var(--color-primary-deep);
}
.delivery-map__origin circle:first-child {
  fill: var(--color-primary-deep);
  stroke: var(--color-anchor-bg);
  stroke-width: 3;
}
.delivery-map__origin circle:nth-child(2) {
  animation: map-pulse 2.8s ease-out infinite;
}
.delivery-map__origin circle:nth-child(3) {
  animation: map-pulse 2.8s 1.1s ease-out infinite;
}
.delivery-map__legend {
  position: absolute;
  z-index: 3;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-anchor-text);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.delivery-map__legend span {
  width: 0.65rem;
  aspect-ratio: 1;
  border-radius: var(--radius-round);
  background: var(--color-primary-deep);
  box-shadow: 0 0 0 5px
    color-mix(in srgb, var(--color-primary-deep) 17%, transparent);
}
.delivery-map .map-region {
  border-color: color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  background: color-mix(in srgb, var(--color-anchor-bg) 82%, transparent);
  color: var(--color-anchor-text);
  box-shadow: none;
}
.delivery-map .map-region::before {
  border-color: var(--color-anchor-bg);
}
.delivery-map .map-region:hover,
.delivery-map .map-region:focus-visible,
.delivery-map .map-region[aria-pressed="true"] {
  border-color: var(--color-primary-deep);
  color: var(--color-anchor-text);
  box-shadow: var(--glow-active);
}
.delivery-map .map-tooltip {
  border-color: color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  background: var(--surface-level-3);
  box-shadow: none;
}
.map-tooltip__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.global-delivery__notice {
  margin: var(--space-3) 0 0;
}
.global-delivery__actions {
  margin-top: var(--space-3);
}
@keyframes map-path {
  to {
    stroke-dashoffset: -260;
  }
}
@keyframes map-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.7);
    transform-origin: 720px 285px;
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
    transform-origin: 720px 285px;
  }
}

.authority-quote-section {
  background: var(--color-anchor-bg);
}
.authority-quote-section .quote-banner {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.quote-banner__inner {
  position: relative;
  min-height: 42rem;
  display: flex;
  padding-block: var(--space-8);
  justify-content: center;
  flex-direction: column;
}
.quote-banner__mark {
  position: absolute;
  top: var(--space-4);
  left: var(--container-padding);
  color: color-mix(in srgb, var(--color-anchor-text) 12%, transparent);
  font-size: clamp(10rem, 24vw, 25rem);
  line-height: 1;
}
.authority-quote-section blockquote {
  position: relative;
  max-width: 19ch;
  margin: 0 0 var(--space-3);
  color: var(--color-anchor-text);
  font-size: var(--text-4xl);
  font-weight: 420;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.authority-quote-section p {
  max-width: 47rem;
  color: color-mix(in srgb, var(--color-anchor-text) 70%, transparent);
  font-size: var(--text-lg);
}
.quote-banner__line {
  width: min(24rem, 50vw);
  height: 1px;
  margin: var(--space-3) 0;
  background: var(--color-primary-deep);
  transform-origin: left;
}
.authority-quote-section .button--secondary,
.tagline-panel .button--secondary,
.quote-banner .button--secondary {
  border-color: var(--color-anchor-text);
  background: transparent;
  color: var(--color-anchor-text);
}

.authority-quote-section .button--secondary::before,
.tagline-panel .button--secondary::before,
.quote-banner .button--secondary::before {
  background: var(--color-anchor-text);
}

.authority-quote-section .button--secondary:hover,
.tagline-panel .button--secondary:hover,
.quote-banner .button--secondary:hover {
  border-color: var(--color-anchor-text);
  background: var(--color-anchor-text);
  color: var(--color-anchor-bg);
  box-shadow: var(--shadow-sm);
}

.quote-banner__call,
.authority-quote-section .button--ghost,
.tagline-panel .button--ghost,
.quote-banner .button--ghost {
  border: 1px solid color-mix(in srgb, var(--color-anchor-text) 50%, transparent);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-anchor-text);
}

.quote-banner__call::before,
.authority-quote-section .button--ghost::before,
.tagline-panel .button--ghost::before,
.quote-banner .button--ghost::before {
  display: none;
}

.quote-banner__call:hover,
.authority-quote-section .button--ghost:hover,
.tagline-panel .button--ghost:hover,
.quote-banner .button--ghost:hover {
  border-color: var(--color-anchor-text);
  background: color-mix(in srgb, var(--color-anchor-text) 16%, transparent);
  color: var(--color-anchor-text);
  box-shadow: none;
}

.testimonials-section {
  overflow: hidden;
}
.feedback-standard-card {
  display: flex;
  min-width: 0;
  min-height: 18rem;
  height: 100%;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  flex-direction: column;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: linear-gradient(
    160deg,
    var(--surface-level-1),
    var(--color-surface-alt)
  );
}
.feedback-standard-card__index {
  display: inline-grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid
    color-mix(in srgb, var(--color-accent) 38%, var(--color-border));
  border-radius: var(--radius-round);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 650;
}
.feedback-standard-card h3 {
  max-width: 18ch;
  margin: auto 0 0.7rem;
  font-size: var(--text-xl);
}
.feedback-standard-card p {
  margin: 0;
  color: var(--color-text-body);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.testimonial-marquees {
  display: grid;
  gap: var(--space-3);
}
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  outline-offset: -4px;
}
.testimonial-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.testimonial-marquee__group,
[data-marquee-clone] {
  display: flex;
  flex: none;
  gap: var(--space-3);
  padding-right: var(--space-3);
}
.testimonial-marquee--forward .testimonial-marquee__track {
  animation: testimonial-left 58s linear infinite;
}
.testimonial-marquee--reverse .testimonial-marquee__track {
  animation: testimonial-right 64s linear infinite;
  transform: translateX(-50%);
}
.testimonial-marquee.is-paused .testimonial-marquee__track,
.testimonial-marquee:hover .testimonial-marquee__track,
.testimonial-marquee:focus-within .testimonial-marquee__track {
  animation-play-state: paused;
}
.testimonial-marquee .testimonial-card {
  width: min(31rem, 76vw);
  min-height: 22rem;
  padding: var(--space-3);
}
.testimonial-card__top {
  display: flex;
  margin-bottom: var(--space-3);
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
}
.testimonial-avatar {
  display: grid;
  width: 3.25rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: var(--radius-round);
  background: var(--color-primary);
  color: var(--color-accent-strong);
  font-size: var(--text-sm);
  font-weight: 650;
}
.testimonial-card blockquote {
  margin: 0;
}
.testimonial-card blockquote p {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  line-height: 1.55;
}
.testimonial-meta {
  display: grid;
  margin-top: auto;
  gap: 0.18rem;
}
.testimonial-meta h3 {
  margin: 0;
  font-size: var(--text-lg);
}
.testimonial-meta span {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}
.testimonial-mobile-wrap {
  display: none;
}
.testimonials-section__policy {
  margin-top: var(--space-3);
}
@keyframes testimonial-left {
  to {
    transform: translateX(-50%);
  }
}
@keyframes testimonial-right {
  to {
    transform: translateX(0);
  }
}

.enquiry-section {
  background: var(--color-surface-alt);
}
.enquiry-section .enquiry-card > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
  align-self: start;
}
.form-status.is-success {
  padding: var(--space-2);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-sm);
  color: var(--color-success);
}
.form-status.is-success::before {
  display: inline-grid;
  width: 1.3rem;
  aspect-ratio: 1;
  margin-right: 0.5rem;
  place-items: center;
  border-radius: var(--radius-round);
  background: var(--color-success);
  color: var(--color-on-accent);
  content: "✓";
}
.button.is-loading {
  cursor: wait;
  opacity: 0.72;
}
.button.is-loading::after {
  width: 0.9rem;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: var(--radius-round);
  content: "";
  animation: button-spin 650ms linear infinite;
}
@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Service pages use one editorial system with section-specific rhythm. */
.page--service .service-hero,
.page--services-overview .service-hero {
  min-height: min(54rem, calc(100svh - var(--header-height)));
  display: grid;
  overflow: hidden;
  align-items: center;
}

.service-hero::after {
  display: none;
}
.service-hero__inner {
  position: relative;
}
.service-hero__inner > .breadcrumbs {
  margin-bottom: clamp(var(--space-4), 6vw, var(--space-6));
}
.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.72fr);
  gap: clamp(var(--space-4), 8vw, var(--space-8));
  align-items: center;
}
.service-hero__copy h1 {
  max-width: 14ch;
}
.service-hero__copy > p {
  max-width: 43rem;
}
.service-hero__copy .hero-meta {
  margin-top: var(--space-3);
}

.service-hero__visual {
  position: relative;
  isolation: isolate;
  min-height: 34rem;
  overflow: hidden;
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at center,
      color-mix(in srgb, var(--color-primary) 46%, transparent),
      transparent 29%
    ),
    color-mix(in srgb, var(--surface-level-1) 78%, transparent);
  box-shadow: var(--shadow-lg);
}
.service-hero__visual::before,
.service-hero__visual::after {
  position: absolute;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--color-accent) 19%, transparent);
  border-radius: var(--radius-round);
  content: "";
}
.service-hero__visual::before {
  inset: 12%;
}
.service-hero__visual::after {
  inset: 28%;
  border-style: dashed;
}
.service-hero__core,
.service-hero__node {
  position: absolute;
  display: grid;
  place-items: center;
  border: var(--border-subtle);
  background: color-mix(in srgb, var(--surface-level-1) 88%, transparent);
  color: var(--color-text-primary);
  text-align: center;
  backdrop-filter: blur(10px);
}
.service-hero__core {
  top: 50%;
  left: 50%;
  width: 11rem;
  aspect-ratio: 1;
  padding: var(--space-2);
  border-color: var(--color-accent);
  border-radius: var(--radius-round);
  color: var(--color-accent-strong);
  font-size: var(--text-lg);
  font-weight: 620;
  transform: translate(-50%, -50%);
}
.service-hero__node {
  min-width: 8rem;
  min-height: 3.35rem;
  padding: 0.75rem 0.9rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-hero__node:nth-of-type(2) {
  top: 11%;
  left: 9%;
}
.service-hero__node:nth-of-type(3) {
  top: 14%;
  right: 8%;
}
.service-hero__node:nth-of-type(4) {
  right: 8%;
  bottom: 12%;
}
.service-hero__node:nth-of-type(5) {
  bottom: 10%;
  left: 9%;
}
[data-visual-theme="business-website"] .service-hero__core,
[data-visual-theme="website-systems"] .service-hero__core,
[data-visual-theme="connected-growth"] .service-hero__core {
  border-radius: var(--radius-md);
}
[data-visual-theme="brand-system"]::before,
[data-visual-theme="visual-communication"]::before {
  border-radius: 34% 66% 51% 49% / 46% 36% 64% 54%;
}
[data-visual-theme="paid-media"]::after,
[data-visual-theme="paid-performance"]::after,
[data-visual-theme="social-communication"]::after,
[data-visual-theme="social-system"]::after {
  border-style: solid;
  transform: rotate(18deg);
}
[data-visual-theme="service-readiness"] .service-hero__core {
  border-style: dashed;
}

.button-row--center {
  justify-content: center;
}
.button-row--spaced {
  margin-top: var(--space-3);
}

/* Service overview bento and factual deliverables. */
.page--services-overview .services-overview-page > .section {
  background: var(--surface-level-0);
}
.page--services-overview .service-bento .service-card {
  min-height: 29rem;
}
.page--services-overview .service-bento .service-card--large {
  grid-column: span 6;
  min-height: 35rem;
}
.page--services-overview .service-bento .service-card--medium {
  grid-column: span 3;
}
.page--services-overview .service-bento .service-card--wide {
  grid-column: 1 / -1;
  min-height: 22rem;
}
.page--services-overview .service-card h3 {
  max-width: 17ch;
  font-size: var(--text-2xl);
}
.page--services-overview .service-card--large h3 {
  font-size: var(--text-3xl);
}
.page--services-overview .service-card .benefit {
  color: var(--color-accent);
  font-weight: 560;
}
.page--services-overview .service-card .text-link {
  margin-top: auto;
}
.page--services-overview .service-card--future {
  background: var(--color-anchor-bg);
}
.page--services-overview .service-card--future h3,
.page--services-overview .service-card--future .service-mark,
.page--services-overview .service-card--future .text-link {
  color: var(--color-anchor-text);
}
.page--services-overview .service-card--future p,
.page--services-overview .service-card--future li {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}
.page--services-overview .service-card--future .service-mark {
  border-color: color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  background: transparent;
}
.page--services-overview .service-card--future .service-card__deliverables li {
  border-color: color-mix(in srgb, var(--color-anchor-text) 15%, transparent);
}

/* About page has its own editorial hierarchy. */
.page--about .about-hero {
  min-height: min(49rem, calc(100svh - var(--header-height)));
  display: grid;
  align-items: end;
  background:
    linear-gradient(105deg, var(--surface-level-0) 0 53%, transparent 76%),
    radial-gradient(
      circle at 82% 42%,
      color-mix(in srgb, var(--color-primary) 74%, transparent),
      transparent 30rem
    ),
    var(--surface-level-0);
}
.page--about .about-hero::after {
  right: 7%;
  opacity: 0.72;
}
.about-hero__inner > p {
  max-width: 49rem;
}
.about-layers {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.about-layers .reason-card {
  grid-column: span 6;
  min-height: 19rem;
}
.about-layers .reason-card:last-child {
  grid-column: 1 / -1;
  min-height: 15rem;
}
.about-story-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}
.about-story-grid .story-card {
  min-height: 24rem;
  display: flex;
  padding: var(--space-4);
  justify-content: end;
  flex-direction: column;
}
.about-story-grid .story-card:first-child {
  background: var(--color-anchor-bg);
}
.about-story-grid .story-card:first-child h3 {
  color: var(--color-anchor-text);
}
.about-story-grid .story-card:first-child p {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}
.about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-values .reason-card {
  min-height: 17rem;
}

.page--service #why-now .fact-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: var(--border-subtle);
}
.page--service #why-now .fact {
  padding: var(--space-3);
  border: 0;
  border-right: var(--border-subtle);
  border-radius: 0;
  background: transparent;
}
.page--service #why-now .fact:last-child {
  border-right: 0;
}

.page--service #outdated-practices {
  background: var(--color-anchor-bg);
}
.page--service #outdated-practices h2,
.page--service #outdated-practices h3 {
  color: var(--color-anchor-text);
}
.page--service #outdated-practices p,
.page--service #outdated-practices li {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}
.page--service #outdated-practices .sticky-aside {
  background: color-mix(in srgb, var(--color-anchor-text) 5%, transparent);
  border-color: color-mix(in srgb, var(--color-anchor-text) 14%, transparent);
}

.page--service #current-requirements .measurement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-block: var(--border-subtle);
  counter-reset: requirement;
}
.page--service #current-requirements .measurement-list li {
  display: grid;
  padding: var(--space-3);
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  align-items: baseline;
  border: 0;
  border-bottom: var(--border-subtle);
  border-radius: 0;
  background: transparent;
  counter-increment: requirement;
  font-size: var(--text-base);
}
.page--service #current-requirements .measurement-list li::before {
  color: var(--color-accent);
  content: counter(requirement, decimal-leading-zero);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

.page--service #service-includes .card-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.page--service #service-includes .reason-card {
  grid-column: span 4;
  min-height: 17rem;
  padding: var(--space-3);
}
.page--service #service-includes .reason-card:nth-child(5n + 1),
.page--service #service-includes .reason-card:nth-child(5n + 2) {
  grid-column: span 6;
}

.page--service #ai-adaptation {
  background: var(--color-primary);
}
.page--service #ai-adaptation .feature-panel {
  background: color-mix(in srgb, var(--color-surface) 64%, transparent);
}

.page--service #stories .story-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: stretch;
}
.page--service #stories .story-card {
  padding: clamp(var(--space-3), 4vw, var(--space-5));
}
.page--service #stories .story-card:first-child {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--color-anchor-bg);
}
.page--service #stories .story-card:first-child h3 {
  color: var(--color-anchor-text);
}
.page--service #stories .story-card:first-child p {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}

.page--service #measurement {
  background: var(--color-anchor-bg);
}
.page--service #measurement h2,
.page--service #measurement h3 {
  color: var(--color-anchor-text);
}
.page--service #measurement p,
.page--service #measurement li {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}
.page--service #measurement .measurement-list li {
  border-color: color-mix(in srgb, var(--color-anchor-text) 14%, transparent);
  background: color-mix(in srgb, var(--color-anchor-text) 5%, transparent);
}

/* Large editorial accordions */
.faq-layout,
.page--service #faqs .container--narrow {
  display: grid;
  width: 100%;
  max-width: var(--container);
  grid-template-columns: minmax(16rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(var(--space-4), 7vw, var(--space-8));
  align-items: start;
}
.faq-layout__intro,
.faq-layout > .section-heading,
.page--service #faqs .section-heading {
  position: sticky;
  top: calc(var(--header-height) + var(--space-3));
  margin-bottom: 0;
}
.faq-list {
  gap: 0;
  border-top: var(--border-strong);
}
.faq-item {
  border: 0;
  border-bottom: var(--border-subtle);
  border-radius: 0;
  background: transparent;
}
.faq-question {
  min-height: 5.25rem;
  padding: var(--space-3) 0;
  align-items: center;
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  font-weight: 520;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-question::after {
  display: grid;
  flex: 0 0 2.4rem;
  aspect-ratio: 1;
  place-items: center;
  border: var(--border-subtle);
  border-radius: var(--radius-round);
  color: var(--color-accent);
  content: "+";
  font-size: var(--text-xl);
  transition:
    transform var(--transition-base),
    background-color var(--transition-base);
}
.faq-question[aria-expanded="true"]::after {
  content: "+";
  background: var(--color-primary);
  transform: rotate(45deg);
}
.faq-answer {
  opacity: 0;
  transform: translateY(-0.4rem);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}
.faq-answer.is-open {
  opacity: 1;
  transform: none;
}
.faq-answer > div {
  max-width: var(--content-reading);
  padding: 0 3.2rem var(--space-3) 0;
}

/* Editorial blog listing */
.blog-hero {
  min-height: 41rem;
  display: grid;
  align-items: end;
}
.blog-hero h1 {
  max-width: 14ch;
  font-size: var(--text-4xl);
}
.blog-hero__index {
  display: flex;
  margin-top: var(--space-4);
  flex-wrap: wrap;
  gap: 0;
  border-block: var(--border-subtle);
}
.blog-hero__index span {
  padding: 0.8rem var(--space-3) 0.65rem 0;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-hero__index span + span::before {
  margin-right: var(--space-3);
  color: var(--color-primary-deep);
  content: "•";
}

.featured-editorial .section-heading {
  max-width: 47rem;
}
.featured-article-card {
  display: grid;
  min-height: 34rem;
  overflow: hidden;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--surface-level-1);
}
.featured-article-card__visual {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: var(--space-4);
  place-content: center;
  background: var(--color-anchor-bg);
}
.featured-article-card__visual::before,
.featured-article-card__visual::after {
  position: absolute;
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 20%, transparent);
  border-radius: var(--radius-round);
  content: "";
}
.featured-article-card__visual::before {
  width: 19rem;
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.featured-article-card__visual::after {
  width: 11rem;
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  background: color-mix(in srgb, var(--color-anchor-text) 4%, transparent);
  transform: translate(-50%, -50%);
}
.featured-article-card__visual span {
  position: relative;
  z-index: 1;
  margin: 0.3rem;
  padding: 0.55rem 0.75rem 0.4rem;
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 20%, transparent);
  border-radius: var(--radius-sm);
  color: var(--color-anchor-text);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.featured-article-card__copy {
  display: flex;
  padding: clamp(var(--space-4), 6vw, var(--space-7));
  flex-direction: column;
  justify-content: center;
}
.featured-article-card__copy h3 {
  max-width: 20ch;
  font-size: var(--text-3xl);
  line-height: 1.08;
}
.featured-article-card__copy p {
  max-width: 46rem;
  font-size: var(--text-lg);
}
.featured-article-card__copy .text-link {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.filter-bar {
  padding: var(--space-3);
  grid-template-columns: minmax(16rem, 1.2fr) minmax(12rem, 0.8fr) minmax(
      10rem,
      0.55fr
    );
  gap: var(--space-2);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-level-1);
}
.filter-bar .field span {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}
.results-count {
  margin: var(--space-3) 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.page--blog .article-grid {
  gap: var(--space-3);
}
.page--blog .article-card {
  padding: var(--space-3);
}
.page--blog .article-banner {
  min-height: 14rem;
  margin: calc(var(--space-3) * -1) calc(var(--space-3) * -1) var(--space-3);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.page--blog .article-card h3 {
  font-size: var(--text-xl);
}
.page--blog .article-card__meta {
  gap: 0.65rem;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
}
.page--blog .article-card small {
  color: var(--color-text-muted);
}
.page--blog .article-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}
.blog-categories {
  background: var(--surface-level-1);
}
.blog-categories .button-row {
  gap: 0.65rem;
}
.blog-categories [data-category-link].is-active {
  background: var(--color-primary);
  color: var(--color-accent-strong);
}
.newsletter-panel {
  padding: clamp(var(--space-3), 5vw, var(--space-5));
}
.newsletter-panel__button {
  margin-top: var(--space-2);
}
.editor-selected .story-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
}
.editor-selected .story-card {
  min-height: 23rem;
  padding: clamp(var(--space-3), 4vw, var(--space-5));
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.statement-actions {
  margin-top: var(--space-3);
}
.tagline-panel .button--ghost {
  color: var(--color-anchor-text);
}

/* Article reading experience */
.article-header {
  padding-block: clamp(var(--space-6), 9vw, var(--space-8));
  background:
    linear-gradient(
      114deg,
      color-mix(in srgb, var(--color-primary) 48%, transparent),
      transparent 58%
    ),
    var(--surface-level-0);
}
.article-header h1 {
  max-width: 16ch;
  font-size: var(--text-4xl);
}
.article-standfirst {
  max-width: 54rem;
  font-size: var(--text-lg);
}
.article-layout {
  grid-template-columns: minmax(0, var(--content-reading)) minmax(16rem, 19rem);
  justify-content: center;
}
.article-layout > .sticky-aside {
  grid-column: 2;
}
.summary-table-wrap {
  border: var(--border-subtle);
  border-radius: var(--radius-md);
}
.share-controls {
  align-items: center;
}
.share-controls__label {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.share-controls__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 78rem) {
  .page--article .share-controls {
    position: fixed;
    z-index: var(--z-sticky);
    top: 50%;
    left: var(--space-2);
    width: 7.5rem;
    margin: 0;
    padding: var(--space-2) 0.65rem;
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--surface-level-1) 88%, transparent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
  }
  .page--article .share-controls__label {
    width: 100%;
    text-align: center;
  }
  .page--article .share-controls__items {
    width: 100%;
    flex-direction: column;
  }
  .page--article .share-controls__items > * {
    width: 100%;
    justify-content: center;
  }
}

/* Forms and inputs */
.field {
  position: relative;
  gap: 0.45rem;
}
.field label,
.field legend {
  color: var(--color-text-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.filter-bar input,
.filter-bar select,
.coupon-row input {
  min-height: 3rem;
  padding: 1rem 0.95rem 0.78rem;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-level-1);
  color: var(--color-text-primary);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.coupon-row input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--color-primary) 52%, transparent);
  outline: 0;
}

::placeholder {
  color: var(--color-text-muted);
  opacity: 0.82;
}
[data-theme="dark"] ::placeholder {
  opacity: 0.9;
}
.field-error {
  color: var(--color-error);
  font-size: var(--text-xs);
  transform-origin: top;
}
[aria-invalid="true"] {
  border-color: var(--color-error) !important;
}
[aria-invalid="false"]:not(:placeholder-shown) {
  border-color: var(--color-success);
}
.checkbox-row input {
  min-width: 1.25rem;
  min-height: 1.25rem;
  accent-color: var(--color-accent);
}

.enquiry-card {
  padding: clamp(var(--space-3), 5vw, var(--space-6));
  gap: clamp(var(--space-4), 7vw, var(--space-7));
  border: var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--surface-level-1);
  box-shadow: none;
}

.form-progress {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(var(--form-steps, 3), 1fr);
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}
.form-progress__segment {
  height: 3px;
  border: 0;
  background: var(--color-border-strong);
}
.form-progress__segment.is-active {
  background: var(--color-accent);
}
.form-step {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}
.form-step.is-active {
  display: grid;
  animation: form-step-in var(--duration-slow) var(--ease-standard) both;
}
.form-step__heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: var(--text-xl);
}
.form-navigation {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: var(--space-2);
}

/* Editorial workspace uses the same token system without exposing public content. */
.page--admin [data-admin-workspace] .pricing-toolbar {
  flex-wrap: wrap;
}
.admin-toolbar__heading {
  margin-bottom: 0;
}
.service-config__body--flush {
  padding: 0;
}
.editor-block-heading {
  margin-bottom: 0.25rem;
}
.editor-block-intro {
  margin: 0;
}
.editor-block-list {
  display: grid;
  gap: 0.75rem;
  margin-top: var(--space-2);
}
.editor-revision-field {
  margin-top: var(--space-2);
}

@keyframes form-step-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Restrained pointer-only motion */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .reason-card:hover,
  .story-card:hover,
  .article-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
  }
  .service-card:hover::before,
  .reason-card:hover::before,
  .article-card:hover::before {
    transform: scaleY(1);
  }
  [data-theme="dark"] .button:hover {
    box-shadow: var(--glow-active);
  }
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
.js [data-reveal] {
  opacity: 0;
  transform: translateY(2.25rem);
  transition:
    opacity var(--duration-reveal) var(--ease-standard),
    transform var(--duration-reveal) var(--ease-standard);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-group] > [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}
[data-reveal-group] > [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}
[data-reveal-group] > [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 90rem) and (min-width: 80.001rem) {
  .nav-list a {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.025em;
  }
  .nav-list a::after {
    right: 0.25rem;
    left: 0.25rem;
  }
  .header-actions {
    gap: 0.35rem;
  }
  .header-actions .button {
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    font-size: 0.68rem;
  }
  .theme-control {
    padding-left: 0.4rem;
  }
  .theme-select {
    max-width: 5.8rem;
    padding-right: 1.15rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 80rem) {
  .desktop-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .header-actions .button,
  .header-actions .theme-select {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 73rem) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-destination {
    grid-template-columns: 1fr;
  }
  .hero-grid--primary {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
  }
  .services-bento .service-card--medium {
    grid-column: span 6;
  }
  .page--services-overview .service-bento .service-card--medium {
    grid-column: span 6;
  }
}

@media (max-width: 62rem) {
  .page-hero::after {
    opacity: 0.42;
  }
  .hero--primary {
    min-height: auto;
  }
  .hero-grid--primary,
  .connected-growth__layout {
    grid-template-columns: 1fr;
  }
  .hero-copy--primary h1 {
    max-width: 11ch;
  }
  .growth-system-visual {
    min-height: 37rem;
  }
  .connected-growth {
    clip-path: polygon(0 2rem, 100% 0, 100% calc(100% - 2rem), 0 100%);
  }
  .connected-growth__copy h2 {
    max-width: 16ch;
  }
  .about-editorial__layout {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }
  .listen-system {
    position: relative;
    top: auto;
    grid-column: 2;
  }
  .services-bento .service-card--feature {
    grid-column: 1 / -1;
  }
  .why-layout,
  .process-section__layout {
    grid-template-columns: 1fr;
  }
  .why-layout__intro,
  .process-section__heading {
    position: static;
  }
  .process-timeline {
    max-width: 45rem;
  }
  .price-comparison__heading {
    grid-template-columns: 1fr;
  }
  .testimonial-marquees--desktop {
    display: none;
  }
  .testimonial-mobile-wrap {
    display: block;
  }
  .page--service .page-hero {
    min-height: auto;
  }
  .service-hero__grid {
    grid-template-columns: 1fr;
  }
  .service-hero__copy h1 {
    max-width: 16ch;
  }
  .service-hero__visual {
    min-height: 30rem;
  }
  .page--service .page-hero::after {
    display: none;
  }
  .about-layers .reason-card,
  .about-layers .reason-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page--service #why-now .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page--service #why-now .fact:nth-child(2n) {
    border-right: 0;
  }
  .page--service #why-now .fact:nth-child(n + 3) {
    border-top: var(--border-subtle);
  }
  .page--service #service-includes .reason-card,
  .page--service #service-includes .reason-card:nth-child(5n + 1),
  .page--service #service-includes .reason-card:nth-child(5n + 2) {
    grid-column: span 6;
  }
  .process-step,
  .process-step:nth-child(even),
  .process-step:nth-child(odd) {
    max-width: none;
    margin-right: 0;
    margin-left: var(--space-5);
  }
  .process-grid::before {
    left: 0.35rem;
  }
  .process-step:nth-child(even)::before,
  .process-step:nth-child(odd)::before {
    right: auto;
    left: calc((var(--space-5) * -1) - 0.08rem);
  }
  .comparison-panel + .comparison-panel {
    border-top: var(--border-subtle);
    border-left: 0;
  }
  .faq-layout,
  .page--service #faqs .container--narrow {
    grid-template-columns: 1fr;
  }
  .faq-layout__intro,
  .faq-layout > .section-heading,
  .page--service #faqs .section-heading {
    position: static;
    margin-bottom: var(--space-3);
  }
  .featured-article-card {
    grid-template-columns: 1fr;
  }
  .featured-article-card__visual {
    min-height: 19rem;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-layout > .sticky-aside {
    display: none;
  }
  .calculator-shell {
    grid-template-columns: 1fr;
  }
  .estimate-panel {
    position: static;
  }
  .calculator-explanation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plan-suitable {
    min-height: auto;
  }
  .footer-destination {
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 45rem) {
  :root {
    --header-height: 4.8rem;
    --container-padding: 1.25rem;
  }
  body {
    background-attachment: scroll;
  }
  h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }
  h2 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }
  .section {
    padding-block: clamp(var(--space-5), 14vw, var(--space-6));
  }
  .container,
  .container--narrow {
    width: 100%;
    padding-inline: var(--container-padding);
  }
  .page--about .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
  .page--about .two-column > *,
  .page--about .about-story {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .page--about .about-story :where(p, blockquote) {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .page--about .about-story blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.1rem;
  }
  .page--pricing .price-card[data-plan="custom"] .price {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.8vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .header-inner {
    padding-inline: var(--container-padding);
  }
  .brand-mark {
    width: 2.4rem;
  }
  .mobile-drawer__panel {
    width: 100%;
  }
  .mobile-nav a {
    padding-block: 0.72rem;
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-destination {
    gap: var(--space-5);
  }
  .newsletter-preview {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    gap: var(--space-3);
  }
  .footer-utilities {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .site-footer .theme-control,
  .back-to-top {
    width: 100%;
  }
  .tagline-panel {
    border-radius: var(--radius-lg);
  }
  .hero--primary {
    padding-top: var(--space-4);
  }
  .hero-copy--primary h1 {
    max-width: none;
    font-size: clamp(3.1rem, 16vw, 5rem);
  }
  .growth-system-visual {
    display: grid;
    min-height: 0;
    padding: var(--space-2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-1);
    border-radius: var(--radius-lg);
  }
  .growth-system-visual::before,
  .growth-system-visual::after,
  .growth-system-visual__paths {
    display: none;
  }
  .growth-system-visual__core {
    position: static;
    width: auto;
    min-height: 8rem;
    grid-column: 1 / -1;
    aspect-ratio: auto;
    border-radius: var(--radius-md);
    transform: none;
  }
  .growth-system-visual .growth-system-visual__module {
    position: static;
    min-width: 0;
    animation: none;
  }
  .connected-growth {
    padding-block: var(--space-7);
  }
  .connected-system {
    min-height: 0;
    padding: var(--space-2);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: var(--radius-lg);
  }
  .connected-system__paths,
  .connected-system__layers {
    display: none;
  }
  .connected-system__modules,
  .connected-system__modules--discovery,
  .connected-system__modules--experience,
  .connected-system__modules--activation {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }
  .connected-system__core {
    width: 9rem;
    grid-column: 1;
    grid-row: 2;
    place-self: center;
  }
  .metrics-ribbon__inner {
    overflow-x: auto;
    padding-bottom: var(--space-1);
    scroll-snap-type: x mandatory;
  }
  .metrics-ribbon .metrics-grid {
    display: flex;
    min-width: max-content;
  }
  .metrics-ribbon .metric {
    min-width: 15rem;
    min-height: 9rem;
    border-right: 1px solid
      color-mix(in srgb, var(--color-anchor-text) 16%, transparent) !important;
    border-top: 0 !important;
    scroll-snap-align: start;
  }
  .metrics-ribbon .metric:last-child {
    grid-column: auto;
  }
  .about-editorial__layout {
    grid-template-columns: 1fr;
  }
  .about-editorial__label {
    display: none;
  }
  .listen-system {
    grid-column: 1;
  }
  .about-editorial__facts {
    grid-template-columns: 1fr;
  }
  .tagline-statement .tagline-panel {
    min-height: 29rem;
  }
  .services-bento {
    grid-template-columns: 1fr;
  }
  .services-bento .service-card,
  .services-bento .service-card--feature,
  .services-bento .service-card--medium,
  .services-bento .service-card--wide {
    min-height: auto;
    grid-column: 1;
  }
  .service-card__deliverables {
    grid-template-columns: 1fr;
  }
  .service-card--feature .service-card__heading h3 {
    font-size: var(--text-2xl);
  }
  .service-visual--coming-soon {
    align-items: stretch;
    flex-direction: column;
  }
  .service-hero__visual {
    min-height: 0;
    display: grid;
    padding: var(--space-2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-1);
    border-radius: var(--radius-lg);
  }
  .service-hero__visual::before,
  .service-hero__visual::after {
    display: none;
  }
  .service-hero__core,
  .service-hero__node {
    position: static;
    min-width: 0;
    min-height: 4.5rem;
    transform: none;
  }
  .service-hero__core {
    width: auto;
    aspect-ratio: auto;
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
  }
  .page--services-overview .service-bento .service-card,
  .page--services-overview .service-bento .service-card--large,
  .page--services-overview .service-bento .service-card--medium,
  .page--services-overview .service-bento .service-card--wide {
    min-height: auto;
    grid-column: 1;
  }
  .page--services-overview .service-card--large h3 {
    font-size: var(--text-2xl);
  }
  .about-story-grid,
  .about-values {
    grid-template-columns: 1fr;
  }
  .about-story-grid .story-card,
  .about-values .reason-card {
    min-height: auto;
  }
  .comparison-module__evidence {
    grid-template-columns: 1fr;
  }
  .comparison-module__evidence > div + div {
    border-top: var(--border-subtle);
    border-left: 0;
  }
  .process-timeline::before,
  .process-timeline::after {
    left: 0.4rem;
  }
  .process-timeline .process-step,
  .process-timeline .process-step:nth-child(odd),
  .process-timeline .process-step:nth-child(even) {
    max-width: none;
    margin: 0 0 var(--space-3) var(--space-5);
  }
  .process-timeline .process-step:nth-child(odd)::before,
  .process-timeline .process-step:nth-child(even)::before {
    right: auto;
    left: calc((var(--space-5) * -1) - 0.02rem);
  }
  .price-card--featured {
    transform: none;
  }
  .price-comparison {
    padding: var(--space-2);
  }
  .delivery-map {
    min-height: auto;
    padding: var(--space-2);
    border-radius: var(--radius-lg);
  }
  .delivery-map__world,
  .delivery-map__legend {
    display: none;
  }
  .delivery-map .map-region {
    position: relative;
    inset: auto !important;
    display: flex;
    width: 100%;
    margin-bottom: var(--space-1);
    justify-content: flex-start;
  }
  .delivery-map .map-region::before {
    position: static;
    margin-right: 0.6rem;
    transform: none;
  }
  .delivery-map .map-tooltip {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: var(--space-2);
  }
  .quote-banner__inner {
    min-height: 36rem;
    padding-block: var(--space-7);
  }
  .authority-quote-section blockquote {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }
  .testimonial-mobile-rail .testimonial-card {
    min-height: 27rem;
  }
  .page--service #why-now .fact-grid,
  .page--service #current-requirements .measurement-list {
    grid-template-columns: 1fr;
  }
  .page--service #why-now .fact {
    border-right: 0;
    border-top: var(--border-subtle);
  }
  .page--service #why-now .fact:first-child {
    border-top: 0;
  }
  .page--service #service-includes .reason-card,
  .page--service #service-includes .reason-card:nth-child(5n + 1),
  .page--service #service-includes .reason-card:nth-child(5n + 2) {
    grid-column: 1 / -1;
    min-height: auto;
  }
  .page--service #stories .story-grid,
  .editor-selected .story-grid {
    grid-template-columns: 1fr;
  }
  .page--service #stories .story-card:first-child {
    min-height: 23rem;
  }
  .faq-question {
    min-height: 4.75rem;
    font-size: var(--text-base);
  }
  .faq-answer > div {
    padding-right: 0;
  }
  .blog-hero {
    min-height: 35rem;
  }
  .blog-hero__index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-hero__index span + span::before {
    margin-right: var(--space-2);
  }
  .featured-article-card {
    min-height: 0;
    border-radius: var(--radius-lg);
  }
  .featured-article-card__visual {
    min-height: 16rem;
  }
  .featured-article-card__copy {
    padding: var(--space-3);
  }
  .featured-article-card__copy h3 {
    font-size: var(--text-2xl);
  }
  .filter-bar {
    grid-template-columns: 1fr;
  }
  .page--blog .article-grid {
    grid-template-columns: 1fr;
  }
  .pricing-controls {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .pricing-controls__group {
    width: 100%;
  }
  .pricing-controls__group .segmented-control {
    width: 100%;
  }
  .pricing-controls__group .segmented-control button {
    flex: 1;
  }
  .check-grid,
  .calculator-explanation-grid,
  .service-config__body {
    grid-template-columns: 1fr;
  }
  .calculator-progress__summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .calculator-progress__steps li {
    font-size: 0.6rem;
  }
  .calculator-step__navigation {
    flex-direction: column-reverse;
  }
  .calculator-step__navigation .button,
  .calculator-step__navigation .button:only-child {
    width: 100%;
    margin-left: 0;
  }
  .estimate-panel__header {
    display: block;
  }
  .form-step {
    grid-template-columns: 1fr;
  }
  .form-navigation {
    flex-direction: column-reverse;
  }
  .form-navigation .button {
    width: 100%;
  }
  .page--article {
    padding-bottom: 5rem;
  }
  .page--article .share-controls {
    position: fixed;
    z-index: var(--z-sticky);
    right: var(--space-1);
    bottom: var(--space-1);
    left: var(--space-1);
    display: block;
    margin: 0;
    padding: 0.45rem;
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--surface-level-1) 92%, transparent);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
  }
  .page--article .share-controls__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .page--article .share-controls__items {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .page--article .share-controls__items::-webkit-scrollbar {
    display: none;
  }
  .page--article .share-controls__items > * {
    flex: 0 0 auto;
    min-height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    background-attachment: scroll;
  }
  .mobile-drawer__panel,
  .mobile-nav a,
  .form-step,
  [data-reveal] {
    animation: none !important;
    transform: none !important;
  }
  [data-reveal] {
    opacity: 1;
  }
}

@media print {
  body {
    background-image: none;
  }
  body::before {
    display: none;
  }
}

/* Homepage clarity pass: compact banner, uniform services, precise rails and footer */
.page--home {
  overflow-x: clip;
}
.page--home .section {
  padding-block: clamp(4rem, 6vw, 6rem);
}
.page--home :where(h1, h2, h3, p, li, a, button, span) {
  overflow-wrap: break-word;
}
.page--home
  :where(.button-row, .card-grid, .rail, .faq-list, .enquiry-card)
  > * {
  min-width: 0;
}

.hero-carousel-section {
  padding-block: clamp(1.25rem, 3vw, 2.5rem);
}
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 80rem;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  overflow: hidden;
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--color-anchor-bg);
  box-shadow: var(--shadow-md);
  color: var(--color-anchor-text);
  isolation: isolate;
}
.hero-carousel__viewport,
.hero-carousel__slide {
  position: absolute;
  inset: 0;
}
.hero-carousel__viewport {
  overflow: hidden;
}
.hero-carousel__slide {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-slow) var(--ease-standard),
    visibility var(--duration-slow) var(--ease-standard);
}
.hero-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-carousel__media {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 8.5s linear;
}
.hero-carousel__slide.is-active .hero-carousel__media {
  transform: scale(1.055);
}
.hero-carousel__media--diagnosis {
  object-position: 62% center;
}
.hero-carousel__media--connected {
  object-position: 78% center;
}
.hero-carousel__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-anchor-bg) 98%, transparent) 0%,
    color-mix(in srgb, var(--color-anchor-bg) 94%, transparent) 43%,
    color-mix(in srgb, var(--color-anchor-bg) 60%, transparent) 68%,
    color-mix(in srgb, var(--color-anchor-bg) 18%, transparent) 100%
  );
}
.hero-carousel__content {
  position: relative;
  z-index: 2;
  width: min(66%, 50rem);
  padding: clamp(1.75rem, 3.5vw, 3.5rem);
  padding-bottom: clamp(4.75rem, 6vw, 5.5rem);
  align-self: center;
}
.hero-carousel__content .eyebrow {
  color: var(--color-primary-deep);
}
.hero-carousel__content h1,
.hero-carousel__content h2 {
  max-width: 15ch;
  margin-bottom: var(--space-2);
  color: var(--color-anchor-text);
  font-size: clamp(2.4rem, 3.5vw, 3.9rem);
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.hero-carousel__content h1 strong {
  color: var(--color-primary-deep);
  font-weight: 680;
}
.hero-carousel__content > p {
  max-width: 42rem;
  margin-bottom: var(--space-2);
  color: color-mix(in srgb, var(--color-anchor-text) 78%, transparent);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.6;
}
.hero-carousel__content .button-row {
  flex-wrap: nowrap;
  gap: 0.75rem;
}
.hero-carousel__content .button {
  min-height: 2.9rem;
  padding-inline: 1rem;
  font-size: 0.78rem;
}
.hero-carousel__content .hero-trust {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--color-anchor-text) 64%, transparent);
  font-size: var(--text-xs);
}
.hero-carousel__content .button--ghost {
  border-color: color-mix(in srgb, var(--color-anchor-text) 42%, transparent);
  color: var(--color-anchor-text);
}
.hero-carousel__content .button--ghost:hover {
  border-color: var(--color-anchor-text);
  color: var(--color-anchor-text);
}
.hero-carousel__controls {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  min-height: 3rem;
  padding: 0.35rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 18%, transparent);
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--color-anchor-bg) 82%, transparent);
  backdrop-filter: blur(12px);
}
.hero-carousel__arrow {
  width: 2.35rem;
  border-color: transparent;
  background: transparent;
  color: var(--color-anchor-text);
}
.hero-carousel__arrow:hover {
  background: color-mix(in srgb, var(--color-anchor-text) 10%, transparent);
}
.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}
.hero-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: var(--radius-round);
  background: color-mix(in srgb, var(--color-anchor-text) 35%, transparent);
  cursor: pointer;
  transition:
    width var(--transition-base),
    background var(--transition-base);
}
.hero-carousel__dot.is-active {
  width: 1.7rem;
  background: var(--color-primary-deep);
}
.hero-carousel__status {
  min-width: 5.2rem;
  color: color-mix(in srgb, var(--color-anchor-text) 70%, transparent);
  font-size: 0.7rem;
  text-align: center;
}

.page--home .tagline-statement .tagline-panel {
  min-height: 0;
  padding: clamp(3rem, 6vw, 5.5rem);
}
.page--home .services-showcase .section-heading {
  max-width: 54rem;
  margin-bottom: var(--space-5);
}
.page--home .services-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.page--home .services-bento .service-card,
.page--home .services-bento .service-card--feature,
.page--home .services-bento .service-card--medium,
.page--home .services-bento .service-card--wide {
  display: flex;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  grid-column: auto;
  border-radius: var(--radius-md);
}
.page--home .services-bento .service-card--coming-soon {
  grid-column: 2;
}
.page--home .service-card__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}
.page--home .service-card__heading h3,
.page--home .service-card--feature .service-card__heading h3 {
  max-width: 18ch;
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}
.page--home .service-card__heading h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}
.page--home .service-card__heading h3 a:hover,
.page--home .service-card:hover .service-card__heading h3 a {
  color: var(--color-accent);
}
.page--home .service-card--coming-soon .service-card__heading h3 a:hover,
.page--home .service-card--coming-soon:hover .service-card__heading h3 a {
  color: var(--color-anchor-text);
}
.page--home .service-card > p {
  margin-bottom: var(--space-2);
  color: var(--color-text-body);
  font-size: var(--text-sm);
}
.page--home .service-card .benefit,
.page--home .service-card__deliverables {
  display: none;
}
.page--home .service-card__visual[data-image-slot] {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0 0 var(--space-3);
  order: -1;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  transform: none;
  text-decoration: none;
}
a.service-card__visual:focus-visible {
  outline: 3px solid var(--color-primary-deep);
  outline-offset: 3px;
}
.page--home .service-card:hover .service-card__visual[data-image-slot] {
  transform: none;
}
.page--home .service-card .text-link {
  width: fit-content;
  margin-top: auto;
  padding-top: var(--space-1);
}

.page--home .global-delivery .section-heading {
  max-width: 58rem;
}
.page--home .delivery-map {
  min-height: clamp(29rem, 42vw, 35rem);
}
.page--home .quote-banner__inner {
  min-height: 0;
  padding-block: clamp(5rem, 8vw, 7rem);
}
.page--home .authority-quote-section blockquote {
  max-width: 22ch;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
}

.testimonials-section {
  overflow: hidden;
}
.testimonials-section__heading {
  max-width: 54rem;
  margin-bottom: var(--space-4);
}
.testimonial-rail {
  --rail-items: 3;
  overflow: hidden;
}
.testimonial-rail .rail-track {
  align-items: stretch;
}
.testimonial-rail .rail-slide {
  min-width: calc(100% / var(--rail-items));
  padding: 0.55rem;
}
.testimonial-rail .feedback-standard-card {
  display: flex;
  min-width: 0;
  min-height: 19rem;
  height: 100%;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  flex-direction: column;
  border-radius: var(--radius-md);
  box-shadow: none;
}
.testimonial-rail .rail-controls {
  padding-inline: 0.55rem;
}

.page--home .why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.page--home .why-layout__intro {
  position: static;
  display: grid;
  max-width: 68rem;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(var(--space-3), 5vw, var(--space-6));
  align-items: end;
}
.page--home .why-layout__intro .eyebrow,
.page--home .why-layout__intro h2 {
  grid-column: 1;
}
.page--home .why-layout__intro > p:not(.why-layout__prompt) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}
.page--home .why-layout__prompt {
  display: none;
}
.page--home .why-layout__modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  border: 0;
}
.page--home .why-layout .comparison-module {
  display: flex;
  min-width: 0;
  min-height: 18rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  flex-direction: column;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-level-1);
}
.page--home .comparison-module h3 {
  max-width: 28ch;
  margin-bottom: var(--space-1);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.page--home .comparison-module > p {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}
.page--home .comparison-module__evidence {
  display: block;
  margin-top: auto;
  border-block: var(--border-subtle);
}
.page--home .comparison-module__evidence summary {
  min-height: 3rem;
  padding: 0.85rem 2rem 0.7rem 0;
  color: var(--color-accent);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 650;
  list-style-position: inside;
}
.page--home .comparison-module__evidence[open] {
  padding-bottom: var(--space-1);
}
.page--home .comparison-module__evidence > div {
  padding: var(--space-2) 0;
}
.page--home .comparison-module__evidence > div + div {
  border-top: var(--border-subtle);
  border-left: 0;
  background: transparent;
}
.page--home .why-layout__cta {
  margin-top: 0;
}

.page--home .faq-layout {
  display: block;
  width: 100%;
  max-width: 66rem;
  margin-inline: auto;
}
.page--home .faq-layout__intro {
  position: static;
  max-width: 45rem;
  margin: 0 auto var(--space-5);
  text-align: center;
}
.page--home .faq-layout__intro h2 {
  max-width: 18ch;
  margin-inline: auto;
}
.page--home .faq-layout__intro p {
  margin-inline: auto;
}
.page--home .faq-list {
  width: 100%;
  max-width: 58rem;
  margin-inline: auto;
}
.page--home .faq-item {
  min-width: 0;
}
.page--home .faq-question {
  min-height: 4.4rem;
  padding: 1.2rem 0;
  align-items: center;
  font-size: var(--text-base);
  line-height: 1.4;
}
.page--home .faq-question::after {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  font-size: 1.05rem;
}
.page--home .faq-answer > div {
  max-width: 52rem;
  padding: 0 3rem var(--space-3) 0;
}
.faq-show-all {
  display: none;
}
.js .faq-show-all {
  display: inline-flex;
  margin: var(--space-3) auto 0;
}

.site-footer {
  padding-block: clamp(4rem, 6vw, 5.5rem) var(--space-3);
}
.footer-brand--compact {
  display: grid;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  grid-template-columns: minmax(13rem, 0.75fr) minmax(15rem, 1fr) minmax(
      18rem,
      1.15fr
    );
  gap: clamp(var(--space-2), 4vw, var(--space-5));
  align-items: start;
  border-bottom: 1px solid
    color-mix(in srgb, var(--color-anchor-text) 14%, transparent);
}
.footer-brand--compact p {
  max-width: 34rem;
  margin: 0;
  font-size: var(--text-sm);
}
.footer-brand--compact .footer-tagline {
  max-width: 30ch;
  font-size: var(--text-lg) !important;
}
.site-footer .footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(var(--space-3), 4vw, var(--space-5));
}
.site-footer .footer-bottom {
  margin-top: var(--space-4);
}

@media (max-width: 73rem) {
  .hero-carousel__content {
    width: min(70%, 43rem);
    padding: clamp(2rem, 4vw, 3.25rem);
    padding-bottom: 5rem;
  }
  .hero-carousel__content h1,
  .hero-carousel__content h2 {
    font-size: clamp(2.35rem, 5vw, 4rem);
  }
  .page--home .services-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page--home .services-bento .service-card--coming-soon {
    width: calc(50% - 0.75rem);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .testimonial-rail {
    --rail-items: 2;
  }
  .footer-brand--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand--compact .brand {
    grid-column: 1 / -1;
  }
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 62rem) {
  .hero-carousel {
    aspect-ratio: 4 / 3;
  }
  .hero-carousel__content {
    width: min(78%, 39rem);
  }
  .hero-carousel__overlay {
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-anchor-bg) 98%, transparent) 0%,
      color-mix(in srgb, var(--color-anchor-bg) 88%, transparent) 60%,
      color-mix(in srgb, var(--color-anchor-bg) 42%, transparent) 100%
    );
  }
  .page--home .delivery-map {
    min-height: 31rem;
  }
}

@media (max-width: 45rem) {
  .page--home .section {
    padding-block: clamp(3.5rem, 12vw, 5rem);
  }
  .hero-carousel-section {
    padding-block: 0.75rem 1.5rem;
  }
  .hero-carousel {
    min-height: 42rem;
    aspect-ratio: auto;
    border-radius: var(--radius-md);
  }
  .hero-carousel__media {
    object-position: 72% center;
  }
  .hero-carousel__overlay {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-anchor-bg) 86%, transparent) 0%,
      color-mix(in srgb, var(--color-anchor-bg) 96%, transparent) 48%,
      var(--color-anchor-bg) 100%
    );
  }
  .hero-carousel__content {
    width: 100%;
    padding: 2rem 1.35rem 6rem;
    align-self: end;
  }
  .hero-carousel__content h1,
  .hero-carousel__content h2 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }
  .hero-carousel__content > p {
    font-size: 0.95rem;
  }
  .hero-carousel__content .button-row {
    gap: 0.65rem;
  }
  .hero-carousel__content .button-row {
    flex-wrap: wrap;
  }
  .hero-carousel__content .button {
    width: 100%;
  }
  .hero-carousel__content .hero-trust {
    display: none;
  }
  .hero-carousel__controls {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    justify-content: center;
  }
  .page--home .services-bento {
    grid-template-columns: 1fr;
  }
  .page--home .services-bento .service-card--coming-soon {
    width: 100%;
    grid-column: 1;
  }
  .testimonial-rail {
    --rail-items: 1;
  }
  .testimonial-rail .feedback-standard-card {
    min-height: 20rem;
  }
  .page--home .why-layout__intro,
  .page--home .why-layout__modules {
    grid-template-columns: 1fr;
  }
  .page--home .why-layout__intro .eyebrow,
  .page--home .why-layout__intro h2,
  .page--home .why-layout__intro > p:not(.why-layout__prompt) {
    grid-column: 1;
    grid-row: auto;
  }
  .page--home .why-layout .comparison-module {
    min-height: 0;
  }
  .page--home .faq-layout__intro {
    margin-bottom: var(--space-4);
    text-align: left;
  }
  .page--home .faq-layout__intro h2 {
    margin-inline: 0;
  }
  .page--home .faq-question {
    min-height: 4rem;
    padding: 1rem 0;
  }
  .page--home .faq-answer > div {
    padding-right: 0;
  }
  .footer-brand--compact,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand--compact .brand {
    grid-column: 1;
  }
  .footer-brand--compact {
    gap: var(--space-2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide,
  .hero-carousel__media,
  .hero-carousel__dot,
  .testimonial-rail .rail-track {
    transition: none !important;
    animation: none !important;
  }
  .hero-carousel__media {
    transform: none !important;
  }
}

/* Round 1 approved artwork: preserve every 16:9 image without cropping. */
.hero-carousel-section {
  padding-block: 0;
}
.hero-carousel-section > .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}
.hero-carousel {
  max-width: none;
  aspect-ratio: 1672 / 941;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #f7f5ef;
  box-shadow: none;
  color: #111827;
}
.hero-carousel__media,
.hero-carousel__slide.is-active .hero-carousel__media {
  object-fit: contain;
  object-position: center;
  transform: none;
}
.hero-carousel__media--diagnosis,
.hero-carousel__media--connected {
  object-position: center;
}
.hero-carousel__overlay {
  background: linear-gradient(
    90deg,
    rgba(247, 249, 252, 0.99) 0%,
    rgba(247, 249, 252, 0.96) 34%,
    rgba(247, 249, 252, 0.74) 52%,
    rgba(247, 249, 252, 0.16) 72%,
    transparent 84%
  );
}
.hero-carousel__content {
  width: min(62%, 54rem);
  padding-left: max(
    var(--container-padding),
    calc((100vw - var(--container)) / 2 + var(--container-padding))
  );
}
.hero-carousel__content h1,
.hero-carousel__content h2,
.hero-carousel__content > p,
.hero-carousel__content .hero-trust {
  color: #111827;
}
.hero-carousel__content .eyebrow,
.hero-carousel__content h1 strong {
  color: #087f79;
}
.hero-carousel__content .button--ghost {
  border-color: rgba(17, 24, 39, 0.45);
  color: #111827;
}
.hero-carousel__content .button--ghost:hover {
  border-color: #111827;
  color: #111827;
}
.hero-carousel__controls {
  border-color: rgba(17, 24, 39, 0.16);
  background: rgba(255, 255, 255, 0.9);
}
.hero-carousel__arrow,
.hero-carousel__status {
  color: #111827;
}

.page--home .service-card__visual[data-image-slot] {
  display: block;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background: #f7f5ef;
}
.page--home .services-bento .service-card--coming-soon > p {
  color: color-mix(in srgb, var(--color-anchor-text) 72%, transparent);
}
.service-card__image,
.service-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.service-hero__visual--image {
  display: block;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background: #f7f5ef;
}
.service-hero__visual--image::before,
.service-hero__visual--image::after {
  display: none;
}
.page--services-overview .service-hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
}
.page--services-overview .service-hero__copy h1 {
  max-width: 17ch;
  font-size: clamp(2.8rem, 4.5vw, 4.75rem);
  line-height: 1.02;
}

.page--home .quote-banner__inner {
  align-items: center;
  text-align: center;
}
.page--home .quote-banner__mark {
  left: 50%;
  transform: translateX(-50%);
}
.page--home .authority-quote-section blockquote,
.page--home .authority-quote-section p {
  margin-right: auto;
  margin-left: auto;
}
.page--home .quote-banner__line {
  margin-right: auto;
  margin-left: auto;
  transform-origin: center;
}
.page--home .authority-quote-section .button-row {
  justify-content: center;
}
.page--home .authority-quote-section .quote-banner__call {
  min-width: 12rem;
  padding-inline: 1.25rem;
}

.feedback-standards-marquee {
  width: 100%;
  overflow: hidden;
  outline-offset: 0.25rem;
}
.feedback-standards-marquee .feedback-standard-card {
  width: min(28rem, 78vw);
  min-height: 19rem;
  flex: 0 0 min(28rem, 78vw);
}

@media (max-width: 73rem) {
  .page--services-overview .service-hero__grid {
    grid-template-columns: 1fr;
  }
  .service-hero__visual--image {
    min-height: 0;
  }
}

@media (max-width: 62rem) {
  .hero-carousel {
    aspect-ratio: 1672 / 941;
  }
  .hero-carousel__content {
    width: min(72%, 38rem);
  }
}

@media (max-width: 45rem) {
  .hero-carousel-section {
    padding-block: 0;
  }
  .hero-carousel {
    height: clamp(32rem, 145vw, 38rem);
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0;
  }
  .hero-carousel__slide {
    display: flex;
    flex-direction: column;
    background: #f7f5ef;
  }
  .hero-carousel__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
    flex: 0 0 auto;
    object-fit: contain;
  }
  .hero-carousel__overlay {
    display: none;
  }
  .hero-carousel__content {
    width: 100%;
    padding: 1.05rem var(--container-padding) 4.25rem;
    flex: 1 1 auto;
    align-self: stretch;
    background: #f7f5ef;
  }
  .hero-carousel__content h1,
  .hero-carousel__content h2 {
    max-width: 18ch;
    margin-bottom: 0.7rem;
    font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  }
  .hero-carousel__content > p {
    display: none;
  }
  .hero-carousel__content .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .hero-carousel__content .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.6rem;
    font-size: 0.68rem;
    line-height: 1.3;
  }
  .hero-carousel__controls {
    right: var(--container-padding);
    bottom: 0.7rem;
    left: var(--container-padding);
  }
  .page--home .authority-quote-section blockquote {
    max-width: 18ch;
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
  .service-hero__visual--image {
    display: block;
    min-height: 0;
    padding: 0;
    grid-template-columns: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-standards-marquee {
    overflow-x: auto;
  }
  .feedback-standards-marquee .testimonial-marquee__track {
    animation: none !important;
    transform: none !important;
  }
  .feedback-standards-marquee [data-marquee-clone] {
    display: none;
  }
}
