:root {
  color-scheme: light;
  --heading-font: "Fraunces", "Inter", system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --body-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Base */
  --background: #f7f8fa;
  --section: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --surface-muted: #f3f4f6;
  --surface-inverse: #111827;

  /* Text */
  --ink: #111827;
  --ink-soft: #374151;
  --ink-inverse: #ffffff;
  --muted: #6b7280;

  /* Accent */
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-soft: #fed7aa;
  --accent-subtle: #fdba74;
  --accent-muted: rgba(249, 115, 22, 0.6);
  --accent-border: rgba(249, 115, 22, 0.15);
  --accent-wash: rgba(249, 115, 22, 0.11);
  --accent-wash-soft: rgba(249, 115, 22, 0.07);

  /* AI highlight */
  --ai-glow: #6366f1;
  --ai-glow-soft: #a5b4fc;
  --ai-soft: rgba(99, 102, 241, 0.04);
  --ai-border: rgba(99, 102, 241, 0.2);
  --ai-border-strong: rgba(99, 102, 241, 0.35);
  --ai-line: rgba(99, 102, 241, 0.16);

  /* Semantic feedback */
  --success: #22c55e;
  --success-soft: #dcfce7;
  --success-border: rgba(34, 197, 94, 0.35);

  /* Utility */
  --border: rgba(17, 24, 39, 0.08);
  --border-strong: rgba(17, 24, 39, 0.16);
  --stroke-muted: rgba(17, 24, 39, 0.2);
  --surface-hover: rgba(17, 24, 39, 0.04);
  --surface-overlay: rgba(247, 248, 250, 0.98);
  --surface-fade: rgba(247, 248, 250, 0);
  --surface-fade-strong: rgba(247, 248, 250, 1);
  --hero-wash-strong: rgba(247, 248, 250, 0.92);
  --hero-wash-medium: rgba(247, 248, 250, 0.7);
  --hero-wash-light: rgba(247, 248, 250, 0.2);
  --grid-line: rgba(17, 24, 39, 0.05);
  --radial-ink: rgba(17, 24, 39, 0.06);
  --inverse-soft: rgba(255, 255, 255, 0.75);
  --inverse-muted: rgba(255, 255, 255, 0.8);
  --inverse-label: rgba(255, 255, 255, 0.85);
  --inverse-strong: rgba(255, 255, 255, 0.92);
  --inverse-overlay-soft: rgba(17, 24, 39, 0.05);
  --inverse-overlay-medium: rgba(17, 24, 39, 0.5);
  --inverse-overlay-strong: rgba(17, 24, 39, 0.75);
  --inverse-panel: rgba(17, 24, 39, 0.7);
  --inverse-panel-strong: rgba(17, 24, 39, 0.75);
  --inverse-scrim: rgba(17, 24, 39, 0.65);
  --surface-inverse-soft: rgba(17, 24, 39, 0.08);

  /* Shadows */
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.05);
  --shadow-accent: 0 16px 30px rgba(249, 115, 22, 0.22);
  --shadow-success: 0 12px 24px rgba(34, 197, 94, 0.18);

}

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

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--background);
  line-height: 1.65;
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

main a:not(.button):not(.text-link):not(.logo):not(.mega-link):not(.mega-item):not(.reference-story-link) {
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(860px, 90vw);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(247, 248, 250, 0.78);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
  border-bottom: none;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
}

.site-header.is-scrolled {
  background: rgba(247, 248, 250, 0.94);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.34) 0%,
    rgba(17, 24, 39, 0.16) 55%,
    rgba(17, 24, 39, 0) 100%
  );
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 78px;
  padding: 14px clamp(14px, 1.8vw, 24px);
  gap: clamp(20px, 2vw, 32px);
}

.logo {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 44px;
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.03);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0;
  line-height: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle::before {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.menu-toggle::after {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: clamp(18px, 2vw, 30px);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.site-nav > *,
.header-utility > * {
  display: inline-flex;
  align-items: center;
}

.header-utility {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1;
}

.nav-details {
  position: relative;
}

.nav-details::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 28px;
}

.chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  color: inherit;
  opacity: 0.78;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 12px 0;
  font: inherit;
  line-height: 1;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a {
  position: relative;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav a {
  padding: 12px 0;
  line-height: 1;
}

.site-nav a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 1;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-details.is-open .nav-trigger::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after {
  transform: scaleX(1);
}

.nav-details.is-open .chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 8px;
  min-width: 240px;
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.14);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.mega-menu {
  position: fixed;
  width: min(1120px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  min-width: min(720px, calc(100vw - 40px));
  padding: 18px;
  left: 50%;
  right: auto;
  margin: 0;
  transform: translate(-50%, 10px);
  top: calc(var(--header-height, 78px) - 2px);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  box-shadow: 0 34px 84px rgba(17, 24, 39, 0.18);
}

.mega-menu-inner {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mega-item {
  display: grid;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  min-width: 0;
}

.mega-item::after {
  display: none;
}

.mega-link {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(247, 248, 250, 0.92) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  background: #ffffff;
  border-color: var(--accent-border);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.mega-media {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.04);
}

.mega-media img {
  height: 100%;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.04rem;
}

.mega-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mega-item a {
  color: var(--ink-soft);
  font-weight: 500;
}

.mega-arrow {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mega-link:hover .mega-arrow,
.mega-link:focus-visible .mega-arrow {
  color: var(--accent-hover);
  transform: translateX(4px);
}

.mega-item:hover .mega-media img {
  opacity: 1;
  transform: scale(1.04);
}

.language-switch .dropdown {
  min-width: 120px;
  left: auto;
  right: 0;
}

.language-menu {
  gap: 8px;
}

.nav-details.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-details.is-open .mega-menu {
  transform: translate(-50%, 0);
}

.dropdown a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown button {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
  min-height: 44px;
  text-align: left;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown a:hover,
.dropdown a:focus-visible,
.dropdown button:hover,
.dropdown button:focus-visible {
  background: rgba(17, 24, 39, 0.05);
  color: var(--ink);
}

.language-menu button.is-active {
  color: var(--accent);
  font-weight: 600;
  background: rgba(249, 115, 22, 0.08);
}

.language-menu button.is-active:hover,
.language-menu button.is-active:focus-visible {
  background: rgba(249, 115, 22, 0.14);
  color: var(--accent);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .site-nav a,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .nav-trigger,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .header-utility,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle {
  color: var(--inverse-strong);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .site-nav a:hover,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .site-nav a:focus-visible,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .nav-trigger:hover,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .nav-trigger:focus-visible {
  color: var(--ink-inverse);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle {
  color: var(--inverse-strong);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .header-utility .button.header {
  color: var(--inverse-strong);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .header-utility .button.header:hover,
.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .header-utility .button.header:focus-visible {
  color: var(--ink-inverse);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .chevron {
  opacity: 0.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-accent);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 24, 39, 0.18);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(249, 115, 22, 0.26);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

.button.header {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  position: relative;
  box-shadow:
    0 4px 12px rgba(17, 24, 39, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.header-utility .button.header::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.header-utility .button.header:hover::after,
.header-utility .button.header:focus-visible::after {
  transform: scaleX(1);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink-inverse);
  box-shadow: none;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.prominent {
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.2);
}

.button.primary.prominent:hover {
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.26);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.has-icon-arrow,
.mega-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.icon-arrow {
  display: inline-flex;
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.icon-arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button .icon-arrow,
.text-link .icon-arrow,
.segment-link .icon-arrow,
.card-link .icon-arrow,
.reference-story-link .icon-arrow,
.mega-arrow .icon-arrow {
  transition: transform 0.2s ease;
}

.button:hover .icon-arrow,
.text-link:hover .icon-arrow,
.segment-card:hover .segment-link .icon-arrow,
.card:hover .card-link .icon-arrow,
.reference-story:hover .reference-story-link .icon-arrow,
.mega-link:hover .mega-arrow .icon-arrow,
.mega-link:focus-visible .mega-arrow .icon-arrow {
  transform: translateX(2px);
}

.hero {
  position: relative;
  padding: clamp(92px, 9.8vw, 118px) 0 clamp(40px, 4vw, 56px);
  min-height: clamp(560px, 92svh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--surface-inverse);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 64svh, 620px);
  padding-inline: clamp(14px, 1.8vw, 22px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(760px, 100%);
  margin-top: clamp(-30px, -2.8vw, -16px);
  padding: clamp(8px, 1vw, 14px) 0;
  animation: hero-fade-up 0.55s ease both;
}

.hero .eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  margin: 0 0 14px;
  text-shadow: 0 3px 18px rgba(17, 24, 39, 0.35);
}

.hero .eyebrow::after {
  content: none;
}

.hero h1 {
  color: var(--ink-inverse);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  text-wrap: balance;
  text-shadow: 0 6px 30px rgba(17, 24, 39, 0.38);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: hero-fade-up 0.75s ease both;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0.96;
  transform: scale(1.01);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(17, 24, 39, 0.78) 0%,
      rgba(17, 24, 39, 0.56) 34%,
      rgba(17, 24, 39, 0.24) 62%,
      rgba(17, 24, 39, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(17, 24, 39, 0.2) 0%,
      rgba(17, 24, 39, 0.1) 48%,
      rgba(17, 24, 39, 0.18) 100%
    );
  pointer-events: none;
}

.eyebrow {
  text-transform: none;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: rgba(17, 24, 39, 0.62);
  font-weight: 700;
  margin: 0 0 12px;
}

.eyebrow::after {
  content: " •";
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: var(--heading-font);
  font-weight: 500;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 680px;
  line-height: 1.58;
  font-weight: 400;
  text-shadow: 0 3px 20px rgba(17, 24, 39, 0.35);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
}

.hero-point {
  display: inline-flex;
  align-items: center;
}

.hero-point + .hero-point::before {
  content: "•";
  color: var(--accent);
  font-size: 1.65em;
  line-height: 1;
  margin: 0 0.42em 0 0.3em;
  text-shadow: none;
}


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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(249, 115, 22, 0.18),
      transparent 34%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );
  background-size: 100% 100%, 56px 56px, 56px 56px;
  opacity: 1;
  z-index: 0;
}

.faq-section {
  padding: 90px 0;
  background: var(--background);
}

.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "\2212";
}

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

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.entity-definition {
  padding: 30px 0;
  background: var(--background);
}

.entity-definition p {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.logo-cloud {
  overflow: hidden;
}

.logo-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 18px 0;
  background: var(--background);
}

.logo-cloud:hover .logo-track {
  animation-play-state: paused;
}

.logo-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: logo-marquee 60s linear infinite;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: 56px;
}

.logo-set img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  filter: none;
}

.positioning {
  padding: 70px 0;
}

.positioning p {
  font-size: 1.1rem;
  color: var(--muted);
}

.agent-platform-teaser {
  padding: 74px 0;
  background:
    radial-gradient(circle at top left, var(--ai-soft), transparent 32%),
    linear-gradient(180deg, var(--background) 0%, var(--section) 100%);
}

.agent-platform-header {
  text-align: left;
  margin-bottom: 26px;
}

.agent-platform-subtitle {
  margin: 0;
  max-width: 680px;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--muted);
}

.agent-platform-teaser .split-section-emphasis-right {
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.24fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.agent-platform-teaser .open-story-band {
  max-width: 54ch;
  gap: 22px;
}

.agent-platform-header h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  line-height: 1.05;
}

.feature-list {
  margin: 0;
  padding: 0;
}

.feature-list-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.feature-list > div {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.feature-list dt {
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.feature-list dd {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.58;
  color: var(--muted);
  text-wrap: pretty;
}

.link-list {
  display: grid;
  gap: 0;
  align-content: start;
}

.link-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.link-list-item {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.link-list-item:hover,
.link-list-item:focus-visible {
  border-top-color: var(--accent-border);
  transform: translateY(-1px);
}

.link-list-title {
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.link-list-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  text-wrap: pretty;
}

.homepage-domain-map {
  background:
    radial-gradient(circle at top center, rgba(99, 102, 241, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(244, 247, 252, 0.96) 100%);
}

.homepage-domain-map .section-header {
  margin-inline: auto;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.topic-cluster {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px 0 0;
  border-top: 2px solid rgba(17, 24, 39, 0.12);
}

.topic-cluster-growth {
  border-top-color: rgba(249, 115, 22, 0.45);
}

.topic-cluster-service {
  border-top-color: rgba(99, 102, 241, 0.45);
}

.topic-cluster-digital {
  border-top-color: rgba(34, 197, 94, 0.4);
}

.topic-cluster-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.topic-item {
  display: grid;
  gap: 6px;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.topic-item:hover,
.topic-item:focus-visible {
  transform: translateY(-1px);
  border-bottom-color: var(--accent-border);
}

.topic-item-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.topic-item-title .icon-arrow {
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topic-item:hover .topic-item-title .icon-arrow,
.topic-item:focus-visible .topic-item-title .icon-arrow {
  opacity: 1;
  transform: translateX(0);
}

.topic-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  text-wrap: pretty;
}

.topic-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .topic-grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topic-grid {
    gap: 18px;
  }

  .topic-cluster {
    gap: 4px;
    padding: 16px 0 0;
  }

  .topic-cluster-label {
    margin-bottom: 6px;
  }

  .topic-item {
    padding: 14px 4px 16px;
    border-radius: 10px;
    transition: background 0.15s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .topic-item-title .icon-arrow {
    opacity: 1;
    transform: translateX(0);
    color: rgba(17, 24, 39, 0.4);
  }

  .topic-item:active {
    background: rgba(17, 24, 39, 0.04);
  }

  .topic-item:active .topic-item-title .icon-arrow {
    color: var(--accent);
  }

  .topic-item p {
    font-size: 0.94rem;
    line-height: 1.5;
  }
}

.agent-platform-teaser .media-split-asset-ui {
  min-height: clamp(320px, 35vw, 440px);
  padding: 4px;
}

.agent-platform-flow {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agent-platform-flow span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.agent-platform-flow span:not(:last-child)::after {
  content: "→";
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.agent-platform-footer {
  margin-top: 14px;
  display: grid;
  justify-items: start;
  gap: 10px;
  text-align: left;
}

.agent-platform-footer p {
  color: var(--muted);
  font-size: 0.96rem;
}

.platform-page .product-hero {
  padding-bottom: 56px;
}

.platform-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 38vw, 480px);
  padding: 10px;
  border-radius: 32px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow:
    0 24px 42px rgba(17, 24, 39, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 250, 0.94) 100%);
}

.platform-hero-visual img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  display: block;
  border-radius: calc(32px - 10px);
}

.platform-hero-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(17, 24, 39, 0.04));
}

.platform-foundation {
  padding: 40px 0 72px;
  background: var(--background);
}

.platform-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 26px;
  text-align: left;
}

.platform-pillar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.platform-pillar p {
  margin: 0;
  color: var(--muted);
}

.platform-workflow {
  padding: 72px 0;
  background: var(--section);
}

.platform-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.platform-step {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.platform-step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-inverse);
  color: var(--ink-inverse);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.platform-step p {
  color: var(--muted);
}

.platform-model {
  padding: 28px 0 72px;
  background: var(--background);
}

.platform-model-copy {
  display: grid;
  gap: 16px;
  max-width: 58ch;
}

.platform-model-copy p {
  color: var(--muted);
}

.platform-model .proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}

.platform-model-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.platform-model .media-split-visual {
  min-height: clamp(260px, 30vw, 360px);
}

.platform-model.section-shell-invert .media-split-visual {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.platform-model.section-shell-invert .media-split-visual::before {
  border-color: rgba(255, 255, 255, 0.12);
}

.platform-model.section-shell-invert .media-split-asset-photo img {
  opacity: 0.96;
}

.platform-impact {
  padding: 28px 0 72px;
  background: var(--background);
}

.platform-impact .topic-grid {
  gap: 28px;
}

.platform-impact .topic-cluster {
  gap: 14px;
}

.platform-impact .topic-item {
  padding-top: 4px;
  padding-bottom: 16px;
}

.products {
  padding: 80px 0 60px;
  background: var(--section);
}

.products .section-header,
.platform-impact .section-header {
  margin-bottom: 40px;
}

.segment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 30px;
}

.segment-card {
  min-height: 100%;
  padding: 20px 0 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  box-shadow: none;
  gap: 14px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.segment-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
}

.segment-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.segment-title h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.segment-card p {
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--muted);
}

.segment-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
  opacity: 0.95;
}

.segment-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
}

.segment-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}

.section-header {
  margin-bottom: 32px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
}

.text-muted {
  color: var(--muted);
}

.team-support {
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
  justify-content: center;
}

.team-support-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
}

.team-support-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.team-support-chip strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 560px) {
  .team-support-chip {
    padding: 14px 18px;
    border-radius: 18px;
    align-items: flex-start;
  }
}

.small-note {
  margin: 12px auto 0;
  max-width: 820px;
  font-size: 0.9rem;
}

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

.card {
  background: var(--surface-inverse);
  padding: 0;
  border-radius: 0;
  border: none;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  color: var(--ink-inverse);
  position: relative;
}

.card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--inverse-overlay-soft) 0%,
    var(--inverse-overlay-medium) 70%,
    var(--inverse-overlay-strong) 100%
  );
  z-index: 1;
}

.card-content {
  padding: 20px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
  min-height: 300px;
  align-content: end;
}

.card-category {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--inverse-label);
}

.card p {
  color: var(--inverse-strong);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, max-height 0.25s ease;
}

.card-link {
  color: var(--ink-inverse);
}


.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card:hover p {
  opacity: 1;
  max-height: 320px;
}

.training {
  padding: clamp(76px, 7vw, 104px) 0;
  border-top: 0;
}

.offer-panel {
  padding: clamp(28px, 3vw, 40px);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.offer-panel-flat {
  padding: 0;
}

.offer-panel-accent {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.offer-panel-copy {
  max-width: 58ch;
  gap: 18px;
}

.offer-panel-outcome {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  color: var(--ink-soft);
  font-weight: 500;
}

.offer-panel-outcomes {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  display: grid;
  gap: 12px;
}

.offer-panel-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
}

.offer-panel-outcomes .outcome-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.18em;
  color: var(--accent);
}

.offer-panel-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.offer-panel-visual {
  position: relative;
  min-height: 360px;
}

.offer-panel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.18));
  pointer-events: none;
}

.training.section-shell-invert .offer-panel-copy {
  max-width: 60ch;
}

.training.section-shell-invert .section-header {
  max-width: 820px;
}

.training.section-shell-invert .offer-panel-outcome {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: var(--inverse-strong);
}

.training.section-shell-invert .offer-panel-outcomes {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.training.section-shell-invert .offer-panel-outcomes li {
  color: var(--inverse-strong);
}

.training.section-shell-invert .button.prominent {
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.training.section-shell-invert .button.primary.prominent:hover {
  box-shadow: 0 22px 40px rgba(249, 115, 22, 0.34);
}

.training.section-shell-invert .offer-panel-visual {
  min-height: clamp(320px, 32vw, 400px);
}

.training.section-shell-invert .offer-panel-visual::after {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.12));
}

.training.section-shell-invert .offer-panel-visual::before {
  border-color: rgba(255, 255, 255, 0.12);
}

.training-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.training-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 40px;
}

.training-copy .card-category {
  color: var(--ink-soft);
}

.training-copy p {
  color: var(--muted);
}

.outcome {
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.training-visual {
  min-height: 260px;
  height: 100%;
  background: linear-gradient(
      140deg,
      var(--accent-wash),
      rgba(17, 24, 39, 0.3)
    ),
    url("https://zarnnrxwzoxvovjhovhu.supabase.co/storage/v1/object/public/images/general/client-workshops-neurosys.jpg")
      center/cover no-repeat;
}

.muted-list {
  color: var(--muted);
  margin: 12px 0 0;
}

.target-audience {
  padding: 50px 0 10px;
  background: var(--background);
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.bullet-list li {
  color: var(--muted);
}

.featured-activities {
  padding: 40px 0 80px;
  background: var(--background);
}

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

.featured-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.featured-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.featured-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.featured-card:hover .featured-media img {
  transform: scale(1.03);
}

.featured-body {
  display: grid;
  gap: 14px;
  padding: 24px 26px 28px;
  align-content: start;
}

.featured-body p {
  color: var(--muted);
}

/* story-shelf: horizontal scroll-snap primitive for case stories, news,
   workshops, and proof points. Reusable across homepage, agent-platform,
   services and applications. */
.featured-stories {
  padding: 40px 0 80px;
  background: var(--background);
}

.story-shelf {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.story-shelf-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px 32px;
  flex-wrap: wrap;
}

.story-shelf-intro {
  display: grid;
  gap: 6px;
  max-width: 56ch;
}

.story-shelf-intro .eyebrow {
  margin: 0;
}

.story-shelf-intro h2 {
  margin: 0;
}

.story-shelf-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.story-shelf-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: var(--surface);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.story-shelf-button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.story-shelf-button:hover:not([disabled]) {
  border-color: var(--accent);
  color: var(--accent);
}

.story-shelf-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.story-shelf-button[disabled] {
  opacity: 0.32;
  cursor: not-allowed;
}

.story-shelf-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, calc((100% - 56px) / 3));
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Padding gives the box-shadow and hover-lift room to breathe inside the
     scroll container (overflow-x:auto implicitly clips overflow-y).
     Negative margin keeps the cards aligned with the container edges. */
  padding: 16px 32px 56px;
  margin: -16px -32px -56px;
  scroll-padding-left: 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 24, 39, 0.16) transparent;
}

.story-shelf-track::-webkit-scrollbar {
  height: 6px;
}

.story-shelf-track::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.16);
  border-radius: 999px;
}

.story-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  /* Softer shadow than premium-surface so the scroll container can fit it
     comfortably without aggressive side padding. */
  box-shadow:
    0 12px 26px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 36px rgba(17, 24, 39, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.story-card-media {
  position: relative;
  overflow: hidden;
}

.story-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.story-card:hover .story-card-media img {
  transform: scale(1.04);
}

.story-card-body {
  display: grid;
  gap: 12px;
  padding: 24px 26px 28px;
  align-content: start;
}

.story-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.story-card-body h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  text-wrap: balance;
}

.story-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.story-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 4px;
  font-weight: 500;
  color: var(--accent);
}

.section-shell-invert .story-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: var(--ink-inverse);
}

.section-shell-invert .story-card-body p {
  color: var(--inverse-muted);
}

.section-shell-invert .story-shelf-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink-inverse);
}

.section-shell-invert .story-shelf-button:hover:not([disabled]) {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1080px) {
  .story-shelf-track {
    grid-auto-columns: minmax(0, calc((100% - 28px) / 2));
  }
}

@media (max-width: 900px) {
  .story-shelf-track {
    display: flex;
    flex-direction: row;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    gap: 18px;
    padding: 16px 20px 48px;
    margin: -16px -20px -48px;
    scroll-padding-left: 20px;
  }

  .story-card {
    flex: 0 0 86%;
    min-width: 0;
    width: 86%;
  }

  .story-card-media img {
    height: 180px;
  }

  .story-card-body {
    padding: 20px 22px 24px;
  }
}

.news-hero {
  padding: 130px 0 24px;
  background: var(--background);
}

.news-hero .eyebrow {
  margin-bottom: 14px;
}

.news-hero h1 {
  margin-bottom: 18px;
}

.news-hero .hero-subtitle {
  color: var(--muted);
  text-shadow: none;
  margin-bottom: 0;
  max-width: 640px;
  line-height: 1.65;
}

.news-list {
  padding: 40px 0 96px;
  background: var(--background);
}

.news-grid {
  display: grid;
  gap: 28px;
}

.news-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.news-card-media {
  position: relative;
  overflow: hidden;
  background: var(--surface-muted);
  aspect-ratio: 4 / 3;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-body {
  display: grid;
  gap: 12px;
  padding: 28px 30px 30px;
  align-content: start;
}

.news-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-card-date {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.news-card-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
  display: inline-block;
}

.news-card-body h3 {
  font-size: 1.32rem;
  margin: 2px 0 0;
  line-height: 1.25;
}

.news-card-body p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.news-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
}

.news-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 14px;
}

.news-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  background: var(--accent-wash-soft);
  color: var(--accent-hover);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-grid-secondary-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 4px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.news-grid-secondary-header h2 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.news-grid-secondary-count {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.news-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.news-card.compact {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}

.news-card.compact .news-card-media {
  aspect-ratio: 16 / 10;
}

.news-card.compact .news-card-body {
  padding: 22px 24px 26px;
  gap: 10px;
}

.news-card.compact .news-card-body h3 {
  font-size: 1.18rem;
}

.news-card.compact .news-card-body p {
  font-size: 0.94rem;
}

.news-card.featured {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.news-card.featured .news-card-media {
  aspect-ratio: 16 / 11;
}

.news-card.featured .news-card-body {
  padding: 40px 44px 44px;
  gap: 16px;
}

.news-card.featured .news-card-body h3 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.news-card.featured .news-card-body p {
  font-size: 1.02rem;
}

.news-card-featured-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.news-card-featured-flag::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.news-detail {
  padding: 110px 0 100px;
  background: var(--background);
}

.news-detail-inner {
  display: grid;
  gap: 24px;
  width: min(820px, 92vw);
  margin: 0 auto;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  margin-bottom: 4px;
}

.news-back-link:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  color: var(--ink);
}

.news-detail-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 -4px;
}

.news-detail-meta-date,
.news-detail-meta-read {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.news-detail-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
  display: inline-block;
}

.news-detail h1 {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin: 4px 0 0;
}

.news-detail .hero-subtitle {
  color: var(--ink-soft);
  text-shadow: none;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: none;
}

.news-detail-media {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--surface-muted);
  aspect-ratio: 16 / 9;
  margin-top: 8px;
}

.news-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail-content {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.news-detail-content p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.news-detail-content h2 {
  margin: 36px 0 4px;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
}

.news-detail-content > h2:first-child {
  margin-top: 8px;
}

.case-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 4px 0 0;
}

.case-profile-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.case-profile-info {
  display: grid;
  gap: 4px;
}

.case-profile-name {
  font-family: var(--heading-font);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.15;
}

.case-profile-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 16px 0 8px;
}

.case-stat {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.case-stat:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.case-stat-value {
  font-family: var(--heading-font);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

.case-stat-label {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.case-tag {
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.news-detail-content ul {
  padding-left: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
}

.news-detail-content li {
  line-height: 1.65;
  color: var(--ink-soft);
  font-size: 1rem;
  padding-left: 24px;
  position: relative;
}

.news-detail-content li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.news-detail-content li strong {
  color: var(--ink);
}

.case-cta {
  margin-top: 32px;
  padding: 32px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  display: grid;
  gap: 16px;
}

.case-cta p {
  color: var(--ink) !important;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
}

.case-cta .button {
  width: fit-content;
}

.case-cta .button.ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
  box-shadow: none;
}

.case-cta .button.ghost:hover {
  background: var(--surface-hover);
  border-color: var(--ink);
  color: var(--ink);
}

.case-cta .button.ghost:first-of-type {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-inverse);
  box-shadow: var(--shadow-accent);
}

.case-cta .button.ghost:first-of-type:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--ink-inverse);
}

.case-cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.related-stories {
  padding: 64px 0 96px;
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
}

.related-stories-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.related-stories-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.related-stories-header h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  margin: 0;
}

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

.related-story {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.related-story:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.related-story-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.related-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.related-story:hover .related-story-media img {
  transform: scale(1.04);
}

.related-story-body {
  padding: 20px 22px 22px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.related-story-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.related-story-body h3 {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
}

.related-story-arrow {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.news-cta {
  padding: 64px 0 96px;
  background: var(--background);
}

.news-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  background: var(--surface-inverse);
  color: var(--ink-inverse);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.news-cta-copy {
  flex: 1 1 320px;
  display: grid;
  gap: 8px;
}

.news-cta-copy h2 {
  margin: 0;
  color: var(--ink-inverse);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.news-cta-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

.news-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-cta-actions .news-cta-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--ink-inverse);
}

.news-cta-actions .news-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 960px) {
  .news-card,
  .news-card.featured {
    grid-template-columns: 1fr;
  }

  .news-card-media {
    aspect-ratio: 16 / 10;
  }

  .news-card.featured .news-card-media {
    aspect-ratio: 16 / 10;
  }

  .news-card.featured .news-card-body {
    padding: 28px 28px 30px;
  }

  .news-grid-secondary {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }

  .related-stories-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .news-hero {
    padding: 110px 0 16px;
  }

  .news-list {
    padding: 28px 0 72px;
  }

  .news-card-body {
    padding: 22px 22px 24px;
  }

  .news-detail {
    padding: 100px 0 72px;
  }

  .news-detail-content p {
    font-size: 1rem;
  }

  .case-profile {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px 22px;
  }

  .case-profile-logo {
    width: 52px;
    height: 52px;
  }

  .case-cta {
    padding: 26px 24px;
  }

  .related-stories {
    padding: 48px 0 72px;
  }
}

.platforms {
  padding: 80px 0;
  background: var(--background);
}

.platforms-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: 32px;
  align-items: start;
}

.platforms-list {
  display: grid;
  gap: 10px;
}

.platform-tab {
  text-align: left;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 12px 14px;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.platform-tab:hover,
.platform-tab:focus-visible {
  border-color: var(--border-strong);
  color: var(--ink);
}

.platform-tab.active {
  border-color: var(--accent-subtle);
  color: var(--ink);
  background: var(--surface-muted);
}

.platforms-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 24px 28px;
}

.platform-panel {
  display: none;
  gap: 12px;
}

.platform-panel.active {
  display: grid;
}

.platform-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.platform-panel-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.platform-panel-badge {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.platform-panel-logo img {
  max-height: 56px;
  width: auto;
}

.platform-panel p {
  color: var(--muted);
}

.platform-panel-subtitle {
  font-weight: 600;
  color: var(--ink);
}

.platform-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}


.events {
  padding: 90px 0;
  background: var(--background);
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 8vw, 118px) 0 clamp(74px, 7vw, 102px);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 250, 0.98) 100%);
}

.product-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0));
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
  min-height: clamp(360px, 42vw, 520px);
}

.product-hero-inner > :first-child {
  display: grid;
  align-content: center;
  gap: 18px;
}

.product-hero .eyebrow {
  margin-bottom: 0;
}

.product-hero .eyebrow::after {
  content: none;
}

.product-hero h1 {
  text-wrap: balance;
}

.product-hero .hero-subtitle {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.product-hero .hero-actions {
  margin-top: 4px;
}

.product-hero .button.primary {
  box-shadow: var(--shadow-accent);
}

.product-hero .button.primary:hover {
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.24);
}

.product-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 40vw, 500px);
  border-radius: 32px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow:
    0 24px 42px rgba(17, 24, 39, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  background: linear-gradient(
      140deg,
      var(--accent-wash),
      rgba(17, 24, 39, 0.25)
    ),
    url("images/assistant-mock.svg") center/cover no-repeat;
}

.product-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(17, 24, 39, 0.08));
  pointer-events: none;
}

.product-hero-visual.hero-dialogue-agents {
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/hero-dialogue-agents.svg") center/contain no-repeat,
    var(--surface);
}
.product-hero-visual.hero-dialogue-agents::after {
  display: none;
}

.product-hero-visual.hero-process-opt {
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/hero-process-optimization.svg") center/contain no-repeat,
    var(--surface);
}
.product-hero-visual.hero-process-opt::after {
  display: none;
}

.product-hero-visual.hero-ai-products {
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/hero-ai-products.svg") center/contain no-repeat,
    var(--surface);
}
.product-hero-visual.hero-ai-products::after {
  display: none;
}

.product-hero-visual.hero-our-work {
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/hero-our-work.svg") center/contain no-repeat,
    var(--surface);
}

.product-hero-visual.hero-our-work::after {
  display: none;
}

/* Connected business areas (used on /applications/* pages) */
.connected-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.connected-area-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.connected-area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.55), rgba(99, 102, 241, 0));
  border-radius: 18px 18px 0 0;
  opacity: 0.85;
}

.connected-area-card.area-growth::before {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.6), rgba(249, 115, 22, 0));
}

.connected-area-card.area-service::before {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.6), rgba(99, 102, 241, 0));
}

.connected-area-card.area-digital::before {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.55), rgba(34, 197, 94, 0));
}

.connected-area-card:hover,
.connected-area-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -22px rgba(15, 23, 42, 0.25);
  border-color: rgba(99, 102, 241, 0.35);
}

.connected-area-cluster {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.connected-area-card.area-growth .connected-area-cluster {
  color: #c2410c;
}

.connected-area-card.area-service .connected-area-cluster {
  color: #4338ca;
}

.connected-area-card.area-digital .connected-area-cluster {
  color: #15803d;
}

.connected-area-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.connected-area-title .icon-arrow {
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.connected-area-card:hover .connected-area-title .icon-arrow,
.connected-area-card:focus-visible .connected-area-title .icon-arrow {
  opacity: 1;
  transform: translateX(0);
}

.connected-area-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 880px) {
  .connected-areas-grid {
    grid-template-columns: 1fr;
  }
}

.product-hero-visual.hero-about {
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/hero-about.svg") center/contain no-repeat,
    var(--surface);
}

.product-hero-visual.hero-about::after {
  display: none;
}

.training-hero-visual {
  background: linear-gradient(
      140deg,
      rgba(17, 24, 39, 0.35),
      var(--surface-inverse-soft)
    ),
    url("https://zarnnrxwzoxvovjhovhu.supabase.co/storage/v1/object/public/images/general/client-workshops-neurosys.jpg")
      center/cover no-repeat;
}

.training-proof .proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.training-why .split-section,
.training-journey .split-section {
  align-items: start;
}

.training-day .framework-steps-row {
  margin-top: clamp(8px, 2vw, 18px);
}

.training-day .framework-step {
  justify-items: center;
  text-align: center;
}

.training-trust .editorial-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.training-trust-logo {
  height: 34px;
  width: auto;
  display: block;
  margin-top: 2px;
}

.training-faq {
  background: transparent;
}

.training-faq .faq-list {
  max-width: 880px;
}

.training-faq .faq-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}

.training-faq .faq-item:last-child {
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.training-faq .faq-item summary {
  padding: 22px 0;
}

.training-faq .faq-item p {
  padding: 0 0 22px;
}

.product-overview {
  padding: 40px 0 70px;
}

.product-overview p + p {
  margin-top: 16px;
}

.hero-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.product-concept {
  padding: 70px 0 90px;
  background: var(--background);
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.concept-points {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.concept-tree-illustration {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.concept-tree-illustration svg {
  width: 100%;
  height: auto;
}

.tree-flow {
  stroke: var(--stroke-muted);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 6 10;
  animation: tree-flow 6s linear infinite;
}

.tree-node rect {
  fill: var(--surface);
  stroke: var(--border);
}

.tree-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  fill: var(--muted);
}

.tree-title {
  font-size: 0.95rem;
  fill: var(--ink);
  font-weight: 600;
}

.tree-node.small .tree-title {
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes tree-flow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -40;
  }
}

.dify-workflows {
  padding: 80px 0;
  background: var(--section);
}

.dify-workflow-screenshot {
  display: block;
  width: 100%;
  position: relative;
  padding: clamp(8px, 1.5vw, 18px) 0;
}

.dify-workflow-screenshot::before {
  content: "";
  position: absolute;
  inset: -10% -6% -10% -6%;
  background:
    radial-gradient(60% 55% at 30% 30%, rgba(249, 115, 22, 0.16), transparent 70%),
    radial-gradient(55% 50% at 80% 70%, rgba(99, 102, 241, 0.14), transparent 72%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.dify-workflow-screenshot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  border-radius: 14px;
  box-shadow:
    0 30px 60px -30px rgba(15, 23, 42, 0.28),
    0 12px 24px -18px rgba(15, 23, 42, 0.18);
}

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

.workflow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.workflow-visual {
  height: 110px;
  border: 1px solid var(--border);
  background: linear-gradient(
      140deg,
      var(--accent-wash-soft),
      var(--surface-inverse-soft)
    ),
    url("images/dify-workflow-card.svg") center/cover no-repeat;
}

.workflow-card p {
  color: var(--muted);
}

.workflow-card .text-muted {
  font-size: 0.9rem;
}

.references {
  padding: 90px 0;
  background: var(--background);
}

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

.work-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  box-shadow:
    0 16px 32px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  display: grid;
  gap: 14px;
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 24, 39, 0.14);
  box-shadow:
    0 24px 44px rgba(17, 24, 39, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.work-card:hover .work-media img {
  transform: scale(1.04);
}

.work-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--section);
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-status {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.82);
  color: var(--background);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px 4px 22px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.work-status::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.work-logo {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.82);
  padding: 6px 10px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(6px);
}

.work-logo img {
  height: 100%;
  width: auto;
  opacity: 0.95;
}

.work-content {
  padding: 0 20px 20px;
  display: grid;
  gap: 10px;
  height: 100%;
  align-content: start;
}

.work-content h3 {
  margin: 2px 0 0;
}

.work-content .text-link {
  margin-top: auto;
  padding-top: 6px;
}

.work-meta {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-tag {
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface);
}

.offices {
  padding: 80px 0;
  background: var(--background);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.office-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  box-shadow:
    0 16px 32px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.office-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 24, 39, 0.14);
  box-shadow:
    0 24px 44px rgba(17, 24, 39, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.office-card:hover .office-media img {
  transform: scale(1.04);
}

.office-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--section);
}

.office-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.office-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: block;
}

.office-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.office-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.office-info {
  padding: 16px 18px 20px;
  display: grid;
  gap: 4px;
}

.office-info-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-info-head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.office-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  flex-shrink: 0;
}

.office-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.office-desc {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .office-grid {
    grid-template-columns: 1fr;
  }
}

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

.team-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  box-shadow:
    0 16px 32px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--section);
  border-radius: 16px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-role {
  color: var(--muted);
  font-size: 0.95rem;
}

.team-links a {
  color: var(--muted);
}

.team-links a:hover {
  color: var(--ink);
}

.team-link-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.team-link-linkedin .team-link-icon {
  width: 14px;
  height: 14px;
  color: #0a66c2;
  flex-shrink: 0;
  transition: color 0.18s ease;
}

.team-link-linkedin .team-link-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.team-link-linkedin:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.4);
  background: rgba(10, 102, 194, 0.06);
}

.team-link-linkedin:hover .team-link-arrow {
  transform: translateX(3px);
}

.team-link-linkedin:focus-visible {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

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

.reference-grid-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.reference-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.reference-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reference-badge {
  border: 1px solid transparent;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reference-badge img {
  height: 32px;
  width: auto;
  display: block;
}

.reference-result {
  background: var(--success-soft);
  border: 1px solid var(--success-border);
  padding: 10px 12px;
  color: var(--ink-soft);
}

.reference-story {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 10px;
  background: var(--background);
}

.reference-story img {
  width: 108px;
  height: 76px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.reference-story-title {
  font-weight: 600;
  color: var(--ink);
}

.reference-story-link {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.9rem;
}

.reference-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.automation-context {
  padding: 70px 0;
  background: var(--section);
}

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

.context-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.context-note {
  margin-top: 16px;
}

.automation-why {
  padding: 90px 0;
  background: var(--background);
}

.automation-why.section-shell {
  padding: clamp(72px, 7vw, 108px) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 248, 250, 0.96) 100%);
}

.value-streams {
  padding: 80px 0;
  background: var(--section);
}

.value-streams p {
  color: var(--muted);
}

.stream-list {
  margin: 16px 0;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}

.stream-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stream-cards div {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}


.context-canvas {
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.context-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.context-group {
  display: grid;
  gap: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--ai-border);
}

.context-group + .context-group {
  margin-top: 16px;
}

.context-group:nth-child(2) {
  border-left-color: var(--ai-line);
}

.context-group:nth-child(3) {
  border-left-color: rgba(17, 24, 39, 0.14);
}

.context-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.context-group .context-grid {
  margin: 0;
  gap: 12px;
}

.context-group .context-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

.automation-bridge {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flow-compare {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.flow-block {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.flow-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.flow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.flow-node {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.flow-arrow {
  color: var(--muted);
}

.flow-before {
  background: var(--surface);
  color: var(--muted);
}

.flow-before .flow-node {
  background: transparent;
}

.flow-after {
  border-color: var(--ai-border-strong);
}

.flow-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.flow-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.system-compare {
  padding: 90px 0;
  background: var(--background);
}

.audience {
  padding: 80px 0;
  background: var(--section);
}

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

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.product-final-cta {
  padding: 80px 0 110px;
  background: var(--background);
}

.dify-proof {
  padding: 90px 0;
  background: var(--background);
}

.dify-proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.dify-proof-visual {
  min-height: 320px;
  border: 1px solid var(--border);
  background: linear-gradient(
      140deg,
      rgba(249, 115, 22, 0.1),
      rgba(17, 24, 39, 0.12)
    ),
    url("images/dify-flow-diagram.svg") center/cover no-repeat;
}

.assistants-columns {
  padding: 50px 0 80px;
  background: var(--section);
  border-top: 1px solid var(--border);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.column-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.column-card a {
  margin-top: 4px;
}

.product-outcomes {
  padding: 40px 0 20px;
  background: var(--background);
}

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

.outcome-item {
  background: var(--section);
  border: 1px solid var(--border);
  padding: 18px;
  text-align: center;
}

.outcome-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}

.outcome-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-fit {
  padding: 60px 0 80px;
  background: var(--background);
}

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

.fit-card {
  background: var(--section);
  border: 1px solid var(--border);
  padding: 22px;
  display: grid;
  gap: 10px;
}

.fit-card p {
  color: var(--muted);
}

.column-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.value-section {
  padding: 90px 0;
}

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.value-card-wide {
  grid-column: 1 / -1;
}

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

.value-grid-staggered .value-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
}

.value-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--accent);
}

.value-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  border-radius: 50%;
  opacity: 1;
}

.value-icon-context::before {
  box-shadow: -6px -4px 0 0 currentColor, 6px 4px 0 0 currentColor;
}

.value-icon-cross::before {
  width: 16px;
  height: 6px;
  border-radius: 999px;
}

.value-icon-evolve::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.value-card p {
  color: var(--muted);
}

.use-cases {
  padding: 80px 0;
  background: var(--section);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.use-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.use-case-card p {
  color: var(--muted);
}

.build-steps {
  padding: 90px 0;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-badge.current {
  color: var(--success);
  border-color: var(--success-border);
  background: var(--success-soft);
}

.step-card:first-child {
  border-color: var(--success-border);
  box-shadow: var(--shadow-success);
}

.step-number {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.step-card p {
  color: var(--muted);
}

.integrations {
  padding: 80px 0;
  background: var(--section);
}

.products-index-hero {
  padding: 120px 0 60px;
  background: var(--background);
}

.products-index-list {
  padding: 40px 0 90px;
  background: var(--background);
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
}

.product-list-card p {
  color: var(--muted);
}

.placeholder-panel {
  padding: 70px 0;
  background: var(--section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-system {
  margin-top: 64px;
  padding: 20px 0 12px;
  background: var(--section);
  border-bottom: 1px solid var(--border);
}

.system-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.system-label {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.system-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 4px;
  border: none;
  color: var(--muted);
  background: transparent;
  font-weight: 500;
  position: relative;
}

.system-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.system-item:hover::after,
.system-item:focus-visible::after,
.system-item.active::after {
  transform: scaleX(1);
}

.system-item.active {
  color: var(--ink);
}

.system-note {
  margin-top: 10px;
  color: var(--muted);
}

.integrations p + p {
  margin-top: 12px;
}

.integrations ul {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.delivery {
  padding: 90px 0;
}

.delivery-flow {
  position: relative;
}

.delivery-flow .column-card {
  position: relative;
}

.delivery-flow .column-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
}

.delivery-destination {
  border-color: var(--ai-border-strong);
  background: var(--ai-soft);
}

.assurance-bar {
  margin-top: 20px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--section);
  color: var(--muted);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.assurance-bar::before {
  content: "●";
  color: var(--accent);
  font-size: 0.6rem;
}

.services-hero .product-hero-inner {
  align-items: center;
}

.services-visual {
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/hero-services.svg") center/contain no-repeat,
    var(--surface);
}

/* ───────────────────────────────────────────────────────────────
   SERVICES PAGE — hero anchor buttons (3 tracks)
   Replaces the old hero CTA pair. Lets the visitor jump straight
   to the service section that matches their intent.
   ─────────────────────────────────────────────────────────────── */
.hero-anchor-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 640px;
}

.hero-anchor-button {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-anchor-button:hover,
.hero-anchor-button:focus-visible {
  border-color: rgba(249, 115, 22, 0.45);
  background: #fff8f1;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
  outline: none;
}

.hero-anchor-button-primary {
  border-color: rgba(249, 115, 22, 0.55);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.hero-anchor-button-primary:hover,
.hero-anchor-button-primary:focus-visible {
  background: linear-gradient(180deg, #ffedd5 0%, #fed7aa 100%);
  border-color: var(--accent);
}

.hero-anchor-button-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.hero-anchor-button-title {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.hero-anchor-button-arrow {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.hero-anchor-button:hover .hero-anchor-button-arrow,
.hero-anchor-button:focus-visible .hero-anchor-button-arrow {
  transform: translateY(3px);
}

@media (max-width: 720px) {
  .hero-anchor-buttons {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* ───────────────────────────────────────────────────────────────
   SERVICES PAGE — Agentic AI section
   The flagship section, given the most visual weight on the page.
   ─────────────────────────────────────────────────────────────── */
.services-agentic {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}

.services-agentic .section-header {
  margin-bottom: clamp(36px, 4vw, 56px);
}

/* Roomy collapsible "service" card — wraps a <details>. Closed
   state shows eyebrow + title + lead + price tag (~150-180px high)
   so the buyer gets a real preview before deciding to expand. */
.service-collapsible-list {
  display: grid;
  gap: 16px;
}

.service-collapsible {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.service-collapsible:hover {
  border-color: rgba(249, 115, 22, 0.32);
}

.service-collapsible[open] {
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.07);
  background: #fffdfa;
}

.service-collapsible > summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  cursor: pointer;
}

.service-collapsible > summary::-webkit-details-marker {
  display: none;
}

.service-collapsible-meta {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.service-collapsible-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
}

.service-collapsible-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.service-collapsible-lead {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 70ch;
}

.service-collapsible-pricetag {
  margin: 6px 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

.service-collapsible-chevron {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.service-collapsible:hover .service-collapsible-chevron {
  background-color: rgba(249, 115, 22, 0.16);
}

.service-collapsible[open] .service-collapsible-chevron {
  transform: rotate(180deg);
  background-color: rgba(249, 115, 22, 0.2);
}

.service-collapsible-body {
  padding: 8px 30px 30px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* Bottom proof strip in the Agentic AI section */
.services-agentic-proof {
  margin-top: clamp(48px, 5vw, 72px);
  padding-top: clamp(28px, 3vw, 36px);
  border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .service-collapsible > summary {
    grid-template-columns: 1fr;
    padding: 22px 22px;
    gap: 16px;
  }

  .service-collapsible-chevron {
    justify-self: end;
  }

  .service-collapsible-body {
    padding: 8px 22px 24px;
  }
}

/* ───────────────────────────────────────────────────────────────
   SERVICES PAGE — Compact service sections (Experts, Projects)
   These two tracks are intentionally lighter than Agentic AI:
   one viewport, two columns (copy + aside), single CTA each.
   ─────────────────────────────────────────────────────────────── */
.services-compact {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.compact-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.compact-service-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.compact-service-copy .eyebrow {
  margin: 0;
}

.compact-service-copy h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.compact-service-lead {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 56ch;
}

.compact-service-copy .button {
  justify-self: start;
}

.compact-service-aside {
  display: grid;
  gap: 24px;
}

.compact-service-list,
.compact-service-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.compact-service-list li,
.compact-service-checks li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

.compact-service-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.compact-service-checks li {
  color: var(--muted);
}

.compact-service-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.compact-service-deflist {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.compact-service-deflist > div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.compact-service-deflist > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.compact-service-deflist dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent);
}

.compact-service-deflist dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .compact-service-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.services-flow {
  padding: 80px 0;
  background: var(--section);
}

.services-overview {
  padding: 70px 0;
  background: var(--background);
}

.services-contrast {
  padding: 70px 0;
  background: var(--section);
}

.services-contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contrast-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.contrast-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.services-cta {
  padding: 40px 0;
  background: var(--background);
}

.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.service-steps {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.service-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 16px 32px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.service-step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--ink-soft);
}

.service-step h3 {
  margin: 0 0 8px;
}

.service-intent {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-weight: 500;
}

.service-step ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

@media (max-width: 768px) {
  .services-contrast-grid {
    grid-template-columns: 1fr;
  }

  .services-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-step {
    grid-template-columns: 1fr;
  }

  .service-steps::before {
    left: 22px;
  }
}

.contact-hero .product-hero-inner {
  align-items: center;
}

.product-hero-visual.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 720 / 420;
  background:
    url("images/contact-visual.svg") center/contain no-repeat,
    var(--surface);
}

.product-hero-visual.contact-visual::after {
  display: none;
}


.contact-details {
  padding: 80px 0;
  background: var(--section);
}

.contact-details.section-shell {
  padding: clamp(72px, 7vw, 108px) 0;
  background: transparent;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-card,
.contact-person-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 16px 32px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.contact-info-card h3 {
  margin: 0 0 8px;
}

.contact-person-card {
  display: grid;
  gap: 16px;
}

.contact-person-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.contact-person-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-person-body {
  display: grid;
  gap: 6px;
}

.contact-person-body a {
  color: var(--ink-soft);
}

@media (max-width: 1120px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   /contact page - revamp components
   =========================================================== */

body.contact-page .button.secondary.header {
  display: none;
}

.contact-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-split-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow:
    0 14px 32px rgba(17, 24, 39, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  position: relative;
  overflow: hidden;
}

.contact-split-card-person {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.07), transparent 55%),
    var(--surface);
  border-color: rgba(249, 115, 22, 0.25);
}

.contact-split-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-split-card-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  line-height: 1.2;
}

.contact-split-card-head .eyebrow {
  margin: 0;
}

.contact-split-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-split-icon svg {
  width: 26px;
  height: 26px;
}

.contact-split-card-head-person {
  align-items: flex-start;
}

.contact-split-photo {
  width: 78px;
  height: 78px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1);
}

.contact-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.contact-split-role {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-split-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-split-quote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.005em;
  text-wrap: balance;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.contact-split-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-split-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.contact-split-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-split-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-split-list-icon svg {
  width: 18px;
  height: 18px;
}

.contact-split-list-icon-linkedin {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
}

.contact-split-list-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-split-list-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-split-list-body a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.15s ease;
}

.contact-split-list-body a:hover {
  color: var(--accent);
}

.contact-split-list-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

.contact-split-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 12px 28px rgba(17, 24, 39, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow:
    0 22px 40px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.contact-channel:hover .contact-channel-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 22px;
  height: 22px;
}

.contact-channel-icon-linkedin {
  background: rgba(10, 102, 194, 0.1);
  color: #0a66c2;
}

.contact-channel-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-channel-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-channel-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  word-break: break-word;
}

.contact-channel-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.contact-channel-arrow {
  color: var(--muted);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  flex-shrink: 0;
}

.contact-channel-arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 720px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
}

/* What happens next - flow steps */
.contact-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.contact-flow-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px 26px;
  display: grid;
  gap: 8px;
  box-shadow:
    0 12px 28px rgba(17, 24, 39, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.contact-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-flow-step h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .contact-flow-steps {
    grid-template-columns: 1fr;
  }
}

/* Person band (inverted) */
.contact-person-band {
  display: flex;
  justify-content: center;
}

.contact-person-card-pro {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 920px;
  width: 100%;
}

.contact-person-card-pro .contact-person-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.contact-person-card-pro .contact-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.contact-person-content {
  display: grid;
  gap: 10px;
}

.contact-person-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.contact-person-role {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.7) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-person-quote {
  margin: 14px 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: #ffffff !important;
  font-weight: 300;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.contact-person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section-shell-invert .contact-person-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.section-shell-invert .contact-person-actions .button.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249, 115, 22, 0.06);
}

@media (max-width: 720px) {
  .contact-person-card-pro {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .contact-person-card-pro .contact-person-photo {
    max-width: 240px;
  }
  .contact-person-actions {
    justify-content: center;
  }
}

.mini-case {
  padding: 80px 0;
  background: var(--background);
}

.mini-case p {
  color: var(--muted);
  max-width: 720px;
}

.faq {
  padding: 80px 0;
  background: var(--section);
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.faq-item p {
  color: var(--muted);
}

.product-cta {
  padding: 90px 0 120px;
}

.cta-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cta-inline {
  padding: 30px 0 70px;
  background: var(--background);
}

.cta-inline-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

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

.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.event-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--section);
  background-image: var(--event-image);
  background-size: cover;
  background-position: center;
}

.event-date-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--ink-inverse);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.event-content {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.event-content p {
  color: var(--muted);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-actions {
  margin-top: 4px;
}

.credentials {
  padding: 70px 0 40px;
  background: var(--section);
}

.why-neurosys {
  padding: 90px 0;
  background: var(--section);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-stat {
  font-family: var(--heading-font);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.why-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1;
}

.why-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface-inverse);
  border-color: var(--surface-inverse);
}

.why-card-cta p {
  color: var(--inverse-muted);
}

.why-card-cta .text-link {
  color: var(--ink-inverse);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 90px 0;
  background: var(--background);
}

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

.testimonial-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  box-shadow:
    0 12px 28px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  padding: 34px 32px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(17, 24, 39, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.testimonial-quote {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.35;
  line-height: 0.75;
  height: 22px;
  margin: 0 0 -10px;
}

.testimonial-text {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.testimonial-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--section);
  border: 0;
  box-shadow: none;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.testimonial-role {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
  line-height: 1.3;
}

.testimonial-company {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-top: 1px;
  font-weight: 500;
  line-height: 1.3;
}

.testimonial-logo {
  min-width: 0;
  max-width: 88px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.65;
  transition: opacity 0.15s ease;
}

.testimonial-card:hover .testimonial-logo {
  opacity: 0.85;
}

.testimonial-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.credentials-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.credentials-grid,
.credential-group {
  display: grid;
  gap: 18px;
}

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

.credential-group-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credential {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  padding: 24px 18px 20px;
  text-align: center;
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 176px;
}

.credential-stat {
  padding: 28px 20px 22px;
}

.credential-trust {
  min-height: 176px;
  padding-top: 22px;
}

.credential-icon {
  width: 72px;
  height: 72px;
  padding: 0;
  object-fit: contain;
  margin: 0 auto 6px;
  filter: none;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.credential-badge {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.credential-badge svg {
  width: 72px;
  height: 72px;
}

.credential-badge circle:first-child {
  fill: rgba(249, 115, 22, 0.04);
  stroke: rgba(249, 115, 22, 0.14);
  stroke-width: 1;
}

.credential-badge circle:not(:first-child),
.credential-badge path {
  stroke: var(--accent);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.credential-value {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.1;
}

.credential-trust .credential-value {
  font-size: 1.3rem;
}

.credential-label {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 16ch;
  text-wrap: pretty;
}

.credential-trust .credential-icon {
  width: 96px;
  height: 84px;
  margin-bottom: 2px;
  opacity: 0.95;
}

/* ===========================================================
   About page - revamp components
   =========================================================== */

.section-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-stat-strip {
  list-style: none;
  margin: 28px 0 0;
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.04);
}

.hero-stat-strip li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
}

.hero-stat-strip li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.hero-stat-strip strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-strip span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1;
}

.about-credentials .credentials-layout {
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-credentials .credential-group-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-credentials .credential-group-trust {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.about-credentials .credential-stat,
.about-credentials .credential-trust {
  min-height: 168px;
}

@media (max-width: 880px) {
  .about-credentials .credential-group-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-credentials .credential-group-trust {
    grid-template-columns: 1fr;
  }
}

.about-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}

.about-story-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.about-story-copy .eyebrow {
  margin: 0;
}

.about-story-copy h2 {
  margin: 0;
  text-wrap: balance;
}

.about-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  margin: 0;
}

.about-story-copy strong {
  color: var(--ink);
}

.section-shell-invert .about-story-copy p:not(.eyebrow) {
  color: rgba(226, 232, 240, 0.85);
}

.section-shell-invert .about-story-copy strong {
  color: #ffffff;
  border-bottom: 1px dashed rgba(249, 115, 22, 0.55);
  padding-bottom: 1px;
}

.about-story-quote {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 44px 40px 40px;
  display: grid;
  align-content: center;
  gap: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.about-story-quote::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(249, 115, 22, 0.7),
    transparent
  );
}

.about-story-mark {
  font-family: "Fraunces", serif;
  font-size: 4.25rem;
  line-height: 0.6;
  color: var(--accent);
  font-weight: 600;
}

.about-story-quote-text {
  position: relative;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.about-story-quote-meta {
  position: relative;
  margin: 0;
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* AI maturity model */
.maturity-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.maturity-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 22px 22px;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.maturity-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.06);
}

.maturity-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: translateY(-50%) rotate(45deg);
  background: transparent;
  z-index: 1;
}

.maturity-step-warning {
  border-color: rgba(249, 115, 22, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.6), rgba(255, 255, 255, 1) 60%);
}

.maturity-step-target {
  border-color: rgba(249, 115, 22, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 237, 213, 0.55), rgba(255, 255, 255, 1) 70%);
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.1);
}

.maturity-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.maturity-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.maturity-step-warning .maturity-num,
.maturity-step-target .maturity-num {
  background: rgba(249, 115, 22, 0.14);
  color: var(--accent);
}

.maturity-stage {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

.maturity-step h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.maturity-step ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.maturity-step ul li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.maturity-step ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.6);
}

.maturity-callout {
  margin: 6px 0 0;
  padding: 10px 12px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px dashed rgba(249, 115, 22, 0.45);
  border-radius: 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.maturity-callout-target {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.maturity-summary {
  margin: clamp(28px, 3vw, 36px) auto 0;
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  max-width: 60ch;
  line-height: 1.45;
}

/* Values - 3-column variant with icons */
.value-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-icon-impact::before,
.value-icon-system::before,
.value-icon-responsible::before {
  width: 18px;
  height: 18px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.value-icon-impact::before {
  background:
    linear-gradient(currentColor, currentColor) 0 100% / 4px 60% no-repeat,
    linear-gradient(currentColor, currentColor) 7px 100% / 4px 90% no-repeat,
    linear-gradient(currentColor, currentColor) 14px 100% / 4px 40% no-repeat;
}

.value-icon-system::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.value-icon-responsible::before {
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 8px 8px / 4px 4px 14px 14px;
}

/* Leadership grid (top 3) */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card-lead {
  padding: 24px;
}

.team-card-lead .team-photo {
  border-radius: 16px;
  aspect-ratio: 4 / 5;
}

.team-card-lead h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  margin: 4px 0 0;
}

.team-bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .about-credentials .credentials-layout {
    grid-template-columns: 1fr;
  }
  .about-story-inner {
    grid-template-columns: 1fr;
  }
  .maturity-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .maturity-step:not(:last-child)::after {
    display: none;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .value-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .maturity-steps {
    grid-template-columns: 1fr;
  }
  .hero-stat-strip {
    gap: 18px;
  }
  .hero-stat-strip li:not(:last-child)::after {
    display: none;
  }
}

.site-footer {
  padding: 46px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 28%),
    linear-gradient(180deg, #101828 0%, #172033 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(0, 0.85fr)
    minmax(0, 0.7fr)
    minmax(0, 0.95fr);
  gap: 40px 32px;
  padding: 0 0 36px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-brand .logo {
  margin-bottom: 2px;
}

.footer-brand .logo img {
  height: 36px;
  width: auto;
}

.footer-brand-copy {
  margin: 0;
  max-width: 20ch;
  color: #fff;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.footer-brand-note {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-brand-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-brand a,
.footer-links a,
.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-brand a:hover,
.footer-links a:hover,
.footer-meta a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.footer-meta-lines {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social:hover {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #fff;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: currentColor;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 4px;
}

.footer-cta {
  min-height: 46px;
  border-radius: 16px;
  border-color: rgba(249, 115, 22, 0.22);
  background: linear-gradient(
    180deg,
    rgba(249, 115, 22, 0.18) 0%,
    rgba(249, 115, 22, 0.1) 100%
  );
  color: #fff;
  box-shadow:
    0 14px 30px rgba(249, 115, 22, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.footer-cta:hover {
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow:
    0 18px 34px rgba(249, 115, 22, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.footer-bottom {
  margin-top: 0;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.footer-trust-list img {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(0.15) brightness(1.05);
  transition: opacity 0.2s ease;
}

.footer-trust-list img.footer-trust-mono {
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer-trust-list img:hover {
  opacity: 1;
}

.footer-copyright {
  min-height: 28px;
  line-height: 28px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-trust {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-trust-list {
    gap: 18px;
  }
}

.footer-copyright {
  text-align: right;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 16px 0 0;
}

.contact-card {
  padding: 120px 0;
  background: var(--section);
  border-top: 1px solid var(--border);
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  height: 80px;
  background: linear-gradient(
    180deg,
    var(--surface-fade) 0%,
    var(--surface-fade-strong) 100%
  );
}

.contact-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.contact-band {
  background: transparent;
  padding: 24px 0 70px;
}

.contact-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 0;
  overflow: hidden;
  min-height: 140px;
}

.contact-band-copy h2 {
  margin-bottom: 8px;
}

.contact-band-copy p {
  color: var(--inverse-muted);
}

.contact-band-copy {
  background: var(--surface-inverse);
  color: var(--ink-inverse);
  padding: 20px 24px;
  display: grid;
  align-content: center;
}

.contact-band-card {
  background: var(--surface);
  border: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-left: 1px solid var(--border);
  width: 100%;
  height: 100%;
}

.contact-band-card .contact-photo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.contact-band-details {
  padding: 20px 24px;
}

.contact-band-card .contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-band-card .contact-name,
.contact-band-card .contact-role {
  margin-left: 0;
}

.featured-body .button,
.contact-band-card .button {
  margin-top: 8px;
  width: 100%;
}

.contact-band-card .button.secondary {
  background: var(--accent);
  border-color: transparent;
  color: var(--ink-inverse);
  box-shadow: var(--shadow-accent);
}

.contact-band-card .button.secondary:hover {
  background: var(--accent-hover);
  border-color: transparent;
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.24);
}

.contact-band-details {
  display: grid;
  align-content: center;
  gap: 6px;
}

/* platforms-section: redesigned platform stack with a Dify lead spotlight
   (strategic partner) and a row of supporting capabilities (LangChain,
   Hugging Face, TensorFlow, PyTorch). Replaces the older tabbed
   .platforms-layout pattern on the homepage. */
.platforms-section .section-header {
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.platform-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  align-items: stretch;
}

.platform-lead-copy {
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  align-content: center;
  gap: 14px;
}

.platform-lead-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
}

.platform-lead-logo {
  height: 44px;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.platform-lead-logo img {
  max-height: 44px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.platform-lead-copy h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

.platform-lead-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 52ch;
}

.platform-lead-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.platform-lead-stat {
  display: grid;
  gap: 2px;
}

.platform-lead-stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.platform-lead-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.platform-lead-actions {
  margin-top: 8px;
}

.platform-lead-visual {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 55%),
    linear-gradient(160deg, #1f2937 0%, #111827 100%);
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
  min-height: 280px;
  overflow: hidden;
}

.platform-lead-visual img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.platform-rollout {
  margin-top: 0;
}

.platform-lead + .platform-rollout {
  margin-top: clamp(48px, 6vw, 72px);
}

.platform-dify-band {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(247, 248, 250, 0.7) 100%
  );
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  padding: 22px 0 26px;
}

.platform-dify-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
}

.platform-dify-band-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.platform-dify-band-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.platform-dify-band-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.platform-dify-band-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.platform-dify-band-stat {
  display: grid;
  gap: 2px;
}

.platform-dify-band-stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.platform-dify-band-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

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

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.06);
}

.audience-role {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 6px 12px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 999px;
  width: fit-content;
}

.audience-card h3 {
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

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

.enterprise-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.enterprise-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.06);
}

.enterprise-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
}

.enterprise-icon svg {
  width: 22px;
  height: 22px;
}

.enterprise-card h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin: 0;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.enterprise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .platform-dify-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-dify-band-stats {
    gap: 24px;
  }
}

.platform-rollout-header {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.platform-rollout-header .eyebrow {
  margin: 0;
}

.platform-rollout-header h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin: 0;
  line-height: 1.2;
}

.platform-rollout-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: rollout;
}

.platform-rollout-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.platform-rollout-step:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.06);
}

.platform-rollout-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-rollout-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.platform-rollout-time {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.platform-rollout-step h4 {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.platform-rollout-step ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.platform-rollout-step ul li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.platform-rollout-step ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.6);
}

.platform-rollout-summary {
  margin: clamp(28px, 3vw, 36px) auto 0;
  text-align: center;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--accent);
  max-width: 60ch;
  line-height: 1.4;
}

.platform-rollout-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.platform-rollout-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.platform-rollout-tags span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 16px;
}

@media (max-width: 980px) {
  .platform-lead {
    grid-template-columns: 1fr;
  }

  .platform-lead-visual {
    min-height: 220px;
    order: -1;
  }

  .platform-rollout-steps {
    grid-template-columns: 1fr;
  }
}

/* contact-band-prominent: amplified variant for homepage / final conversion
   close. Larger headline, more vertical padding, and an inline secondary
   action under the body copy. Base .contact-band stays the default for
   subpage trailing CTAs. */
.contact-band.contact-band-prominent.section-shell {
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 110px);
}

.contact-band-prominent .contact-band-inner {
  min-height: 240px;
}

.contact-band-prominent .contact-band-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(40px, 4.5vw, 60px) clamp(32px, 4vw, 52px);
}

.contact-band-prominent .contact-band-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  text-wrap: balance;
}

.contact-band-prominent .contact-band-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  max-width: 52ch;
  line-height: 1.55;
}

.contact-band-prominent .contact-band-secondary {
  margin-top: 6px;
}

.contact-band-prominent .contact-band-secondary .text-link {
  color: var(--ink-inverse);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-band-prominent .contact-band-secondary .text-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-band-prominent .contact-band-card {
  grid-template-columns: 160px 1fr;
  border-left: 0;
}

.contact-band-prominent .contact-band-card .contact-photo {
  border-bottom: 0;
}

@media (max-width: 720px) {
  .contact-band-prominent .contact-band-card {
    grid-template-columns: 1fr;
  }
}

.contact-card-inner p {
  color: var(--muted);
}

.contact-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-person {
  background: var(--surface);
  padding: 0 0 20px;
  border: 1px solid var(--border);
  display: grid;
  gap: 8px;
  justify-items: start;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-name,
.contact-role,
.contact-person a,
.contact-person .button {
  margin-left: 20px;
}

.contact-person .button {
  margin-top: 8px;
}

.contact-name {
  font-weight: 600;
  color: var(--ink);
}

.contact-role {
  color: var(--muted);
  font-size: 0.95rem;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 900px) {
  .hero-inner {
    min-height: 0;
    padding-inline: 0;
  }

  .hero-content {
    max-width: min(680px, 100%);
    margin-top: 0;
    padding: 0;
    display: grid;
    gap: 6px;
  }

  .hero-visual {
    inset: 0;
  }

  .hero-visual img {
    min-height: 100%;
    object-position: 64% center;
  }

  .hero .eyebrow {
    font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.94rem, 1.7vw, 1.02rem);
    max-width: 560px;
  }

  .hero-actions {
    gap: 14px;
  }

  .header-utility {
    gap: 12px;
  }

  .card-grid,
  .event-grid,
  .value-grid,
  .use-case-grid,
  .agent-platform-shell,
  .agent-platform-benefits,
  .step-grid,
  .faq-grid,
  .two-column,
  .platform-step-grid,
  .product-hero-inner,
  .fit-grid,
  .outcome-grid,
  .workflow-grid,
  .work-grid,
  .reference-grid,
  .team-grid,
  .testimonial-grid,
  .platforms-layout,
  .dify-proof-inner,
  .system-nav,
  .product-list-grid,
  .context-grid,
  .audience-grid,
  .featured-grid,
  .news-card {
    grid-template-columns: 1fr;
  }

  .stream-cards {
    grid-template-columns: 1fr;
  }

  .flow-compare {
    grid-template-columns: 1fr;
  }

  .delivery-flow .column-card:not(:last-child)::after {
    content: "";
  }


  .concept-layout {
    grid-template-columns: 1fr;
  }

  .concept-tree-illustration {
    max-width: 480px;
  }

  .platforms-detail {
    padding: 20px;
  }

  .card p {
    opacity: 1;
    max-height: none;
  }

  .cta-inline-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  .contact-card-inner {
    grid-template-columns: 1fr;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 540px;
  }

  .credentials-layout {
    grid-template-columns: 1fr;
  }

  .credential-group-trust,
  .credential-group-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .training-panel {
    grid-template-columns: 1fr;
  }

  .training-visual {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 56px;
    min-height: clamp(560px, 86svh, 720px);
  }

  .product-hero {
    padding: 100px 0 64px;
  }

  .product-hero-inner {
    min-height: 0;
    gap: 28px;
  }

  .product-hero-inner > :first-child {
    gap: 16px;
  }

  .news-hero {
    padding: 110px 0 36px;
  }

  .site-footer {
    padding-top: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 0 20px;
    gap: 20px;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-links,
  .footer-meta {
    gap: 4px;
  }

  .footer-brand a,
  .footer-links a,
  .footer-meta a {
    min-height: 28px;
    padding: 2px 0;
  }

  .footer-meta-lines {
    gap: 4px;
  }

  .footer-title {
    margin-bottom: 2px;
  }

  .footer-brand-copy {
    max-width: 14ch;
  }

  .footer-brand-note {
    max-width: none;
  }

  .footer-brand-actions {
    align-items: stretch;
  }

  .footer-cta {
    justify-content: center;
    width: 100%;
  }

  .footer-bottom {
    padding-bottom: 22px;
  }

  .footer-bottom-inner {
    padding: 0;
    flex-direction: column;
    gap: 6px;
  }

  .hero-inner {
    padding-inline: 0;
  }

  .hero-content {
    max-width: none;
    margin-top: -10px;
  }

  .hero-visual img {
    object-position: 68% center;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    margin-bottom: 24px;
    max-width: none;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-point + .hero-point::before {
    content: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

}

@media (max-width: 1024px) {
  .work-grid,
  .topic-grid,
  .outcome-grid,
  .related-stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-grid,
  .contact-split,
  .formats-grid-2 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 72px;
    position: relative;
    gap: 14px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height, 72px) + 12px);
    left: 16px;
    right: 16px;
    width: auto;
    min-width: 0;
    max-height: calc(100vh - var(--header-height, 72px) - 28px);
    overflow: auto;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 24px;
    box-shadow: 0 28px 64px rgba(17, 24, 39, 0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .site-nav > .nav-details,
  .site-nav .nav-trigger {
    width: 100%;
  }

  .site-nav a,
  .site-nav .nav-trigger {
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .site-nav a::after,
  .site-nav .nav-trigger::after {
    bottom: 8px;
  }

  .menu-toggle {
    display: inline-flex !important;
    width: 48px;
    min-width: 48px;
    padding-inline: 0;
  }

  .header-utility {
    gap: 10px;
  }

  .language-switch {
    order: 0;
  }

  .language-switch .nav-trigger {
    min-width: 60px;
    padding: 10px 12px;
    border: 1px solid var(--border);
  }

  .language-switch .nav-trigger::after {
    display: none;
  }

  .language-switch .dropdown {
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: 96px;
  }

  .site-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    min-width: 0;
    margin-top: 4px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .site-nav .nav-details.is-open .dropdown {
    display: grid;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-width: none;
    min-width: 0;
    top: auto;
    left: auto;
    right: auto;
    border: none;
    border-radius: 0;
    padding: 4px 0 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .mega-menu-inner {
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-link {
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-soft);
  }
}

.business-area-hero .product-hero-inner {
  align-items: center;
}

.business-area-hero-visual {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(249, 115, 22, 0.14), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 244, 246, 0.96));
}

.marketing-orbit {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
}

.marketing-orbit-ring {
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06), transparent 70%);
}

.marketing-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  padding: 22px 18px;
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translate(-50%, -50%);
}

.marketing-orbit-core span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.marketing-orbit-core p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.marketing-orbit-node {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.marketing-orbit-node-data {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.marketing-orbit-node-content {
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}

.marketing-orbit-node-channel {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.marketing-orbit-node-followup {
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}

.business-area-intro,
.business-area-story,
.business-area-journey {
  padding: 80px 0;
  background: var(--background);
}

.business-area-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.business-area-values {
  padding: 80px 0;
  background: var(--section);
}

.business-area-value-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.business-area-value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.business-area-value-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.business-area-value-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.business-area-highlight {
  padding: 90px 0;
  background: var(--background);
}

.business-area-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.business-area-proofline {
  margin-top: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  color: var(--ink-soft);
  font-weight: 500;
}

.business-area-cross {
  padding: 80px 0;
  background: var(--section);
}

.business-area-cross-intro {
  max-width: 760px;
}

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

.business-area-cross-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.business-area-cross-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.business-area-enable {
  padding: 80px 0;
  background: var(--background);
}

.business-area-enable-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.business-area-enable-side {
  display: flex;
  justify-content: center;
}

.business-area-enable-tags {
  width: 100%;
  display: grid;
  gap: 14px;
}

.business-area-enable-tag {
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: var(--section);
  color: var(--ink-soft);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.business-area-related {
  padding: 80px 0;
  background: var(--section);
}

.related-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.related-link-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}

.related-link-card p {
  color: var(--muted);
}

.business-area-cta .cta-inline-inner {
  align-items: center;
}

/* ============================================================
   Sector pages (forretningsomrader/*) — reusable layout system
   ============================================================ */

.sector-hero .sector-hero-inner {
  align-items: center;
}

.sector-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2vw, 28px);
}

.sector-hero-visual svg {
  width: 100%;
  height: auto;
  max-width: 560px;
}

/* --- Symptoms (Sound familiar?) --- */

.sector-symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.sector-symptom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-symptom:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent, 0 12px 32px rgba(249, 115, 22, 0.12));
}

.sector-symptom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.10);
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.sector-symptom p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* --- The shift (Before / After) --- */

.sector-shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

.sector-shift-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.sector-shift-after {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 60%),
    var(--surface);
  border-color: rgba(249, 115, 22, 0.35);
}

.sector-shift-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
}

.sector-shift-label-after {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
}

.sector-shift-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.sector-shift-row-core {
  justify-content: center;
}

.sector-shift-node {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.sector-shift-node-core {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--ink);
  font-weight: 600;
}

.sector-shift-arrow {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.sector-shift-stem {
  width: 2px;
  height: 22px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0.0));
  border-radius: 2px;
}

.sector-shift-points {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sector-shift-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.sector-shift-points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Outcome pillars --- */

.sector-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.sector-pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-pillar:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.sector-pillar-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.sector-pillar h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.sector-pillar p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --- Editorial / prose page (sector POV pieces) --- */

.sector-page-prose {
  background: #FBFAF7;
}

.prose-page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(104px, 9vw, 136px) 24px 72px;
  color: var(--ink);
}

.prose-header {
  margin-bottom: 64px;
}

.prose-eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose-title {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.prose-subtitle {
  margin: 0 0 32px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}

.prose-section em {
  font-style: italic;
  color: var(--ink);
}

.prose-stanza {
  margin: 8px 0 28px;
  padding-left: 20px;
  border-left: 2px solid rgba(249, 115, 22, 0.35);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
}

.prose-lede {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.prose-byline {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.prose-section {
  padding-top: 56px;
  margin-top: 56px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.prose-section > p,
.prose-section > ol {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink);
}

.prose-section > p {
  margin: 0 0 20px;
}

.prose-section > p:last-child {
  margin-bottom: 0;
}

.prose-h2 {
  margin: 0 0 24px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  line-height: 1.2;
  color: var(--ink);
}

.prose-h3 {
  margin: 36px 0 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--ink);
}

.prose-h3-meta {
  display: inline-block;
  margin-right: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  vertical-align: 0.2em;
}

.prose-questions {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: prose-q;
}

.prose-questions li {
  position: relative;
  padding: 4px 0 4px 56px;
  margin-bottom: 28px;
  counter-increment: prose-q;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
}

.prose-questions li:last-child {
  margin-bottom: 0;
}

.prose-questions li::before {
  content: counter(prose-q, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.prose-footer {
  margin-top: 80px;
  padding: 36px 40px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 65%),
    rgba(255, 248, 240, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.22);
  display: grid;
  gap: 14px;
}

.prose-footer-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
}

.prose-footer p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.prose-footer-cta {
  margin-top: 8px;
  width: fit-content;
}

.prose-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 0;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.prose-link:hover {
  color: var(--accent-strong, #C2410C);
  border-bottom-color: var(--accent);
}

.prose-link-muted {
  color: var(--muted);
  border-bottom-color: rgba(15, 23, 42, 0.15);
}

.prose-link-muted:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

@media (max-width: 640px) {
  .prose-page {
    padding: 100px 20px 48px;
  }
  .prose-header {
    margin-bottom: 40px;
  }
  .prose-section {
    margin-top: 44px;
    padding-top: 44px;
  }
  .prose-questions li {
    padding-left: 44px;
  }
  .prose-footer {
    margin-top: 56px;
    padding: 28px 24px;
    border-radius: 18px;
  }
  .prose-footer-title {
    font-size: 1.3rem;
  }
  .prose-footer-cta {
    width: 100%;
  }
}

/* --- Generations (where the market is moving) --- */

.sector-gen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.sector-gen {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.sector-gen-now {
  border-color: rgba(249, 115, 22, 0.45);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 60%),
    var(--surface);
}

.sector-gen-era {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
}

.sector-gen-now .sector-gen-era {
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
}

.sector-gen h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.sector-gen p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --- Questions (the AHA prompts) --- */

.sector-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.sector-question {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.sector-question-mark {
  flex-shrink: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  padding-top: 2px;
}

.sector-question p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}

/* --- Platform capabilities (Why Dify) --- */

.sector-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.sector-platform-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.sector-platform-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--ink);
}

.sector-platform-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* --- Plays (Trigger → Agent → Outcome) --- */

.sector-play-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.sector-play {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.sector-play-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.sector-play-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.10);
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
}

.sector-play-head h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.sector-play-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.sector-play-steps li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sector-play-step-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sector-play-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* --- Agents that power this sector --- */

.sector-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.sector-agent-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-agent-card:hover,
.sector-agent-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.sector-agent-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.sector-agent-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.sector-agent-card .text-link {
  margin-top: auto;
  padding-top: 12px;
}

/* --- Vår rolle (Our role as platform partner) --- */

.sector-role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.sector-role-side {
  position: relative;
  padding: clamp(28px, 3vw, 36px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.sector-role-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.sector-role-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  counter-reset: none;
}

.sector-role-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sector-role-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 2px;
}

.sector-role-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--ink);
}

.sector-role-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --- Enablers (numbered tag rows) --- */

.sector-enable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.sector-enable-side {
  display: flex;
  align-items: stretch;
}

.sector-enable-tags {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sector-enable-tag {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.sector-enable-tag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.sector-enable-tag strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--ink);
}

.sector-enable-tag p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --- Cross-impact strip --- */

.sector-cross-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.sector-cross-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px;
  border-right: 1px solid var(--border);
}

.sector-cross-cell:last-child {
  border-right: none;
}

.sector-cross-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.10);
  border-radius: 999px;
}

.sector-cross-cell p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
  .sector-symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sector-pillar-grid,
  .sector-gen-grid,
  .sector-play-grid,
  .sector-agent-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector-cross-strip {
    grid-template-columns: 1fr;
  }
  .sector-cross-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .sector-cross-cell:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .sector-shift-grid,
  .sector-pillar-grid,
  .sector-gen-grid,
  .sector-play-grid,
  .sector-agent-grid,
  .sector-question-grid,
  .sector-platform-grid,
  .sector-enable-grid,
  .sector-role-grid {
    grid-template-columns: 1fr;
  }
  .sector-symptom-grid {
    grid-template-columns: 1fr;
  }
  .sector-shift-block,
  .sector-pillar,
  .sector-gen,
  .sector-play,
  .sector-agent-card,
  .sector-question,
  .sector-platform-card {
    padding: 24px 20px;
  }
  .sector-hero-visual {
    order: -1;
    padding: 0;
  }
}

/* Global section rewamp */

.section-shell {
  position: relative;
  padding: clamp(72px, 7vw, 108px) 0;
  background: var(--background);
}

.section-shell-open {
  background: transparent;
}

.section-shell-soft {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 26%),
    linear-gradient(180deg, var(--background) 0%, var(--section) 100%);
}

.section-shell-invert {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 28%),
    linear-gradient(180deg, var(--surface-inverse) 0%, rgba(17, 24, 39, 0.96) 100%);
  color: var(--ink-inverse);
}

.section-shell-compact {
  padding: clamp(34px, 4vw, 52px) 0;
}

.section-shell-tight {
  padding: clamp(46px, 5vw, 68px) 0;
}

.section-shell-story {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(247, 248, 250, 0.96) 100%);
}

.section-shell-proof {
  padding: clamp(26px, 4vw, 42px) 0;
  background:
    linear-gradient(180deg, rgba(247, 248, 250, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.section-shell-center .section-header {
  margin-inline: auto;
  text-align: center;
}

.section-shell-center .section-subtitle {
  margin-inline: auto;
}

.section-lead {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.split-section-tight {
  gap: 24px;
}

.split-section-emphasis-left {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
}

.split-section-emphasis-right {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr);
  align-items: center;
}

.surface-premium,
.surface-card,
.featured-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  box-shadow:
    0 20px 38px rgba(17, 24, 39, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.surface-soft,
.value-card,
.workflow-card,
.platform-step,
.related-link-card,
.why-card,
.reference-card,
.platforms-detail,
.faq-item {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 14px 28px rgba(17, 24, 39, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.surface-flat,
.contrast-card,
.outcome-item,
.context-card,
.column-card,
.business-area-cross-card,
.business-area-enable-tag,
.flow-block {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: none;
}

.section-shell-invert .value-card,
.section-shell-invert .featured-card,
.section-shell-invert .why-card,
.section-shell-invert .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-shell-invert .section-header h2,
.section-shell-invert .section-header h3,
.section-shell-invert .section-subtitle,
.section-shell-invert p,
.section-shell-invert .eyebrow,
.section-shell-invert .text-link {
  color: var(--ink-inverse);
}

.section-shell-invert .section-subtitle,
.section-shell-invert p,
.section-shell-invert .faq-item p,
.section-shell-invert .why-card p {
  color: var(--inverse-muted);
}

.section-shell-invert .eyebrow {
  opacity: 0.82;
}

.section-shell-invert .surface-flat,
.section-shell-invert .business-area-cross-card,
.section-shell-invert .flow-block {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 38px);
  max-width: 720px;
}

.section-header.section-header-wide,
.section-shell-center .section-header.section-header-wide {
  max-width: 880px;
}

.open-story-band {
  display: grid;
  gap: 18px;
  max-width: 60ch;
}

.open-story-band p,
.story-copy p {
  color: var(--muted);
}

.open-story-band .proof-strip,
.story-copy .proof-strip {
  margin-top: 8px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 32px;
  align-content: start;
}

.proof-stat {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 100%;
  padding: 18px 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.proof-stat-value {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.proof-stat-label {
  color: var(--muted);
  line-height: 1.55;
  max-width: 26ch;
}

.contact-band.section-shell,
.contact-band.section-shell.section-shell-compact {
  padding: clamp(34px, 4vw, 52px) 0;
}

.section-shell-invert .proof-stat {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.section-shell-invert .proof-stat-value {
  color: var(--ink-inverse);
}

.section-shell-invert .proof-stat-label {
  color: var(--inverse-muted);
}

/* stat-callout: stronger headline-stat primitive used when 3 numbers should
   carry a section visually. Reusable across homepage, agent-platform,
   services, applications and training. */
.stat-callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 36px;
  align-content: start;
  margin-top: 8px;
}

.stat-callout-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-callout-item {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px 0 0;
  border-top: 2px solid var(--accent);
}

.stat-callout-value {
  font-family: "Fraunces", "Inter", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.stat-callout-label {
  color: var(--muted);
  line-height: 1.5;
  max-width: 30ch;
  font-size: 0.95rem;
}

.stat-callout-source {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

.section-shell-invert .stat-callout-item {
  border-top-color: rgba(249, 115, 22, 0.85);
}

.section-shell-invert .stat-callout-value {
  color: var(--ink-inverse);
}

.section-shell-invert .stat-callout-label,
.section-shell-invert .stat-callout-source {
  color: var(--inverse-muted);
}

.media-split-visual {
  display: grid;
  position: relative;
  min-height: clamp(280px, 34vw, 420px);
  border-radius: 30px;
  overflow: hidden;
}

.media-split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(17, 24, 39, 0.08);
  pointer-events: none;
}

.media-split-asset {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.media-split-asset img {
  width: 100%;
  height: 100%;
  display: block;
}

.media-split-asset-photo img {
  object-fit: cover;
  object-position: center;
}

.media-split-asset-ui {
  padding: clamp(16px, 2vw, 24px);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
}

.media-split-asset-ui img {
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.placeholder-card {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: start;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  color: var(--ink);
}

.placeholder-card strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-card span,
.placeholder-card p {
  max-width: 34ch;
}

.placeholder-card p {
  margin: 0;
  color: rgba(17, 24, 39, 0.7);
  line-height: 1.55;
}

.placeholder-card::before {
  justify-self: start;
}

.placeholder-dify-ui {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 255, 0.94));
}

.placeholder-dify-ui .placeholder-card::before {
  content: "";
  display: block;
  width: min(100%, 360px);
  height: 160px;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.96));
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.placeholder-dify-ui .placeholder-card,
.placeholder-dify-workflow .placeholder-card {
  align-content: center;
}

.placeholder-dify-workflow {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.placeholder-dify-workflow .placeholder-card::before {
  content: "";
  display: block;
  width: min(100%, 380px);
  height: 180px;
  border-radius: 24px;
  background:
    url("images/dify-workflow-card.svg") center/cover no-repeat,
    linear-gradient(140deg, var(--accent-wash-soft), var(--surface-inverse-soft));
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.placeholder-team-photo {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.18)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.placeholder-team-photo .placeholder-card {
  min-height: 100%;
  align-content: end;
  color: var(--ink-inverse);
}

.placeholder-team-photo .placeholder-card p,
.placeholder-team-photo .placeholder-card span {
  color: rgba(255, 255, 255, 0.82);
}

.placeholder-team-photo .placeholder-card::before {
  content: none;
}

.framework-steps {
  display: grid;
  gap: 18px;
}

.framework-steps-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
}

.framework-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  align-items: start;
}

.framework-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-strong);
  font-weight: 600;
}

.framework-step h3 {
  margin-bottom: 6px;
}

.framework-step p {
  color: var(--muted);
  margin: 0;
}

.framework-steps-row .framework-step {
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 0 0;
}

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

.section-shell-invert .framework-step {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.section-shell-invert .framework-step h3 {
  color: var(--ink-inverse);
}

.section-shell-invert .framework-step p {
  color: var(--inverse-muted);
}

.section-shell-invert .framework-step-number {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-subtle);
}

@media (max-width: 1100px) {
  .framework-steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .framework-steps-row {
    grid-template-columns: 1fr;
  }
}

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

.editorial-link-card {
  display: grid;
  gap: 10px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  color: var(--ink-soft);
  align-content: start;
}

.editorial-link-card p {
  color: var(--muted);
  margin: 0;
}

.editorial-link-card .text-link {
  margin-top: 2px;
}

.section-header h2,
.section-header h3 {
  margin-bottom: 0;
  text-wrap: pretty;
}

.section-subtitle {
  max-width: 680px;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.product-hero {
  padding: clamp(72px, 7vw, 108px) 0 56px;
}

.product-hero-inner {
  gap: clamp(32px, 4vw, 56px);
}

.product-hero-inner > :first-child {
  display: grid;
  gap: 18px;
}

.product-hero .hero-subtitle {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 640px;
  line-height: 1.65;
  text-shadow: none;
}

.product-hero .hero-actions {
  margin-top: 8px;
}

.product-hero-visual,
.services-visual,
.platform-hero-visual,
.business-area-hero-visual,
.training-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 44px rgba(17, 24, 39, 0.12);
}

.value-grid,
.workflow-grid,
.featured-grid,
.related-links-grid {
  gap: 28px;
}

.value-card,
.workflow-card,
.platform-step,
.related-link-card,
.why-card {
  padding: 28px;
  gap: 12px;
  align-content: start;
  grid-auto-rows: min-content;
}

.value-card h3,
.workflow-card h3,
.platform-step h3,
.related-link-card h3,
.why-card h3 {
  margin-bottom: 2px;
  text-wrap: balance;
}

.segment-card {
  padding: 24px 26px 22px;
  border-top: 1.5px solid rgba(17, 24, 39, 0.12);
  grid-template-rows: auto 1fr auto;
}

.segment-title h3 {
  text-wrap: pretty;
}

.segment-card p {
  max-width: none;
  margin-top: 2px;
  text-wrap: pretty;
  hyphens: none;
}

.training-panel,
.contact-band-inner {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 26px 48px rgba(17, 24, 39, 0.08);
}

.training-copy,
.featured-body,
.platforms-detail,
.contact-band-copy,
.contact-band-details {
  padding: clamp(28px, 3vw, 40px);
}

.platforms-layout {
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}

.platforms-list {
  gap: 12px;
}

.platform-tab {
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.platform-tab:hover,
.platform-tab:focus-visible {
  border-color: rgba(17, 24, 39, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.platform-tab.active {
  border-color: rgba(249, 115, 22, 0.18);
  background: linear-gradient(
    180deg,
    rgba(249, 115, 22, 0.08) 0%,
    rgba(255, 255, 255, 0.96) 100%
  );
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
}

.platforms-detail {
  padding: clamp(26px, 3vw, 34px);
}

.platform-panel {
  gap: 14px;
}

.delivery .assurance-bar {
  margin-top: 28px;
}

.business-area-enable-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.business-area-enable-side .media-split-visual {
  min-height: 260px;
}

.references.section-shell-open .reference-card {
  background: rgba(255, 255, 255, 0.86);
}

/* Polished reference card composition */
.references .section-header {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.references .reference-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.references .reference-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(15, 23, 42, 0.22);
  border-color: rgba(99, 102, 241, 0.25);
}

.references .reference-header {
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.references .reference-header h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.reference-tag {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.reference-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.02));
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.reference-stat-value {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #c2410c;
}

.reference-stat-label {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.reference-card-indigo .reference-stat {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.02));
  border-color: rgba(99, 102, 241, 0.22);
}

.reference-card-indigo .reference-stat-value {
  color: #4338ca;
}

.reference-stat-flow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.05;
  padding: 4px 10px;
}

.reference-stat-flow-arrow {
  width: 14px;
  height: 20px;
  color: currentColor;
  opacity: 0.6;
}

.reference-stat-flow-from,
.reference-stat-flow-to {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.reference-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.reference-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--section);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1;
}

.references .reference-story {
  margin-top: auto;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.7);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.references .reference-story:hover {
  background: rgba(248, 250, 252, 1);
  border-color: rgba(99, 102, 241, 0.3);
}

@media (max-width: 720px) {
  .reference-stat {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
}

.dify-proof .media-split-visual {
  min-height: 320px;
}

@media (max-width: 1100px) {
  .split-section-emphasis-left,
  .split-section-emphasis-right,
  .agent-platform-teaser .split-section-emphasis-right {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

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

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

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

  .training-proof .proof-strip,
  .training-trust .editorial-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .media-split-visual {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .business-area-enable-grid.split-section {
    grid-template-columns: 1fr;
  }

  .platform-pillars {
    grid-template-columns: 1fr;
  }

  .training-proof .proof-strip,
  .training-trust .editorial-links {
    grid-template-columns: 1fr;
  }

  .feature-list-split {
    grid-template-columns: 1fr;
  }

  .link-list-columns {
    grid-template-columns: 1fr;
  }

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

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-callout-3 {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .framework-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .media-split-visual {
    min-height: 260px;
  }

  .business-area-enable-side .media-split-visual {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .open-story-band {
    max-width: none;
  }

  .section-header.section-header-wide {
    max-width: none;
  }

  .placeholder-card {
    padding: 20px;
    gap: 14px;
  }

  .placeholder-card strong {
    font-size: 0.72rem;
  }

  .placeholder-dify-ui .placeholder-card::before,
  .placeholder-dify-workflow .placeholder-card::before {
    width: 100%;
    height: 132px;
  }

  .proof-stat-value {
    font-size: 1.45rem;
  }

  .stat-callout-value {
    font-size: 2.1rem;
  }

  .product-hero-visual {
    min-height: 300px;
  }

  .featured-media img {
    height: 220px;
  }

  .reference-story {
    grid-template-columns: 96px 1fr;
  }

  .reference-story img {
    width: 96px;
    height: 72px;
  }
}

.platform-panel ul,
.business-area-value-list,
.service-step ul,
.contrast-card ul {
  display: grid;
  gap: 10px;
}

.product-outcomes.section-shell-compact {
  padding-top: 18px;
}

.product-outcomes .outcome-grid {
  gap: 20px;
}

.product-outcomes .outcome-item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 30px 26px 28px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 30px -28px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-outcomes .outcome-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(249, 115, 22, 0));
  border-radius: 20px 20px 0 0;
}

.product-outcomes .outcome-item:nth-child(2)::before {
  background: linear-gradient(90deg, #6366f1, rgba(99, 102, 241, 0));
}

.product-outcomes .outcome-item:nth-child(3)::before {
  background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0));
}

.product-outcomes .outcome-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -24px rgba(15, 23, 42, 0.28);
  border-color: rgba(249, 115, 22, 0.3);
}

.product-outcomes .outcome-value {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.product-outcomes .outcome-item:nth-child(2) .outcome-value {
  color: #4338ca;
}

.product-outcomes .outcome-item:nth-child(3) .outcome-value {
  color: #047857;
}

.product-outcomes .outcome-item:nth-child(1) .outcome-value {
  color: #c2410c;
}

.product-outcomes .outcome-label {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-wrap: balance;
}

.product-outcomes .small-note {
  margin-top: 18px;
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 720px) {
  .product-outcomes .outcome-grid {
    grid-template-columns: 1fr;
  }
}

.flow-compare {
  gap: 20px;
}

.flow-block {
  border-radius: 24px;
  padding: 20px 22px;
  box-shadow:
    0 18px 34px rgba(17, 24, 39, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.why-neurosys .why-grid {
  gap: 22px;
}

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

.why-card h3,
.why-stat {
  color: var(--ink-inverse);
}

.why-card p {
  color: var(--inverse-muted);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  padding: 20px 24px;
}

.faq-item p {
  padding: 0 24px 20px;
}

/* Polished FAQ accordion - shared across all .faq-section pages */
.faq-section .section-header {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 720px;
  justify-items: center;
}

.faq-section .section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.faq-section .section-header .eyebrow {
  margin-bottom: 12px;
}

.faq-section .faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-section .faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  display: block;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.faq-section .faq-item:hover {
  border-color: rgba(249, 115, 22, 0.32);
}

.faq-section .faq-item[open] {
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.faq-section .faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

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

.faq-section .faq-item summary::after {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: transform 0.25s ease;
  margin-left: auto;
}

.faq-section .faq-item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}

.faq-section .faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 720px;
}

@media (max-width: 640px) {
  .faq-section .faq-item summary {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-section .faq-item p {
    padding: 0 20px 18px;
    font-size: 0.92rem;
  }
}

.contact-band-copy {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 32%),
    linear-gradient(180deg, var(--surface-inverse), rgba(17, 24, 39, 0.92));
}

.contact-band-card {
  border-left: 1px solid rgba(17, 24, 39, 0.08);
}

.business-area-copy {
  max-width: 760px;
}

.business-area-value-shell {
  border-radius: 28px;
  padding: 30px;
}

.business-area-cross-card,
.business-area-enable-tag {
  border-radius: 22px;
}

.related-link-card .text-link,
.segment-link {
  margin-top: 6px;
}

.segment-link {
  align-self: end;
}

.segment-title {
  align-items: flex-start;
}

.segment-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.segment-icon::before {
  content: none;
}

.segment-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 980px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .platforms-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .business-area-highlight-grid,
  .business-area-enable-grid,
  .related-links-grid,
  .business-area-cross-grid,
  .business-area-value-list {
    grid-template-columns: 1fr;
  }

  .marketing-orbit {
    width: min(100%, 360px);
  }
}

@media (max-width: 700px) {
  .business-area-hero-visual {
    min-height: 300px;
  }

  .marketing-orbit-core {
    width: 176px;
    padding: 18px 14px;
  }

  .marketing-orbit-ring {
    inset: 42px;
  }

  .marketing-orbit-node {
    font-size: 0.86rem;
    padding: 9px 12px;
  }

  .marketing-orbit-node-content,
  .marketing-orbit-node-followup {
    top: auto;
    bottom: 68px;
    transform: none;
  }

  .marketing-orbit-node-content {
    right: 0;
  }

  .marketing-orbit-node-followup {
    left: 0;
  }
}

@media (max-width: 520px) {
  .credential-group-trust,
  .credential-group-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .logo-track {
    animation: none;
  }

  .tree-flow {
    animation: none;
  }
}

@keyframes hero-fade-up {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.service-offering {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-offering:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.06);
}

.service-offering-flagship {
  border-color: rgba(249, 115, 22, 0.28);
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.05), rgba(255, 255, 255, 0)),
    var(--surface);
}

.service-offering-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-offering-format {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: normal;
}

.service-offering h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.45rem);
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service-offering > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-offering-points {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.service-offering-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-offering-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.service-offering-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 0;
  margin-top: 4px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.15s ease;
}

.service-offering-link:hover {
  opacity: 0.78;
  text-decoration: underline;
}

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

.services-areas-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.service-area-stack {
  display: grid;
  gap: 22px;
}

.service-area {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-area:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.06);
}

.service-area-flagship {
  border-color: rgba(99, 102, 241, 0.28);
  background:
    linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(255, 255, 255, 0)),
    var(--surface);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.service-area-flagship::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ai-glow), var(--ai-glow-soft));
}

.service-area-flagship:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(99, 102, 241, 0.1);
}

.service-area-flagship .service-area-format {
  background: rgba(99, 102, 241, 0.12);
  color: var(--ai-glow);
}

.service-area-flagship .service-offering-link {
  color: var(--ai-glow);
}

.eyebrow-ai {
  color: var(--ai-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  position: relative;
}

.eyebrow-ai::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ai-glow);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.service-area-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-area-format {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: normal;
}

.service-area h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  margin: 0;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service-area > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-area-pillars {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-area-pillars li {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 12px;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.service-area-pillar-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}

.service-area-pillar-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-area-trust {
  margin-top: 4px;
  padding: 14px 16px;
  background: rgba(17, 24, 39, 0.03);
  border-radius: 12px;
  display: grid;
  gap: 6px;
}

.service-area-trust-line {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.service-area-trust-line strong {
  color: var(--ink);
  font-weight: 600;
}

.service-area-trust-clients {
  color: var(--ink-soft);
  font-style: italic;
}

.service-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
}

.service-offering-link-muted {
  color: var(--ink-soft);
  font-weight: 500;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.formats-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.format-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  display: grid;
  align-content: start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.format-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ai-glow), var(--ai-glow-soft));
  opacity: 0.85;
}

.format-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 14px 26px rgba(99, 102, 241, 0.08);
}

.format-card-tag {
  align-self: start;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--ai-glow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.format-card-tag-free {
  background: var(--success-soft);
  color: #15803d;
}

.format-card h3,
.format-card h4 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
}

.format-card-meta {
  margin: -6px 0 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.format-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.format-card-points {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.format-card-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.format-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.format-card .service-offering-link {
  margin-top: 4px;
  align-self: start;
  color: var(--ai-glow);
}

.format-card .service-offering-link:hover {
  color: var(--ai-glow-soft);
}

.formats-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 32px;
}

.formats-callout-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.formats-callout-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.formats-callout-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.formats-callout-price {
  text-align: right;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.formats-callout-price-value {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
}

.formats-callout-price-label {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Hosting models section (services page) */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.hosting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 30px;
  display: grid;
  align-content: start;
  gap: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hosting-card:hover {
  border-color: rgba(99, 102, 241, 0.32);
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.08);
}

.hosting-card-hosted {
  border-color: rgba(99, 102, 241, 0.28);
  background:
    linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(255, 255, 255, 0)),
    var(--surface);
  position: relative;
  overflow: hidden;
}

.hosting-card-hosted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ai-glow), var(--ai-glow-soft));
}

.hosting-card-tag {
  align-self: start;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  width: fit-content;
}

.hosting-card-hosted .hosting-card-tag {
  background: var(--success-soft);
  color: #15803d;
}

.hosting-card h3,
.hosting-card h4 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-weight: 500;
}

.hosting-card-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hosting-tiers,
.hosting-options {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.hosting-tiers li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name price"
    "detail price";
  gap: 2px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.hosting-tier-name {
  grid-area: name;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}

.hosting-tier-detail {
  grid-area: detail;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.hosting-tier-price {
  grid-area: price;
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--accent);
  font-size: 1.05rem;
  white-space: nowrap;
}

.hosting-options li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.hosting-option-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}

.hosting-option-detail {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hosting-card-fineprint {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.55;
  font-style: italic;
}

.hosting-card-fineprint-muted {
  color: var(--muted);
  font-style: normal;
  font-size: 0.8rem;
  margin-top: 2px;
}

.hosting-card-fineprint-muted a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 2px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.hosting-card-fineprint-muted a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.hosting-workflow-examples {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hosting-workflow-examples strong {
  color: var(--ink);
  font-weight: 600;
}

.hosting-card .service-offering-link {
  margin-top: 6px;
  align-self: start;
}

.hosting-workflow-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 22px;
  padding: 26px 30px;
}

.hosting-workflow-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.hosting-workflow-copy h3,
.hosting-workflow-copy h4 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
}

.hosting-workflow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 640px;
}

.hosting-workflow-price {
  text-align: right;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.hosting-workflow-price-value {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 500;
}

.hosting-workflow-price-label {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  max-width: 220px;
  margin-left: auto;
}

/* Agentic AI consolidated section: groups workshops, hosting and workflow
   pricing under one section header. Each sub-block has its own internal
   header with eyebrow + h3 + lead so the buyer can scan the structure. */
.services-agentic-details .agentic-subblock {
  margin-top: clamp(48px, 6vw, 80px);
}

.services-agentic-details .agentic-subblock:first-of-type {
  margin-top: clamp(28px, 3vw, 40px);
}

.agentic-subblock-header {
  max-width: 760px;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
}

.agentic-subblock-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.agentic-subblock-header h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.agentic-subblock-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Credibility strip below the 4-phase framework on services page */
.services-delivery-proof {
  margin-top: clamp(48px, 5vw, 72px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .services-areas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid.why-grid-2col {
    grid-template-columns: 1fr;
  }

  .formats-grid,
  .formats-grid-2,
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .formats-callout,
  .hosting-workflow-callout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .formats-callout-price,
  .hosting-workflow-price {
    text-align: left;
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .hosting-workflow-price-label {
    margin-left: 0;
  }

  .service-area-pillars li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

