@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("assets/fonts/newsreader-latin-variable.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("assets/fonts/inter-latin-variable.woff2") format("woff2-variations");
}

:root {
  color-scheme: dark;
  --ink: #f2eadc;
  --muted: #c4c5cc;
  --paper: #08080c;
  --white: #1a1a21;
  --line: #4b4d56;
  --warm: #e85d24;
  --dark: #292a31;
  --blue: #345f8c;
  --navy: #122b4f;
  --yellow: #ffc43d;
  --yellow-soft: #ffd166;
  --orange-soft: #f4a261;
  --sand: #292a31;
  --slate: #777985;
  --surface-dark: #1a1a21;
  --orange-bright: #fa4616;
  --blue-bright: #0021a5;
  --yellow-bright: #fffc00;
  --max: 1120px;
}
:root[data-theme="light"] {
  color-scheme: light;
  --ink: #17181d;
  --muted: #5f616a;
  --paper: #f5f3ed;
  --white: #fffdfa;
  --line: #cec9bf;
  --dark: #292a31;
  --navy: #dce6ef;
  --sand: #ebe7df;
  --slate: #686a73;
  --surface-dark: #fffdfa;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --ink: #17181d;
    --muted: #5f616a;
    --paper: #f5f3ed;
    --white: #fffdfa;
    --line: #cec9bf;
    --dark: #292a31;
    --navy: #dce6ef;
    --sand: #ebe7df;
    --slate: #686a73;
    --surface-dark: #fffdfa;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  font-weight: 400;
  transition: background-color 180ms ease, color 180ms ease;
}
html:not(.page-ready) body {
  transition: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
[data-header] {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 80px;
}
.site-header {
  background: rgba(8, 8, 12, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
:root[data-theme="light"] .site-header {
  background: rgba(245, 243, 237, 0.94);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}
.brand img {
  width: 34px;
  height: 34px;
}
.header-brand {
  flex: 0 0 auto;
  gap: 9px;
  font-size: 1.45rem;
  padding: 18px 8px;
  margin-inline: -8px;
}
.header-mark {
  display: block;
  width: 34px;
  height: 32px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("assets/kaispark-mark.svg") center / 100% 100% no-repeat;
  mask: url("assets/kaispark-mark.svg") center / 100% 100% no-repeat;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--warm);
  border-color: var(--warm);
  background: rgba(232, 93, 36, 0.08);
  transform: translateY(-1px);
  outline: none;
}
.theme-icon {
  display: none;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:root[data-theme="dark"] .theme-icon-sun,
:root[data-theme="light"] .theme-icon-moon {
  display: block;
}
:root[data-theme="light"] .hero-mark {
  filter: invert(1);
}
.nav-links a,
.dropbtn {
  font-size: 0.95rem;
  font-weight: 650;
}
.nav-links > a:not(.nav-cta) {
  padding: 22px 4px;
}
.nav-links > .nav-cta {
  margin-left: 4px;
}
.nav-links a:hover,
.dropbtn:hover {
  color: var(--warm);
}
.dropdown {
  position: relative;
}
.dropbtn {
  display: block;
  border: 0;
  background: none;
  color: var(--ink);
  padding: 22px 4px;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: -22px;
  width: 260px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(8, 8, 12, 0.14);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 5px;
}
.dropdown-menu a:hover {
  background: var(--paper);
}
.nav-cta,
.button.primary {
  background: var(--warm);
  color: var(--paper) !important;
  border-radius: 999px;
  padding: 11px 18px;
}
.nav-cta:hover,
.button.primary:hover {
  background: var(--orange-bright);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(230, 116, 47, 0.72);
  border-radius: 14px;
  background: rgba(230, 116, 47, 0.08);
  color: var(--warm);
}
.menu-icon {
  position: relative;
  width: 19px;
  height: 14px;
}
.menu-icon span {
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}
.menu-icon span:first-child {
  top: 3px;
}
.menu-icon span:last-child {
  top: 10px;
}
.menu-toggle[aria-expanded="true"] .menu-icon span:first-child {
  top: 6px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-icon span:last-child {
  top: 6px;
  transform: rotate(-45deg);
}
.mobile-nav {
  display: none;
  padding: 0 20px 20px;
}
.mobile-nav.open {
  display: grid;
  gap: 10px;
}
.mobile-nav a {
  padding: 8px 0;
}
.mobile-group {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  color: var(--muted);
}
.hero {
  position: relative;
  overflow: hidden;
  margin-top: -18px;
  /* Preserve the full-screen composition on normal viewports without letting
     browser zoom inflate the hero into a wall of empty space. */
  min-height: min(900px, calc(100svh - 152px));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(44px, 7vh, 68px) 0 0;
  background: var(--paper);
}
.ember-journey {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ember-journey .hero,
.ember-journey .spark-story {
  position: relative;
  z-index: 0;
}
.ember-journey .hero .shell,
.ember-journey .spark-story > .section {
  position: relative;
  z-index: 2;
}
.hero-mark {
  position: absolute;
  z-index: 0;
  /* Tuck the tight SVG edge beneath the pill so its faint first pixels meet the visible bar after antialiasing and shadow. */
  top: 2px;
  right: -4px;
  width: clamp(300px, 52vw, 760px);
  height: auto;
  display: block;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 591px) {
  .home-page .hero {
    overflow: visible;
    z-index: 3;
  }
  :root[data-theme="light"] .home-page .hero::after {
    position: absolute;
    top: 2px;
    right: -4px;
    z-index: 1;
    width: clamp(300px, 52vw, 760px);
    aspect-ratio: 5328 / 5014;
    background: url("assets/kaispark-mark.svg") center / 100% 100% no-repeat;
    clip-path: polygon(0 70%, 56% 70%, 56% 100%, 0 100%);
    content: "";
    opacity: 0.055;
    pointer-events: none;
  }
  .home-page .hero-mark {
    z-index: 1;
  }
  .home-page .hero .shell {
    z-index: 2;
  }
  .home-page .spark-story {
    z-index: 0;
  }
}
.hero .shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  transform: none;
}
.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 500;
  line-height: 1.12;
}
.hero-accent {
  color: var(--warm);
}
.hero-line {
  display: block;
}
.hero-line-mobile {
  display: none;
}
.mobile-copy-line {
  white-space: nowrap;
}
.mobile-final-line {
  display: inline;
}
.hero .lede,
.page-hero .lede {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--muted);
}
.hero .lede {
  margin-top: 22px;
}
.hero-lede-sentence {
  display: block;
}
.hero-lede-sentence + .hero-lede-sentence {
  margin-top: 2px;
}
.hero .actions {
  margin-top: 26px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--warm);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 750;
}
.button.secondary {
  background: var(--white);
}
.button.secondary:hover {
  border-color: var(--blue);
  color: var(--ink);
}
.section {
  padding: 86px 0;
  border-top: 0;
}
.quote-bridge {
  position: relative;
  padding: clamp(72px, 9vw, 124px) 0 clamp(38px, 4vw, 58px);
  border-top: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050609 url("assets/quote-circuit-background.webp") center / 100% 100% no-repeat;
}
.quote-bridge::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5, 6, 9, 0.12) 0%, rgba(5, 6, 9, 0.02) 46%, rgba(5, 6, 9, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.1), transparent 24%, transparent 76%, rgba(5, 6, 9, 0.14));
  pointer-events: none;
}
.quote-bridge .shell {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 56px));
  padding: 0 clamp(20px, 6vw, 76px);
  text-align: center;
}
.quote-bridge .shell::before {
  content: none;
}
.spark-story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.spark-story::before {
  content: "";
  position: absolute;
  inset: 12% -18% auto auto;
  z-index: 0;
  width: min(72vw, 920px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 93, 36, 0.08), transparent 68%);
  pointer-events: none;
}
.spark-story > .section {
  position: relative;
  z-index: 1;
}
.quote-bridge .quote {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  color: #f7f4ee;
  font-size: clamp(2.25rem, 4.1vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 0 32px rgba(232, 93, 36, 0.08);
}
.quote-bridge .quote-attribution {
  margin-top: 22px;
  color: rgba(247, 244, 238, 0.72);
  font-size: 0.98rem;
}
.quote-bridge .route-row {
  margin-top: 20px;
}
.spark-section {
  padding: 36px 0 104px;
  border-top: 0;
}
.spark-section .spark-section-head {
  display: block;
  max-width: 940px;
  margin-bottom: 42px;
}
.spark-section .spark-section-head h2 {
  max-width: 920px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
}
.spark-section .spark-section-head h2 .spark-title-line {
  display: block;
  color: var(--ink);
}
.spark-section .spark-section-head h2 .spark-word {
  display: inline;
  color: var(--warm);
}
.spark-section .spark-section-head p {
  max-width: 720px;
  margin-top: 30px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}
.spark-section .pill-list {
  gap: 12px 24px;
  margin-bottom: 38px !important;
}
.spark-section .pill {
  position: relative;
  padding: 0 0 0 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
}
.spark-section .pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 12px rgba(232, 93, 36, 0.72);
  transform: translateY(-50%);
}
.spark-section .find-your-spark-grid {
  gap: 14px;
}
.spark-section .find-your-spark-grid > .card {
  position: relative;
  overflow: hidden;
  min-height: 316px;
  padding: 30px 26px;
  border-color: rgba(242, 234, 220, 0.14);
  background: linear-gradient(145deg, rgba(26, 26, 33, 0.92), rgba(15, 15, 20, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
:root[data-theme="light"] .spark-section .find-your-spark-grid > .card {
  border-color: rgba(23, 24, 29, 0.14);
  background: linear-gradient(145deg, rgba(255, 253, 250, 0.98), rgba(235, 231, 223, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
:root[data-theme="light"] .offerings-editorial-training {
  background: rgba(23, 24, 29, 0.025);
}
:root[data-theme="light"] .quote-bridge .quote {
  color: #f7f4ee;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 0 32px rgba(232, 93, 36, 0.08);
}
:root[data-theme="light"] .quote-bridge .quote-attribution {
  color: rgba(247, 244, 238, 0.72);
}
:root[data-theme="light"] .quote-attribution,
:root[data-theme="light"] .review-line figcaption {
  color: var(--muted);
}
.spark-section .find-your-spark-grid > .card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--warm), rgba(232, 93, 36, 0));
  opacity: 0.78;
}
.spark-section .find-your-spark-grid > .card h3 {
  font-size: 1.34rem;
  color: var(--ink);
}
.spark-section .find-your-spark-grid > .card .link {
  transition: color 160ms ease;
}
.spark-section .find-your-spark-grid > .card:hover .link,
.spark-section .find-your-spark-grid > .card:focus-visible .link {
  color: var(--orange-soft);
}
.section[id] {
  scroll-margin-top: 72px;
}
.section.alt {
  background: var(--paper);
}
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-bottom: 40px;
}
.section-head h2,
.content h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 500;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.offerings-editorial {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}
.offerings-editorial h2,
.offerings-editorial h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 330;
  line-height: 1.08;
}
.offerings-editorial h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}
.offerings-editorial h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}
.offerings-prose {
  max-width: 760px;
}
.offerings-prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}
.offerings-prose p + p {
  margin-top: 1.35em;
}
.offerings-more {
  margin-top: 1.15rem;
}
.offerings-more summary {
  align-items: center;
  color: var(--accent);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 0.45rem;
  list-style: none;
  min-height: 44px;
  padding: 0.45rem 0;
}
.offerings-more summary::-webkit-details-marker {
  display: none;
}
.offerings-more summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
.offerings-more[open] summary::after {
  content: "−";
}
.offerings-more .less-label {
  display: none;
}
.offerings-more[open] .more-label {
  display: none;
}
.offerings-more[open] .less-label {
  display: inline;
}
.offerings-more-copy {
  padding-top: 0.35rem;
}
.offerings-more-copy p + p {
  margin-top: 1.35em;
}
.offerings-editorial-training {
  margin: 0 0 clamp(44px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: 12px;
}
.grid > .card:nth-child(3n + 1) {
  border-color: var(--yellow-soft);
}
.grid > .card:nth-child(3n + 2) {
  border-color: var(--orange-soft);
}
.grid > .card:nth-child(3n) {
  border-color: var(--blue);
}
.card:hover {
  border-color: var(--warm);
}
.card-link,
a.card {
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}
.card-link:hover,
.card-link:focus-visible,
a.card:hover,
a.card:focus-visible {
  border-color: var(--warm);
  box-shadow:
    0 0 0 1px rgba(232, 93, 36, 0.35),
    0 0 26px rgba(232, 93, 36, 0.18);
  transform: translateY(-2px);
  outline: none;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  font-weight: 700;
}
.why-cards h3 {
  font-weight: 700;
}
@media (min-width: 1180px) {
  .why-cards {
    width: min(1200px, calc(100vw - 40px));
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .why-cards h3 {
    white-space: nowrap;
  }
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card .link {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--warm);
  font-weight: 750;
}
.number {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 800;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
}
.pill:nth-child(3n + 1) {
  border-color: var(--yellow-soft);
}
.pill:nth-child(3n + 2) {
  border-color: var(--orange-soft);
}
.pill:nth-child(3n) {
  border-color: var(--blue);
  color: var(--ink);
}
.quote {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 44px 0 0;
  text-align: center;
}
.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  color: #9898a6;
  font-size: 0.9rem;
}
.route-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.route-row-right {
  justify-content: center;
}
.ai-action-link-row {
  transform: translateY(16px);
}
.route-row-right a {
  padding: 10px 12px;
  margin: -10px -12px;
}
.route-row a {
  font-weight: 750;
  color: var(--warm);
}
.route-row a + a:before {
  content: "·";
  color: var(--muted);
  margin-right: 10px;
}
.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 0;
}
.review-line {
  margin: 0;
}
.review-line blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--ink);
}
.review-line figcaption {
  margin-top: 12px;
  color: #9898a6;
  font-size: 0.88rem;
  font-weight: 400;
}
.cta {
  background: linear-gradient(135deg, var(--surface-dark), var(--navy));
  color: var(--ink);
  border-radius: 18px;
  padding: 52px;
}
:root[data-theme="light"] .cta {
  background: linear-gradient(135deg, #fffdfa, #e7edf2);
  color: var(--ink);
  border: 1px solid var(--line);
}
:root[data-theme="light"] .cta p {
  color: var(--muted);
}
:root[data-theme="light"] .button.secondary {
  color: var(--ink) !important;
}
.cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}
.cta p {
  max-width: 700px;
  color: #c4c5cc;
  font-size: 1.12rem;
}
.cta .button.primary {
  background: var(--warm);
  color: var(--dark) !important;
}
.cta .button.primary.invert-hover:hover {
  background: transparent;
  color: var(--warm) !important;
}
.cta .button.secondary {
  background: transparent;
  border-color: var(--yellow) !important;
  color: var(--ink) !important;
}
.cta .button.secondary:hover {
  background: var(--yellow);
  color: var(--paper) !important;
}
:root[data-theme="light"] .cta .button.secondary:hover {
  color: var(--dark) !important;
}
.page-hero {
  padding: 92px 0 70px;
  background: var(--paper);
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
}
.content {
  max-width: 800px;
}
.content p,
.content li {
  font-size: 1.08rem;
  color: var(--muted);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 16px;
  margin-top: 36px;
}
.service-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}
.service {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}
.service-list > .service:nth-child(3n + 1) {
  border-color: var(--yellow-soft);
}
.service-list > .service:nth-child(3n + 2) {
  border-color: var(--orange-soft);
}
.service-list > .service:nth-child(3n) {
  border-color: var(--blue);
}
.service h3 {
  margin: 0 0 8px;
  font-weight: 700;
}
.service p {
  margin: 0;
  color: var(--muted);
}

/* Offerings accordion: keep the catalog scannable, reveal detail on demand. */
.offerings-page .offering-item {
  display: block;
  padding: 0;
  overflow: hidden;
}
.offerings-page .offering-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}
.offerings-page .offering-item summary::-webkit-details-marker {
  display: none;
}
.offerings-page .offering-item summary h3 {
  margin: 0;
}
.offerings-page .offering-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--warm);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}
.offerings-page .offering-item[open] summary::after {
  transform: rotate(45deg);
}
.offerings-page .offering-item > p {
  margin: 0;
  padding: 0 24px 24px;
}
.offerings-page .offering-item[open] {
  border-color: color-mix(in srgb, var(--warm) 54%, var(--glass-border)) !important;
  cursor: pointer;
}
.industries-section {
  overflow: hidden;
}
.industries-head {
  margin-bottom: 28px;
}
.industries-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background:
    radial-gradient(80% 130% at 0% 0%, color-mix(in srgb, var(--glass-shine) 24%, transparent), transparent 52%),
    linear-gradient(155deg, transparent 44%, var(--glass-depth)),
    var(--glass);
  outline: 1px solid var(--glass-inner-outline);
  outline-offset: -2px;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 78%, transparent),
    0 2px 7px var(--tile-shadow-near),
    0 18px 44px var(--tile-shadow-far);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}
.industry-item {
  position: relative;
  min-width: 0;
  padding: 24px 24px 22px;
}
.industry-item:not(:nth-child(4n + 1)) {
  border-left: 1px solid color-mix(in srgb, var(--glass-border) 72%, transparent);
}
.industry-item:nth-child(n + 5) {
  border-top: 1px solid color-mix(in srgb, var(--glass-border) 72%, transparent);
}
.industry-item h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.18rem, 1.55vw, 1.4rem);
  font-weight: 430;
  line-height: 1.15;
}
.offerings-page .industry-item h3 .industry-title-accent {
  color: var(--warm) !important;
}
.industry-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.industries-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}
.industries-note strong {
  color: var(--ink);
  font-weight: 700;
}
.case {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}
.case-image {
  display: block;
  width: calc(100% + 60px);
  aspect-ratio: 16 / 9;
  margin: -30px -30px 22px;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
}
.grid > .case:nth-child(3n + 1) {
  border-color: var(--yellow-soft);
}
.grid > .case:nth-child(3n + 2) {
  border-color: var(--orange-soft);
}
.grid > .case:nth-child(3n) {
  border-color: var(--blue);
}
.case h2 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 8px 0 12px;
}
.case p {
  color: var(--muted);
}
.case .outcome {
  color: var(--ink);
  font-weight: 700;
  margin-top: auto;
  padding-top: 1rem;
}

/* AI in Action: use the desktop width for one alternating story at a time. */
@media (min-width: 851px) {
  .ai-action-page .grid.two {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ai-action-page .case {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-rows: auto auto auto minmax(0, 1fr);
    min-height: 500px;
    padding: 0;
    overflow: hidden;
  }
  .ai-action-page .case-image {
    grid-column: 2;
    grid-row: 1 / -1;
    width: 100%;
    height: 100%;
    min-height: 500px;
    margin: 0;
    border-radius: 0 24px 24px 0;
    object-fit: cover;
    object-position: center;
  }
  .ai-action-page .case > h2,
  .ai-action-page .case > p {
    grid-column: 1;
    padding-inline: clamp(34px, 4vw, 52px);
  }
  .ai-action-page .case > h2 {
    margin: 0 0 18px;
    padding-top: clamp(38px, 4.5vw, 56px);
  }
  .ai-action-page .case > p {
    margin: 0 0 18px;
  }
  .ai-action-page .case > .outcome {
    align-self: end;
    margin: 0;
    padding-top: 18px;
    padding-bottom: clamp(38px, 4.5vw, 56px);
  }
  .ai-action-page .case:nth-child(even) {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
  .ai-action-page .case:nth-child(even) .case-image {
    grid-column: 1;
    border-radius: 24px 0 0 24px;
  }
  .ai-action-page .case:nth-child(even) > h2,
  .ai-action-page .case:nth-child(even) > p {
    grid-column: 2;
  }
}
.portrait-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 58px;
  align-items: start;
}
.portrait-layout img {
  border-radius: 14px;
}

/* About page */
.about-page .about-hero {
  padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 118px);
}
.about-page .about-hero h1 {
  max-width: none;
}
.about-page .about-hero .lede {
  max-width: 880px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  line-height: 1.15;
}
.about-intro {
  padding-top: clamp(64px, 8vw, 104px);
}
.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 88px);
}
.about-portrait {
  margin: 0;
}
.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle at center, #000 86%, rgba(0, 0, 0, 0.88) 90%, rgba(0, 0, 0, 0.5) 95%, transparent 100%);
  mask-image: radial-gradient(circle at center, #000 86%, rgba(0, 0, 0, 0.88) 90%, rgba(0, 0, 0, 0.5) 95%, transparent 100%);
}
.about-prose {
  max-width: 760px;
}
.about-prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}
.about-prose p + p {
  margin-top: 1.4em;
}
.about-prose-large p {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 330;
  line-height: 1.34;
}
.about-page h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 330;
  line-height: 1.04;
}
.about-two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}
.about-chapter {
  border-top: 0;
  padding-top: 24px;
}
.about-chapter h2 {
  margin-bottom: 30px;
}
.about-name-story {
  border-top-color: var(--yellow);
}
.about-focus-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.about-focus-layout h2 {
  position: sticky;
  top: 112px;
  color: var(--orange-soft);
}
.about-proof-section .shell {
  display: grid;
  gap: clamp(64px, 9vw, 116px);
}
.about-wide-chapter {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}
.about-prose-wide {
  max-width: 820px;
}
.about-statement {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(232, 93, 36, 0.65);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(232, 93, 36, 0.2), transparent 24rem),
    var(--paper);
}
.about-statement::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 196, 61, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.about-statement h2 {
  color: var(--orange-soft);
}
.about-digital-employees {
  padding-bottom: 8px;
}
.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.about-belief {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.about-belief h2 {
  margin-bottom: 34px;
}
.about-belief-accent {
  border-color: rgba(232, 93, 36, 0.72);
  background:
    linear-gradient(155deg, rgba(232, 93, 36, 0.09), transparent 42%),
    var(--white);
}
.about-belief-accent h2 {
  color: var(--orange-soft);
}
.about-method-section .shell {
  display: grid;
  gap: clamp(70px, 10vw, 128px);
}
.about-teaching {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
  padding-top: clamp(44px, 6vw, 76px);
  border-top: 0;
}
.about-final-section {
  padding-top: clamp(74px, 10vw, 128px);
}
.about-final-copy {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 92px);
}
.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 32px;
  align-items: center;
}
.about-cta > p {
  margin: 0;
  max-width: 760px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 330;
  line-height: 1.3;
}
.about-cta .actions {
  margin-top: 0;
  justify-content: flex-end;
}

/* Condensed About page */
.about-intro-copy h2 {
  margin-bottom: 22px;
}
.about-intro-lede {
  margin: 0 0 34px;
  max-width: 760px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 330;
  line-height: 1.25;
}
.about-editorial-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.about-editorial-layout h2 {
  color: var(--orange-soft);
}
.about-beliefs-title {
  margin-bottom: clamp(44px, 7vw, 78px) !important;
}
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.about-principle {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.about-principle:nth-child(1),
.about-principle:nth-child(6) {
  border-color: rgba(232, 93, 36, 0.62);
  background:
    linear-gradient(155deg, rgba(232, 93, 36, 0.08), transparent 48%),
    var(--white);
}
.about-principle h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
  font-weight: 700;
  line-height: 1.12;
}
.about-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.about-audience {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: clamp(48px, 7vw, 76px);
  padding-top: clamp(40px, 6vw, 62px);
  border-top: 0;
}
.about-audience > p {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  font-weight: 330;
  line-height: 1.32;
}
.about-audience .actions {
  margin-top: 0;
  justify-content: flex-end;
}
.form {
  display: grid;
  gap: 15px;
  max-width: 720px;
}
.form label {
  font-weight: 700;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(255, 196, 61, 0.55);
  outline-offset: 2px;
}
.form textarea {
  min-height: 150px;
  max-width: 100%;
  resize: vertical;
}
.form button {
  justify-self: start;
  cursor: pointer;
}
.notice {
  color: var(--muted);
  font-size: 0.9rem;
}
.booking-frame {
  width: 100%;
  height: 760px;
  border: 1px solid var(--line);
  background: var(--paper);
}

/* Conversion pages: compact, intentional mobile flow. */
.contact-hero,
.booking-hero {
  padding-bottom: 38px;
}
.booking-hero h1 {
  max-width: 1080px;
  font-size: clamp(3rem, 5.5vw, 5.15rem);
}
.booking-hero h1 .hero-accent {
  color: var(--warm) !important;
}
.contact-section,
.booking-section {
  padding-top: 30px;
}
.contact-layout {
  display: grid;
  justify-items: start;
}
.contact-form {
  width: min(100%, 760px);
  max-width: none;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
}
.contact-form label {
  display: grid;
  gap: 7px;
}
.field-label {
  display: inline;
}
.field-help {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}
.field-help [data-message-count] {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-top: 0;
}
.contact-form button {
  margin-top: 4px;
}
.form-note {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.form-note.success {
  color: #2f9e62 !important;
  font-weight: 700;
}
.form-note.error {
  color: #d84a3a !important;
  font-weight: 700;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.contact-actions {
  width: min(100%, 760px);
  margin-top: 20px;
}
.booking-card {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background:
    radial-gradient(120% 90% at -8% -18%, color-mix(in srgb, var(--glass-shine) 27%, transparent), transparent 48%),
    linear-gradient(155deg, transparent 42%, var(--glass-depth)),
    var(--glass);
  outline: 1px solid var(--glass-inner-outline);
  outline-offset: -2px;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 82%, transparent),
    0 2px 7px var(--tile-shadow-near),
    0 18px 44px var(--tile-shadow-far);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
}
.booking-frame {
  display: block;
  border: 0;
  border-radius: inherit;
  background: transparent;
}
.booking-embed-shell {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 18px;
  background: #070709;
  isolation: isolate;
}
.booking-embed-shell::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.025) 45%, rgba(255, 255, 255, 0.075) 52%, rgba(255, 255, 255, 0.025) 59%, transparent 100%);
  content: "";
  transform: translateX(-100%);
  animation: booking-shimmer 2.4s ease-in-out infinite;
}
.booking-embed-shell .booking-frame {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}
.booking-embed-shell.is-loaded .booking-frame {
  opacity: 1;
}
.booking-embed-shell.is-loaded::before {
  opacity: 0;
  animation: none;
}
:root[data-theme="light"] .booking-embed-shell {
  background: #fffdfa;
}
:root[data-theme="light"] .booking-embed-shell::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(8, 8, 12, 0.015) 45%, rgba(8, 8, 12, 0.06) 52%, rgba(8, 8, 12, 0.015) 59%, transparent 100%);
}
@keyframes booking-shimmer {
  0%, 18% { transform: translateX(-100%); opacity: 0; }
  32% { opacity: 1; }
  72% { opacity: 1; }
  86%, 100% { transform: translateX(100%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .booking-embed-shell::before {
    display: none;
  }
  .booking-embed-shell .booking-frame {
    transition: none;
  }
}
.booking-direct-link {
  display: block;
  padding: 15px 8px 3px;
  color: var(--warm);
  font-weight: 750;
  text-align: center;
}
.site-footer {
  padding: 48px 0 32px;
  border-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: start;
  gap: 48px;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}
:root[data-theme="light"] .footer-links a:hover,
:root[data-theme="light"] .footer-links a:focus-visible {
  background: rgba(23, 24, 29, 0.05);
}
.socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  color: var(--warm);
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: inherit;
  transition: transform 160ms ease, opacity 160ms ease;
}
.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.8;
}
.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}
p,
li,
.case .outcome,
.notice,
.form input,
.form textarea,
.form select {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}
.brand,
h1,
h2,
.quote,
.review-line blockquote {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 330;
}
h3,
.hero .lede,
.page-hero .lede {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
}
@media (max-width: 850px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .section-head,
  .offerings-editorial,
  .portrait-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .grid.four,
  .grid.three {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-intro-layout,
  .about-two-column,
  .about-focus-layout,
  .about-wide-chapter,
  .about-statement,
  .about-teaching,
  .about-final-copy,
  .about-cta,
  .about-editorial-layout,
  .about-audience {
    grid-template-columns: 1fr;
  }
  .about-portrait,
  .about-focus-layout h2,
  .about-editorial-layout h2 {
    position: static;
  }
  .about-portrait {
    width: min(100%, 430px);
  }
  .about-beliefs-grid {
    grid-template-columns: 1fr;
  }
  .about-cta .actions {
    justify-content: flex-start;
  }
  .industries-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-item:not(:nth-child(4n + 1)) {
    border-left: 0;
  }
  .industry-item:nth-child(even) {
    border-left: 1px solid color-mix(in srgb, var(--glass-border) 72%, transparent);
  }
  .industry-item:nth-child(n + 3) {
    border-top: 1px solid color-mix(in srgb, var(--glass-border) 72%, transparent);
  }
  .about-audience .actions {
    justify-content: flex-start;
  }
}
@media (max-width: 590px) {
  .ai-action-page .case-image {
    max-width: none;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .ai-action-page .page-hero {
    padding: 70px 0 56px;
  }
  .ai-action-page .page-hero h1 {
    font-size: 2.625rem;
    line-height: 1.08;
  }
  .ai-action-page .page-hero .lede {
    margin-top: 24px;
    font-size: 1.0625rem;
    line-height: 1.55;
  }
  .mobile-copy-line {
    display: block;
  }
  .mobile-final-line {
    display: block;
  }
  .hero {
    margin-top: -14px;
    min-height: min(720px, calc(100svh - 128px));
    padding: clamp(96px, 26vw, 124px) 0 44px;
  }
  .hero-mark {
    top: -2px;
    right: 50%;
    width: min(92vw, 430px);
    transform: translateX(50%);
    opacity: 0.045;
  }
  .hero h1 {
    line-height: 1.24;
  }
  .hero-line-desktop {
    display: none;
  }
  .hero-line-mobile {
    display: block;
  }
  .hero .shell {
    margin: 0 auto;
    transform: none;
    text-align: center;
  }
  .hero h1,
  .hero .lede {
    margin-inline: auto;
  }
  .hero .lede {
    line-height: 1.48;
  }
  .hero-lede-sentence + .hero-lede-sentence {
    margin-top: 8px;
  }
  .hero .actions {
    justify-content: center;
  }
  .hero .actions .button {
    width: auto;
    padding-inline: 22px;
  }
  .section {
    padding: 64px 0;
  }
  .service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .service-column {
    display: contents;
  }
  .service-column:first-child > .offering-item:nth-child(1) { order: 1; }
  .service-column:last-child > .offering-item:nth-child(1) { order: 2; }
  .service-column:first-child > .offering-item:nth-child(2) { order: 3; }
  .service-column:last-child > .offering-item:nth-child(2) { order: 4; }
  .service-column:first-child > .offering-item:nth-child(3) { order: 5; }
  .service-column:last-child > .offering-item:nth-child(3) { order: 6; }
  .service-column:first-child > .offering-item:nth-child(4) { order: 7; }
  .service-column:last-child > .offering-item:nth-child(4) { order: 8; }
  .service-column:first-child > .offering-item:nth-child(5) { order: 9; }
  .offerings-page .offering-item summary {
    min-height: 66px;
    padding: 17px 20px;
  }
  .offerings-page .offering-item > p {
    padding: 0 20px 20px;
  }
  .industries-head {
    gap: 18px;
    margin-bottom: 22px;
  }
  .industries-panel {
    border-radius: 20px;
  }
  .industry-item {
    padding: 20px 17px 18px;
  }
  .industry-item h3 {
    font-size: 1.08rem;
  }
  .industry-item p {
    margin-top: 7px;
    font-size: 0.82rem;
    line-height: 1.42;
  }
  .industries-note {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: left;
  }
  .contact-hero,
  .booking-hero {
    padding: 58px 0 28px;
  }
  .contact-section,
  .booking-section {
    padding: 22px 0 48px;
  }
  .contact-form {
    padding: 22px 18px;
    border-radius: 22px;
    gap: 16px;
  }
  .contact-form textarea {
    min-height: 132px;
  }
  .contact-actions {
    margin-top: 16px;
  }
  .booking-card {
    padding: 8px;
    border-radius: 22px;
  }
  .booking-embed-shell {
    min-height: 720px;
  }
  .booking-frame {
    height: 720px;
    border-radius: 16px;
  }
  .about-page .about-hero {
    padding: 70px 0 62px;
  }
  .about-page .about-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.45rem);
  }
  .about-page .about-hero .lede {
    margin-top: 22px;
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }
  .about-intro-layout,
  .about-two-column,
  .about-focus-layout,
  .about-wide-chapter,
  .about-statement,
  .about-teaching,
  .about-final-copy,
  .about-cta {
    gap: 30px;
  }
  .about-editorial-layout,
  .about-audience {
    gap: 30px;
  }
  .about-prose p {
    font-size: 1rem;
    line-height: 1.72;
  }
  .about-prose-large p {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.36;
  }
  .offerings-prose p {
    font-size: 1rem;
    line-height: 1.72;
  }
  .about-page h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }
  .about-chapter h2,
  .about-belief h2 {
    margin-bottom: 24px;
  }
  .about-proof-section .shell,
  .about-method-section .shell {
    gap: 70px;
  }
  .about-statement,
  .about-belief {
    padding: 28px 24px;
    border-radius: 14px;
  }
  .about-principles-grid {
    grid-template-columns: 1fr;
  }
  .about-principle {
    padding: 28px 24px;
    border-radius: 14px;
  }
  .about-principle h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }
  .about-audience .actions {
    width: 100%;
  }
  .about-audience .button {
    width: 100%;
  }
  .about-final-copy {
    margin-bottom: 54px;
  }
  .about-cta .actions {
    width: 100%;
  }
  .about-cta .button {
    width: 100%;
  }
  .quote-bridge {
    padding: 70px 0 32px;
  }
  .quote-bridge .shell {
    width: min(100% - 28px, 980px);
    padding: 0 14px;
  }
  .quote-bridge .quote {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 1.12;
  }
  .quote-bridge .quote-attribution {
    margin-top: 18px;
    font-size: 0.86rem;
  }
  .quote-bridge {
    background-size: 100% 100%;
  }
  .spark-section {
    padding-top: 28px;
  }
  .spark-section {
    padding-bottom: 76px;
  }
  .spark-section .spark-section-head h2 {
    font-size: clamp(2.45rem, 10vw, 3rem);
    line-height: 1;
  }
  .spark-section-head p {
    margin-top: 24px;
  }
  .spark-section .pill-list {
    gap: 10px 18px;
  }
  .spark-section .find-your-spark-grid > .card {
    min-height: 0;
  }
  .grid.two,
  .grid.three,
  .grid.four,
  .service-list,
  .review-strip {
    grid-template-columns: 1fr;
  }
  .review-strip {
    gap: 24px;
  }
  .cta {
    padding: 32px 24px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .footer-links a {
    width: 100%;
    min-height: 38px;
    padding: 7px 8px;
  }
  .legal {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding-top: 12px;
  }
  .actions .button {
    width: 100%;
  }
}

/* Keep all readable website copy at full contrast in both themes. */
:root {
  --text-solid: #ffffff;
}
:root[data-theme="light"] {
  --text-solid: #000000;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --text-solid: #000000;
  }
}

:is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  label,
  summary,
  span,
  strong,
  em,
  small,
  blockquote,
  figcaption,
  .brand,
  .nav-links a,
  .dropbtn,
  .mobile-nav a,
  .pill,
  .number,
  .link,
  .route-row a,
  .quote-attribution,
  .case .outcome,
  .notice,
  .footer-links a,
  .legal
) {
  color: var(--text-solid) !important;
}

.form input,
.form textarea,
.form select,
.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-solid) !important;
  opacity: 1;
}

.nav-cta,
.button.primary {
  color: #000000 !important;
}

.button.secondary {
  color: var(--text-solid) !important;
}

:root[data-theme="light"] .button.secondary {
  color: #000000 !important;
}

.cta .button.primary,
.nav-cta,
.nav-cta:hover {
  color: #000000 !important;
}

.cta .button.primary.invert-hover:hover {
  color: var(--text-solid) !important;
}

.cta .button.secondary {
  color: var(--text-solid) !important;
}

.cta .button.secondary:hover {
  color: #000000 !important;
}

/* Liquid Glass visual system: monochrome glass with restrained KaiSpark orange. */
:root {
  --paper: #070709;
  --white: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.085);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-shine: rgba(255, 255, 255, 0.34);
  --glass-shadow: rgba(0, 0, 0, 0.46);
  --glass-hover: rgba(255, 255, 255, 0.09);
  --glass-depth: transparent;
  --glass-near-shadow: transparent;
  --glass-inner-outline: transparent;
  --tile-shadow-near: rgba(238, 107, 47, 0.2);
  --tile-shadow-far: rgba(164, 72, 27, 0.3);
  --warm: #ee6b2f;
  --orange-soft: #f18a55;
  --orange-bright: #ff7540;
  --yellow: var(--warm);
  --yellow-soft: var(--warm);
  --blue: var(--warm);
  --blue-bright: var(--warm);
  --navy: #101013;
  --sand: #111114;
  --surface-dark: #0c0c0f;
}

:root[data-theme="light"] {
  --paper: #f4f4f2;
  --white: rgba(255, 255, 255, 0.7);
  --line: rgba(0, 0, 0, 0.15);
  --glass: rgba(255, 255, 255, 0.5);
  --glass-strong: rgba(255, 255, 255, 0.68);
  --glass-border: rgba(22, 22, 26, 0.17);
  --glass-shine: rgba(255, 255, 255, 0.98);
  --glass-shadow: rgba(24, 24, 28, 0.2);
  --glass-hover: rgba(255, 255, 255, 0.82);
  --glass-depth: rgba(30, 30, 34, 0.085);
  --glass-near-shadow: rgba(24, 24, 28, 0.12);
  --glass-inner-outline: rgba(255, 255, 255, 0.92);
  --navy: #eeeeec;
  --sand: #e9e9e7;
  --surface-dark: #f8f8f6;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --paper: #f4f4f2;
    --white: rgba(255, 255, 255, 0.7);
    --line: rgba(0, 0, 0, 0.15);
    --glass: rgba(255, 255, 255, 0.5);
    --glass-strong: rgba(255, 255, 255, 0.68);
    --glass-border: rgba(22, 22, 26, 0.17);
    --glass-shine: rgba(255, 255, 255, 0.98);
    --glass-shadow: rgba(24, 24, 28, 0.2);
    --glass-hover: rgba(255, 255, 255, 0.82);
    --glass-depth: rgba(30, 30, 34, 0.085);
    --glass-near-shadow: rgba(24, 24, 28, 0.12);
    --glass-inner-outline: rgba(255, 255, 255, 0.92);
    --navy: #eeeeec;
    --sand: #e9e9e7;
    --surface-dark: #f8f8f6;
  }
}

body,
.hero,
.page-hero,
.section.alt {
  background: var(--paper);
}

/* Floating liquid-glass navigation. */
.site-header,
:root[data-theme="light"] .site-header {
  padding: 9px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}
.nav {
  height: 62px;
  padding: 0 12px 0 16px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background:
    radial-gradient(120% 170% at 2% -55%, color-mix(in srgb, var(--glass-shine) 34%, transparent), transparent 48%),
    radial-gradient(85% 130% at 102% 150%, rgba(238, 107, 47, 0.1), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--glass-shine) 22%, transparent), transparent 34%),
    linear-gradient(165deg, transparent 48%, var(--glass-depth)),
    var(--glass-strong);
  outline: 1px solid var(--glass-inner-outline);
  outline-offset: -2px;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 88%, transparent),
    inset 1px 0 0 color-mix(in srgb, var(--glass-shine) 30%, transparent),
    inset -1px 0 0 color-mix(in srgb, var(--warm) 10%, transparent),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22),
    0 2px 5px var(--glass-near-shadow),
    0 14px 38px var(--glass-shadow);
  -webkit-backdrop-filter: blur(32px) saturate(165%);
  backdrop-filter: blur(32px) saturate(165%);
}
.home-page .nav {
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 88%, transparent),
    inset 1px 0 0 color-mix(in srgb, var(--glass-shine) 30%, transparent),
    inset -1px 0 0 color-mix(in srgb, var(--warm) 10%, transparent),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}
.home-page [data-header] {
  min-height: 71px;
}
.home-page .site-header.site-header {
  padding: 9px 0 0;
}
.home-page .hero {
  margin-top: -9px;
}
.dropdown-menu,
.mobile-nav.open {
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--glass-shine) 28%, transparent), transparent 50%),
    radial-gradient(85% 80% at 110% 110%, rgba(238, 107, 47, 0.08), transparent 58%),
    linear-gradient(180deg, color-mix(in srgb, var(--glass-shine) 18%, transparent), transparent 30%),
    linear-gradient(165deg, transparent 44%, var(--glass-depth)),
    var(--glass-strong);
  outline: 1px solid var(--glass-inner-outline);
  outline-offset: -2px;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 86%, transparent),
    inset 1px 0 0 color-mix(in srgb, var(--glass-shine) 24%, transparent),
    inset -1px 0 0 color-mix(in srgb, var(--warm) 9%, transparent),
    0 2px 6px var(--glass-near-shadow),
    0 20px 50px var(--glass-shadow);
  -webkit-backdrop-filter: blur(32px) saturate(165%);
  backdrop-filter: blur(32px) saturate(165%);
}
.dropdown-menu {
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055) 18%, transparent 38%),
    radial-gradient(100% 85% at 0% 100%, rgba(255, 255, 255, 0.075), transparent 40%),
    rgba(15, 16, 20, 0.66);
  -webkit-backdrop-filter: blur(36px) saturate(125%) brightness(0.55);
  backdrop-filter: blur(36px) saturate(125%) brightness(0.55);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    ellipse 115% 92% at 50% 52%,
    rgba(18, 19, 24, 0.95) 0%,
    rgba(18, 19, 24, 0.92) 50%,
    rgba(18, 19, 24, 0.8) 76%,
    rgba(18, 19, 24, 0.52) 100%
  );
}
.dropdown-menu a {
  position: relative;
  z-index: 1;
  border-radius: 12px;
}
:root[data-theme="light"] .dropdown-menu {
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.24) 18%, transparent 38%),
    radial-gradient(100% 85% at 0% 100%, rgba(255, 255, 255, 0.42), transparent 40%),
    rgba(244, 244, 241, 0.72);
  -webkit-backdrop-filter: blur(36px) saturate(118%) brightness(1.02);
  backdrop-filter: blur(36px) saturate(118%) brightness(1.02);
}
:root[data-theme="light"] .dropdown-menu::before {
  background: radial-gradient(
    ellipse 115% 92% at 50% 52%,
    rgba(248, 248, 246, 0.97) 0%,
    rgba(248, 248, 246, 0.94) 50%,
    rgba(248, 248, 246, 0.86) 76%,
    rgba(248, 248, 246, 0.64) 100%
  );
}
.dropdown-menu a:hover,
.footer-links a:hover,
.footer-links a:focus-visible {
  background: var(--glass-hover);
}
.theme-toggle,
.menu-toggle {
  border-color: var(--glass-border);
  background: var(--glass);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 70%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

/* One reusable glass surface for every card-like component. */
:is(
  .card,
  .service,
  .case,
  .pill,
  .about-belief,
  .about-principle,
  .about-statement,
  .offerings-editorial-training,
  .notice,
  .form,
  .cta,
  .spark-section .find-your-spark-grid > .card
) {
  position: relative;
  border: 1px solid var(--glass-border) !important;
  background:
    radial-gradient(120% 90% at -8% -18%, color-mix(in srgb, var(--glass-shine) 27%, transparent), transparent 48%),
    radial-gradient(95% 75% at 110% 112%, rgba(238, 107, 47, 0.07), transparent 54%),
    linear-gradient(145deg, color-mix(in srgb, var(--glass-shine) 16%, transparent), transparent 38%),
    linear-gradient(155deg, transparent 42%, var(--glass-depth)),
    var(--glass) !important;
  outline: 1px solid var(--glass-inner-outline);
  outline-offset: -2px;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 82%, transparent),
    inset 1px 0 0 color-mix(in srgb, var(--glass-shine) 22%, transparent),
    inset -1px 0 0 color-mix(in srgb, var(--warm) 8%, transparent),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16),
    0 2px 7px var(--tile-shadow-near),
    0 18px 44px var(--tile-shadow-far) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
}
:is(.card, .service, .case, .about-belief, .about-principle, .offerings-editorial-training) {
  border-radius: 24px;
}
.cta,
.about-statement {
  border-radius: 30px;
}
.pill {
  border-radius: 999px;
}

/* Remove every legacy per-card color assignment. */
.grid > .card,
.service-list > .service,
.grid > .case,
.pill,
.about-name-story,
.about-belief-accent,
.spark-section .find-your-spark-grid > .card {
  border-color: var(--glass-border) !important;
}
.spark-section .find-your-spark-grid > .card::before,
.about-statement::after {
  content: none;
}

/* Glass behaves like glass; orange appears only as purposeful energy. */
:is(.card-link, a.card, a.service, a.case):hover,
:is(.card-link, a.card, a.service, a.case):focus-visible,
.card:hover,
.service:hover,
.case:hover {
  border-color: color-mix(in srgb, var(--warm) 72%, var(--glass-border)) !important;
  background:
    linear-gradient(145deg, rgba(238, 107, 47, 0.12), transparent 38%),
    var(--glass-hover) !important;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 76%, transparent),
    0 0 0 1px rgba(238, 107, 47, 0.16),
    0 18px 48px color-mix(in srgb, var(--tile-shadow-far) 86%, var(--warm)),
    0 0 30px rgba(238, 107, 47, 0.14) !important;
  transform: translateY(-3px);
}

/* AI in Action stories are static editorial rows, not interactive cards. */
.ai-action-page .case:hover {
  transform: none;
}

/* Buttons are compact liquid capsules. */
.button,
.nav-cta {
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(100% 180% at 12% -70%, color-mix(in srgb, var(--glass-shine) 42%, transparent), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--glass-shine) 26%, transparent), transparent 48%),
    linear-gradient(165deg, transparent 42%, var(--glass-depth)),
    var(--glass-strong);
  outline: 1px solid var(--glass-inner-outline);
  outline-offset: -2px;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 92%, transparent),
    inset 1px 0 0 color-mix(in srgb, var(--glass-shine) 22%, transparent),
    inset -1px 0 0 color-mix(in srgb, var(--warm) 10%, transparent),
    0 2px 4px var(--glass-near-shadow),
    0 9px 24px var(--glass-shadow);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}
.button.primary,
.nav-cta,
.cta .button.primary {
  border-color: rgba(255, 155, 100, 0.5);
  background:
    radial-gradient(100% 200% at 14% -80%, rgba(255, 255, 255, 0.48), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 46%),
    var(--warm);
  color: #000 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(238, 107, 47, 0.24);
}
.button:hover,
.nav-cta:hover,
.button:focus-visible,
.nav-cta:focus-visible {
  border-color: var(--warm);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 82%, transparent),
    0 12px 30px var(--glass-shadow),
    0 0 22px rgba(238, 107, 47, 0.18);
}
.button.primary:hover,
.nav-cta:hover,
.cta .button.primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 44%),
    var(--orange-bright);
  color: #000 !important;
}
.button.secondary,
.cta .button.secondary {
  border-color: var(--glass-border) !important;
  background: var(--glass) !important;
}
.offerings-page :is(#ai-training, #career, #business, #ai-systems) > .shell > .actions .button.secondary:hover,
.offerings-page :is(#ai-training, #career, #business, #ai-systems) > .shell > .actions .button.secondary:focus-visible {
  border-color: var(--warm) !important;
  background: var(--warm) !important;
  color: #000 !important;
}

/* Inputs and expanding editorial areas use the same material. */
.form input,
.form textarea,
.form select {
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px !important;
  background: var(--glass) !important;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--glass-shine) 55%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--warm) !important;
  box-shadow: 0 0 0 3px rgba(238, 107, 47, 0.14);
  outline: none;
}

/* Links and small indicators use only KaiSpark orange. */
:is(.link, .route-row a, .offerings-more summary, .socials, .number),
.hero .hero-accent {
  color: var(--warm) !important;
}
.home-page .card .link {
  color: var(--warm) !important;
}
.home-page .why-cards .card:hover {
  transform: none;
}
.spark-section .pill::before {
  background: var(--warm);
  box-shadow: 0 0 12px rgba(238, 107, 47, 0.58);
}

/* Footer and portrait treatment finish the shared system. */
.site-footer {
  background: transparent;
  padding: 64px 0 30px;
}
.site-footer .shell {
  position: relative;
  padding-top: 38px;
}
.site-footer .shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--warm) 58%, var(--line)), var(--line), transparent);
}
.footer-grid {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  outline: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  align-items: center;
  gap: 56px;
}
.site-footer .brand {
  width: fit-content;
  gap: 13px;
  color: var(--text-solid) !important;
  font-size: 1.42rem;
  transition: color 160ms ease, transform 160ms ease;
  transform-origin: left center;
}
.site-footer .brand img {
  display: none;
}
.site-footer .brand::before {
  content: "";
  display: block;
  width: 44px;
  height: 42px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("assets/kaispark-mark.svg") center / 100% 100% no-repeat;
  mask: url("assets/kaispark-mark.svg") center / 100% 100% no-repeat;
}
.site-footer .brand:hover,
.site-footer .brand:focus-visible,
.site-footer .brand:hover > span,
.site-footer .brand:focus-visible > span {
  color: var(--warm) !important;
}
.site-footer .brand:hover,
.site-footer .brand:focus-visible {
  transform: scale(1.05);
  outline: none;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: var(--warm) !important;
  background: transparent;
}
.legal {
  margin-top: 36px;
  padding-top: 0;
  padding-inline: 6px;
}
.about-portrait img {
  box-shadow: 0 22px 56px var(--glass-shadow);
}

@media (max-width: 850px) {
  .site-header {
    position: relative;
  }

  .mobile-nav.open {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    z-index: 2;
    max-height: calc(100dvh - 100px);
    margin: 8px 0 0;
    padding: 16px 20px 20px;
    border-radius: 22px;
    overflow-y: auto;
  }
}

@media (max-width: 590px) {
  [data-header] {
    min-height: 76px;
  }
  .site-header {
    padding: 7px 0;
  }
  .home-page [data-header] {
    min-height: 65px;
  }
  .home-page .site-header.site-header {
    padding: 7px 0 0;
  }
  .home-page .hero {
    margin-top: -3px;
  }
  .nav {
    height: 58px;
    border-radius: 20px;
  }
  :is(.card, .service, .case, .about-belief, .about-principle, .offerings-editorial-training) {
    border-radius: 20px;
  }
  .case-image {
    border-radius: 20px 20px 0 0;
  }
  .cta,
  .about-statement {
    border-radius: 24px;
  }
  .footer-grid {
    padding: 0;
    border-radius: 0;
    gap: 24px;
  }
  .site-footer {
    padding: 34px 0 22px;
  }
  .site-footer .shell {
    padding-top: 28px;
  }
  .site-footer .brand {
    font-size: 1.34rem;
  }
  .site-footer .brand::before {
    width: 40px;
    height: 38px;
  }
  .socials {
    margin-top: 14px;
  }
}

/* Homepage refinements: a clear orange About route and unboxed audience labels. */
.quote-bridge .route-row a {
  color: var(--warm) !important;
}

/* Homepage heading accents must win over the global solid-text readability rule. */
.spark-section .spark-section-head h2 .hero-accent,
.section-head h2 .hero-accent {
  color: var(--warm) !important;
}

/* Top navigation hover color: keep every surface and layout unchanged. */
.site-header .header-brand:hover,
.site-header .header-brand:hover > span,
.site-header .header-brand:focus-visible,
.site-header .header-brand:focus-visible > span,
.site-header .nav-links > a:not(.nav-cta):hover,
.site-header .nav-links > a:not(.nav-cta):focus-visible,
.site-header .dropdown:hover > .dropbtn,
.site-header .dropdown:focus-within > .dropbtn {
  color: var(--warm) !important;
}

.quote-bridge .quote {
  color: #f7f4ee !important;
}

.quote-bridge .quote-attribution {
  color: rgba(247, 244, 238, 0.72) !important;
}

.spark-section .pill-list {
  align-items: center;
  gap: 10px 24px;
}

.spark-section .audience-type {
  position: relative;
  padding: 0 0 0 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  color: #fff !important;
}

:root[data-theme="light"] .spark-section .audience-type {
  color: #000 !important;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .spark-section .audience-type {
    color: #000 !important;
  }
}

.spark-section .audience-type::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 9px color-mix(in srgb, var(--warm) 65%, transparent);
  transform: translateY(-50%);
}

/* These four large cards sit over a nearly solid background, so a live
   backdrop blur adds no useful depth. On a restored-scroll refresh Chrome can
   briefly expose the blur layers as blocky compositor tiles before their text
   is painted. Use the same glass look as an opaque gradient instead, keeping
   the first frame identical to the settled frame. */
.spark-section .find-your-spark-grid > .card {
  background:
    radial-gradient(120% 90% at -8% -18%, rgba(255, 255, 255, 0.09), transparent 48%),
    radial-gradient(95% 75% at 110% 112%, rgba(238, 107, 47, 0.07), transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    linear-gradient(145deg, rgba(26, 26, 33, 0.96), rgba(15, 15, 20, 0.94)) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  contain: paint;
}

:root[data-theme="light"] .spark-section .find-your-spark-grid > .card {
  background:
    radial-gradient(120% 90% at -8% -18%, rgba(255, 255, 255, 0.84), transparent 48%),
    radial-gradient(95% 75% at 110% 112%, rgba(238, 107, 47, 0.06), transparent 54%),
    linear-gradient(145deg, rgba(255, 253, 250, 0.98), rgba(235, 231, 223, 0.94)) !important;
}
/* Accessible text that should not alter the visual layout. */
.sr-only {
  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;
}

/* Offerings page: introduce the catalog clearly and keep the long page moving. */
.offerings-page .offerings-hero {
  padding: clamp(58px, 7vw, 78px) 0 clamp(34px, 4vw, 48px);
}

.offerings-page .offerings-hero .lede {
  max-width: 900px;
  margin-top: 18px;
}

.offerings-page .offerings-hero .hero-accent {
  color: var(--warm) !important;
}

.offerings-page main > .section {
  padding: 68px 0;
}

.offerings-page main > .offerings-overview {
  padding-top: 26px;
  padding-bottom: 62px;
}

.offerings-page .section-head {
  margin-bottom: 30px;
}

.offerings-page .service-list {
  margin-top: 28px;
}

.offerings-page .section > .shell > .actions {
  margin-top: 26px;
}

.offerings-page .offerings-editorial-training {
  margin-bottom: 42px;
}

@media (max-width: 590px) {
  .offerings-page .offerings-hero {
    padding: 48px 0 28px;
  }

  .offerings-page .offerings-hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .offerings-page .offerings-hero .lede {
    margin-top: 14px;
    font-size: 1.12rem;
    line-height: 1.5;
  }

  .offerings-page main > .section {
    padding: 52px 0;
  }

  .offerings-page main > .offerings-overview {
    padding-top: 18px;
    padding-bottom: 50px;
  }

  .offerings-page .section-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .offerings-page .service-list {
    margin-top: 22px;
  }

  .offerings-page .section > .shell > .actions {
    margin-top: 22px;
  }

  .offerings-page .offerings-editorial-training {
    margin-bottom: 34px;
  }
}

/* Offering category artwork: a quiet visual bridge between title and copy. */
.offerings-page .offering-category-head {
  grid-template-columns: minmax(250px, 0.78fr) 132px minmax(420px, 1.22fr);
  gap: clamp(26px, 3.2vw, 48px);
  align-items: center;
}

.offering-category-icon {
  display: block;
  width: 132px;
  height: 134px;
  object-fit: contain;
  justify-self: center;
  transform: translateX(-32px);
  filter: drop-shadow(0 12px 24px rgba(238, 107, 47, 0.13));
}

@media (max-width: 1000px) and (min-width: 851px) {
  .offerings-page .offering-category-head {
    grid-template-columns: minmax(210px, 0.72fr) 108px minmax(340px, 1.28fr);
    gap: 24px;
  }

  .offering-category-icon {
    width: 108px;
    height: 110px;
    transform: translateX(-18px);
  }
}

@media (max-width: 850px) {
  .offerings-page .offering-category-head {
    grid-template-columns: minmax(0, auto) minmax(104px, 1fr);
    gap: 18px 16px;
    align-items: center;
  }

  .offering-category-icon {
    width: 104px;
    height: 106px;
    justify-self: center;
    transform: none;
  }

  #business .offering-category-icon {
    transform: translateX(-12px);
  }

  .offerings-page .offering-category-head > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .offerings-page .offering-category-head {
    grid-template-columns: minmax(0, auto) minmax(90px, 1fr);
    gap: 16px 12px;
  }

  .offering-category-icon {
    width: 90px;
    height: 92px;
  }

  #business .offering-category-icon {
    transform: translateX(-10px);
  }
}

/* AI in Action: equal-height story previews that open into the full case. */
.ai-action-page .case {
  padding: 0;
  overflow: hidden;
}

.ai-action-page .case-copy {
  display: flex;
  flex-direction: column;
  height: 360px;
  min-height: 360px;
  padding: 30px;
}

.ai-action-page .case-details {
  min-height: 0;
  overflow: hidden;
}

.ai-action-page .case.is-collapsible:not(.is-expanded) .case-details {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
}

.ai-action-page .case-toggle {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 0 2px;
  border: 0;
  background: transparent;
  color: var(--warm);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.ai-action-page .case-toggle:hover,
.ai-action-page .case-toggle:focus-visible {
  color: var(--ink);
}

.ai-action-page .case-toggle:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 5px;
}

.ai-action-page .case-toggle[hidden] {
  display: none;
}

.ai-action-page .case.is-expanded .case-copy {
  height: auto;
}

.ai-action-page .case.is-expanded .case-details {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.ai-action-page .case-copy h2 {
  margin: 0 0 18px;
}

.ai-action-page .case-copy p {
  margin: 0 0 18px;
}

.ai-action-page .case-copy .outcome {
  margin: 0;
  padding-top: 18px;
}

@media (min-width: 851px) {
  .ai-action-page .case {
    height: 500px;
    min-height: 500px;
    grid-template-rows: minmax(0, 1fr);
  }

  .ai-action-page .case.is-expanded {
    height: auto;
  }

  .ai-action-page .case-copy {
    grid-column: 1;
    grid-row: 1;
    height: 500px;
    min-height: 500px;
    padding: clamp(38px, 4.5vw, 56px) clamp(34px, 4vw, 52px);
  }

  .ai-action-page .case:nth-child(even) .case-copy {
    grid-column: 2;
  }

  .ai-action-page .case-image {
    grid-row: 1;
  }

  .ai-action-page .case.is-expanded .case-image {
    min-height: 100%;
  }
}

@media (max-width: 850px) {
  .ai-action-page .case-image {
    width: 100%;
    margin: 0;
    border-radius: 24px 24px 0 0;
  }
}
