:root {
  --bg-primary: #3f56a8;
  --bg-deep: #283878;
  --bg-panel: #334891;
  --text-primary: #f4f7ff;
  --text-soft: #c9d2ff;
  --accent-peach: #efb0b8;
  --accent-gold: #d6b64a;
  --accent-cyan: #74d0dc;
  --line: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 36px rgba(12, 17, 52, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Aptos", "Segoe UI Variable Display", "Candara", "Trebuchet MS", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(116, 208, 220, 0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(239, 176, 184, 0.1), transparent 60%),
    linear-gradient(160deg, var(--bg-primary), var(--bg-deep));
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(22, 33, 90, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-peach);
}

.brand-ring {
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-ring::before,
.brand-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand-ring::before {
  inset: 6px;
  border: 2px solid currentColor;
  opacity: 0.9;
}

.brand-ring::after {
  width: 8px;
  height: 8px;
  background: currentColor;
  top: 11px;
  right: -4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

main {
  padding: 38px 0 70px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(34px, 4vw, 52px) 0;
}

.hero-home,
.hero-secondary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: transparent;
}

.hero-home {
  overflow: visible;
}

.hero-secondary-visual {
  display: block;
  width: auto;
  max-width: 100%;
  height: 330px;
  align-self: center;
  justify-self: end;
  filter: drop-shadow(0 24px 38px rgba(11, 18, 57, 0.24));
}

.hero::after {
  content: none;
}

.kicker {
  display: inline-block;
  color: var(--accent-gold);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-family: "Bahnschrift", "Segoe UI Semibold", sans-serif;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.025em;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: start;
}

.hero-media {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: end;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-media::before {
  inset: -18px;
  border: 1px solid rgba(116, 208, 220, 0.34);
}

.hero-media::after {
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(239, 176, 184, 0.38);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 66% center;
  border-radius: 50%;
  filter: saturate(0.78) contrast(0.94);
  box-shadow: 0 28px 65px rgba(11, 18, 57, 0.34);
}

.hero-media-ring {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  right: 7%;
  top: 25%;
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34), 0 0 22px rgba(214, 182, 74, 0.48);
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

.hero p {
  max-width: 64ch;
  color: var(--text-soft);
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.grid {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

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

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

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

.continue-grid .card {
  display: flex;
  flex-direction: column;
}

.continue-grid .cta-row {
  margin-top: auto;
  padding-top: 24px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-panel);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.home-proof-grid {
  gap: 14px;
}

.home-proof-grid .proof-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px 22px 24px;
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(27, 42, 112, 0.58));
  box-shadow: 0 16px 34px rgba(12, 17, 52, 0.22);
}

.home-proof-grid .proof-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--proof-accent);
  border-radius: 50%;
  opacity: 0.28;
  box-shadow: 0 0 0 22px color-mix(in srgb, var(--proof-accent) 8%, transparent);
}

.proof-card-clinical { --proof-accent: var(--accent-peach); }
.proof-card-live { --proof-accent: var(--accent-gold); }
.proof-card-integration { --proof-accent: var(--accent-cyan); }

.proof-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 38px;
  color: var(--proof-accent);
}

.proof-card-meta span {
  font: 700 1.45rem/1 "Bahnschrift", "Segoe UI Semibold", sans-serif;
}

.proof-card-meta strong {
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--proof-accent) 44%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--proof-accent) 10%, transparent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-proof-grid .proof-card h3 {
  margin: 0 0 9px;
  font-size: 1.18rem;
}

.home-proof-grid .proof-card p {
  position: relative;
  z-index: 1;
  max-width: 36ch;
  line-height: 1.55;
}

.home-visual-grid .card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 24px 22px 22px;
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(140deg, rgba(31, 42, 114, 0.9), rgba(39, 53, 127, 0.76));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-visual-grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(220px 130px at 15% 5%, rgba(116, 208, 220, 0.15), transparent 70%),
    radial-gradient(260px 160px at 85% 95%, rgba(239, 176, 184, 0.14), transparent 72%);
  opacity: 1;
}

.home-visual-grid .card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 19, 65, 0.18) 0%, rgba(10, 19, 65, 0.52) 72%, rgba(10, 19, 65, 0.66) 100%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.04), transparent 35%);
}

.home-visual-grid .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 42px rgba(12, 17, 52, 0.44);
}

.home-visual-grid .card > * {
  position: relative;
  z-index: 1;
}

.home-visual-grid .card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(8, 15, 53, 0.55);
}

.home-visual-grid .card p {
  line-height: 1.45;
  max-width: 34ch;
  text-shadow: 0 1px 10px rgba(8, 15, 53, 0.45);
}

.home-practice-grid .card::before {
  background:
    radial-gradient(240px 140px at 10% 10%, rgba(116, 208, 220, 0.18), transparent 72%),
    radial-gradient(200px 140px at 90% 90%, rgba(239, 176, 184, 0.14), transparent 74%);
}

.home-visual-grid .card.webp-code::before,
.home-visual-grid .card.webp-communication::before,
.home-visual-grid .card.webp-quality::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-visual-grid .card.webp-code::before {
  background-image:
    linear-gradient(135deg, rgba(17, 31, 97, 0.75), rgba(17, 31, 97, 0.58)),
    url("assets/code.webp");
}

.home-visual-grid .card.webp-communication::before {
  background-image:
    linear-gradient(135deg, rgba(26, 37, 108, 0.74), rgba(26, 37, 108, 0.56)),
    url("assets/communication.webp");
}

.home-visual-grid .card.webp-quality::before {
  background-image:
    linear-gradient(135deg, rgba(32, 44, 118, 0.76), rgba(32, 44, 118, 0.57)),
    url("assets/quality.webp");
}

.home-original-grid .card p {
  color: #edf2ff;
}

.home-original-grid .card {
  border-top: 2px solid rgba(116, 208, 220, 0.66);
}

.home-impact-grid .card::before {
  background:
    linear-gradient(120deg, rgba(214, 182, 74, 0.12), transparent 45%),
    radial-gradient(300px 170px at 85% 15%, rgba(116, 208, 220, 0.16), transparent 70%);
}

.home-challenges-grid .card::before {
  background:
    radial-gradient(260px 150px at 20% 85%, rgba(239, 176, 184, 0.16), transparent 72%),
    linear-gradient(140deg, rgba(116, 208, 220, 0.08), transparent 55%);
}

.home-flow-grid {
  position: relative;
  gap: 22px;
  margin-top: 30px;
}

.home-flow-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  z-index: 0;
  background: linear-gradient(90deg, var(--accent-peach), var(--accent-cyan), var(--accent-gold));
  opacity: 0.54;
}

.home-flow-grid .flow-card {
  --flow-accent: var(--accent-cyan);
  isolation: isolate;
  min-height: 255px;
  padding: 26px 24px 24px;
  border-top: 3px solid var(--flow-accent);
  border-color: color-mix(in srgb, var(--flow-accent) 38%, rgba(255, 255, 255, 0.2));
  border-top-color: var(--flow-accent);
  background:
    radial-gradient(280px 170px at 100% 0%, color-mix(in srgb, var(--flow-accent) 18%, transparent), transparent 72%),
    linear-gradient(150deg, rgba(25, 38, 104, 0.96), rgba(45, 61, 139, 0.82));
}

.home-flow-grid .flow-context {
  --flow-accent: var(--accent-peach);
}

.home-flow-grid .flow-decision {
  --flow-accent: var(--accent-cyan);
}

.home-flow-grid .flow-collaboration {
  --flow-accent: var(--accent-peach);
}

.home-flow-grid .flow-learning {
  --flow-accent: var(--accent-gold);
}

.home-flow-grid .flow-card::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 38%),
    radial-gradient(160px 160px at 16% 100%, color-mix(in srgb, var(--flow-accent) 16%, transparent), transparent 72%);
}

.home-flow-grid .flow-card::after {
  content: attr(data-step);
  inset: auto 14px -18px auto;
  z-index: 0;
  color: rgba(255, 255, 255, 0.055);
  background: none;
  font: 800 7rem/1 "Bahnschrift", "Segoe UI Semibold", sans-serif;
  letter-spacing: -0.04em;
}

.flow-step-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
}

.flow-step-node {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(63, 86, 168, 0.92);
  border-radius: 50%;
  color: #17235f;
  background: var(--flow-accent);
  font: 800 0.94rem/1 "Bahnschrift", "Segoe UI Semibold", sans-serif;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--flow-accent) 66%, white),
    0 12px 22px rgba(12, 17, 52, 0.34);
}

.flow-step-kicker {
  width: fit-content;
  padding: 6px 11px;
  border: 1px solid color-mix(in srgb, var(--flow-accent) 52%, transparent);
  border-radius: 999px;
  color: var(--flow-accent);
  background: rgba(10, 19, 65, 0.26);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-flow-grid .flow-card h3 {
  margin-top: 30px;
  max-width: 13ch;
  line-height: 1.14;
}

.home-flow-grid .flow-card p {
  max-width: 31ch;
  line-height: 1.58;
}

.home-stakeholders-grid .card::before {
  background: radial-gradient(340px 210px at 100% 100%, color-mix(in srgb, var(--stakeholder-accent) 24%, transparent), transparent 70%);
}

.home-stakeholders-grid {
  gap: 16px;
}

.home-stakeholders-grid .stakeholder-card {
  --stakeholder-accent: var(--accent-cyan);
  min-height: 285px;
  padding: 24px 26px 25px;
  border-top: 3px solid var(--stakeholder-accent);
  background: linear-gradient(145deg, rgba(21, 32, 95, 0.94), rgba(34, 49, 122, 0.78));
}

.home-stakeholders-grid .stakeholder-card::after {
  background: linear-gradient(105deg, rgba(7, 14, 55, 0.24), transparent 62%);
}

.home-stakeholders-grid .stakeholder-clinicians { --stakeholder-accent: var(--accent-cyan); }
.home-stakeholders-grid .stakeholder-patients { --stakeholder-accent: var(--accent-peach); }
.home-stakeholders-grid .stakeholder-systems { --stakeholder-accent: var(--accent-gold); }
.home-stakeholders-grid .stakeholder-research { --stakeholder-accent: #a9b9ff; }

.stakeholder-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid color-mix(in srgb, var(--stakeholder-accent) 55%, transparent);
  border-radius: 16px;
  color: var(--stakeholder-accent);
  background: color-mix(in srgb, var(--stakeholder-accent) 11%, transparent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--stakeholder-accent) 12%, transparent);
}

.stakeholder-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stakeholder-label {
  margin-top: 24px;
  color: var(--stakeholder-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-stakeholders-grid .stakeholder-card h3 {
  margin-top: 4px;
}

.home-stakeholders-grid + .team-method {
  margin-top: clamp(36px, 5vw, 56px);
}

.home-stakeholders-grid .stakeholder-card .stakeholder-arrow {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--stakeholder-accent);
  font-size: 1.45rem;
  opacity: 0.76;
  transition: transform 0.22s ease;
}

.stakeholder-card:hover .stakeholder-arrow {
  transform: translate(3px, -3px);
}

.team-capabilities,
.team-method {
  margin-top: clamp(64px, 8vw, 96px);
}

.team-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.team-section-heading h2 {
  max-width: 720px;
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.team-section-heading > p {
  margin: 0 0 4px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.team-strength-card {
  --team-accent: var(--accent-peach);
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--team-accent);
  border-radius: 22px;
  background:
    radial-gradient(280px 190px at 100% 100%, color-mix(in srgb, var(--team-accent) 20%, transparent), transparent 72%),
    linear-gradient(145deg, rgba(28, 42, 108, 0.94), rgba(46, 65, 145, 0.82));
  box-shadow: 0 18px 38px rgba(12, 17, 52, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.team-strength-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--team-accent) 62%, white);
  box-shadow: 0 24px 44px rgba(12, 17, 52, 0.38);
}

.strength-technology {
  --team-accent: var(--accent-cyan);
}

.strength-delivery {
  --team-accent: var(--accent-gold);
}

.team-strength-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid color-mix(in srgb, var(--team-accent) 58%, transparent);
  border-radius: 16px;
  color: var(--team-accent);
  background: color-mix(in srgb, var(--team-accent) 11%, transparent);
}

.team-strength-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-strength-label,
.team-method-step > span {
  display: block;
  color: var(--team-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-strength-card h3 {
  margin: 7px 0 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.team-strength-card p,
.team-method-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.team-method {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(520px 260px at 0% 0%, rgba(116, 208, 220, 0.13), transparent 72%),
    linear-gradient(145deg, rgba(25, 38, 101, 0.82), rgba(45, 63, 139, 0.68));
  box-shadow: var(--shadow);
}

.team-method-heading {
  margin-bottom: 38px;
}

.team-method-path {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-method-path.home-flow-grid::before,
.platform-trust-grid.home-flow-grid::before {
  left: 8%;
  right: 8%;
}

.team-method-path.home-flow-grid .flow-card,
.platform-trust-grid.home-flow-grid .flow-card {
  min-height: 280px;
}

.team-method-step h3 {
  margin: 30px 0 9px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.team-member-card {
  display: grid;
  gap: 8px;
}

.team-member-card h3 {
  margin-bottom: 0;
}

.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(116, 208, 220, 0.16), transparent 62%),
    linear-gradient(160deg, color-mix(in srgb, var(--bg-primary) 94%, var(--accent-cyan)), var(--bg-deep));
  border-radius: 14px;
  border: 1px solid var(--line);
}

.team-role {
  color: var(--accent-gold) !important;
  font-weight: 600;
}

.member-more-btn {
  justify-self: start;
  margin-top: 2px;
  border: none;
  padding: 0;
  background: transparent;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.member-more-btn:hover {
  color: var(--text-primary);
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.member-modal[hidden] {
  display: none;
}

.member-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 17, 52, 0.66);
}

.member-modal-card {
  position: relative;
  width: min(920px, 95vw);
  max-height: 86vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  padding: 22px;
}

.member-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  cursor: pointer;
}

.member-modal-image {
  width: min(280px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(116, 208, 220, 0.16), transparent 62%),
    linear-gradient(160deg, color-mix(in srgb, var(--bg-primary) 94%, var(--accent-cyan)), var(--bg-deep));
  border-radius: 14px;
  border: 1px solid var(--line);
}

.member-modal-header {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 18px;
  align-items: start;
}

.member-modal-meta h3 {
  margin: 2px 0 6px;
}

.member-modal-role {
  margin: 0;
  color: var(--accent-gold);
  font-weight: 600;
}

.member-modal-content {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.member-modal-content p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .member-modal-header {
    grid-template-columns: 1fr;
  }

  .member-modal-image {
    width: min(320px, 100%);
  }
}

.metric {
  font-family: "Bahnschrift", "Segoe UI Semibold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--accent-peach);
}

.metric-sub {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 4px;
}

.section-title {
  margin-top: 36px;
  margin-bottom: 14px;
}

.practice-story,
.challenge-section {
  margin-top: clamp(36px, 5vw, 56px);
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.story-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  max-width: 720px;
  letter-spacing: -0.025em;
}

.story-heading > p {
  margin: 0 0 5px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.eyebrow,
.manifesto-kicker {
  display: block;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(600px 420px at 12% 50%, rgba(116, 208, 220, 0.16), transparent 68%),
    linear-gradient(135deg, rgba(17, 28, 84, 0.88), rgba(34, 49, 121, 0.72));
  box-shadow: var(--shadow);
}

.practice-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(12, 22, 72, 0.32), transparent),
    url("assets/code.webp") center / cover;
  isolation: isolate;
}

.practice-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(15, 27, 83, 0.76), rgba(31, 48, 123, 0.64));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(116, 208, 220, 0.46);
  border-radius: 50%;
}

.orbit-outer {
  width: min(80%, 390px);
  aspect-ratio: 1;
}

.orbit-inner {
  width: min(54%, 260px);
  aspect-ratio: 1;
  border-color: rgba(239, 176, 184, 0.54);
}

.practice-core {
  position: relative;
  width: 160px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(145deg, rgba(239, 176, 184, 0.94), rgba(214, 182, 74, 0.88));
  color: #1c255f;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.05), 0 24px 60px rgba(7, 15, 54, 0.48);
}

.practice-core .brand-ring {
  width: 34px;
  height: 34px;
}

.practice-core strong {
  font-family: "Bahnschrift", "Segoe UI Semibold", sans-serif;
  line-height: 1.05;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.orbit-label {
  position: absolute;
  z-index: 2;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 29, 86, 0.84);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.orbit-label-evidence {
  top: 18%;
  left: 13%;
}

.orbit-label-context {
  top: 29%;
  right: 7%;
}

.orbit-label-action {
  bottom: 15%;
  left: 23%;
}

.practice-points {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 62px);
}

.practice-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.practice-point:last-child {
  border-bottom: 0;
}

.point-number {
  color: var(--accent-cyan);
  font-family: "Bahnschrift", "Segoe UI Semibold", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding-top: 5px;
}

.practice-point h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 8px;
}

.practice-point p {
  margin: 0;
  color: var(--text-soft);
  max-width: 46ch;
}

.manifesto {
  position: relative;
  overflow: hidden;
  margin-top: clamp(64px, 9vw, 110px);
  padding: clamp(38px, 7vw, 78px);
  border-radius: 30px;
  background:
    linear-gradient(100deg, rgba(17, 29, 86, 0.88), rgba(36, 54, 135, 0.56)),
    url("assets/home-hero-wide.jpg") center center / cover;
  box-shadow: var(--shadow);
}

.manifesto-hero {
  min-height: clamp(470px, calc(100svh - 150px), 660px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  padding-top: clamp(46px, 7vw, 88px);
  padding-bottom: clamp(46px, 7vw, 88px);
}

.manifesto-hero + .practice-story {
  margin-top: clamp(36px, 5vw, 56px);
}

.manifesto::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -190px;
  border: 1px solid rgba(239, 176, 184, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(116, 208, 220, 0.06), 0 0 0 88px rgba(255, 255, 255, 0.025);
}

.manifesto > * {
  position: relative;
  z-index: 1;
}

.manifesto h2 {
  margin: 12px 0 20px;
  max-width: 880px;
  font-size: clamp(2.2rem, 5.7vw, 5.1rem);
  letter-spacing: -0.04em;
}

.manifesto h2 em {
  color: var(--accent-peach);
  font-style: normal;
}

.manifesto-intro {
  max-width: 68ch;
  margin: 0;
  color: #e6ebff;
  font-size: 1.08rem;
  line-height: 1.7;
}

.manifesto-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.manifesto-pillars span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(13, 24, 76, 0.54);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.challenge-heading {
  margin-bottom: 44px;
}

.challenge-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.challenge-path::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-peach), var(--accent-cyan), var(--accent-gold));
}

.challenge-step {
  position: relative;
  padding-top: 82px;
  text-align: center;
}

.challenge-index {
  position: absolute;
  top: 0;
  left: 50%;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Bahnschrift", "Segoe UI Semibold", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  transform: translate(-50%, -40%);
}

.challenge-marker {
  position: absolute;
  z-index: 1;
  top: 39px;
  left: 50%;
  width: 17px;
  height: 17px;
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 22px rgba(116, 208, 220, 0.5);
  transform: translateX(-50%);
}

.challenge-step:first-child .challenge-marker {
  background: var(--accent-peach);
}

.challenge-step:last-child .challenge-marker {
  background: var(--accent-gold);
}

.challenge-step h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-left: auto;
  margin-right: auto;
}

.challenge-step p {
  max-width: 34ch;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-soft);
  line-height: 1.65;
}

.inline-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.news-blog {
  margin-top: clamp(58px, 8vw, 92px);
}

.news-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 22px;
  margin-top: 26px;
}

.news-blog-card {
  --news-accent: var(--accent-cyan);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 26px 28px;
  border: 1px solid color-mix(in srgb, var(--news-accent) 30%, rgba(255, 255, 255, 0.2));
  border-left: 4px solid var(--news-accent);
  border-radius: 20px;
  background:
    radial-gradient(360px 190px at 100% 0%, color-mix(in srgb, var(--news-accent) 15%, transparent), transparent 72%),
    linear-gradient(145deg, rgba(51, 72, 145, 0.82), rgba(31, 45, 112, 0.78));
  box-shadow: 0 18px 38px rgba(12, 17, 52, 0.26);
}

.news-blog-feature {
  --news-accent: var(--accent-gold);
}

.news-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.news-blog-meta time,
.news-blog-meta span {
  display: inline-flex;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--news-accent) 48%, transparent);
  border-radius: 999px;
  color: var(--news-accent);
  background: color-mix(in srgb, var(--news-accent) 9%, transparent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-blog-card h3 {
  margin: 0 0 11px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.22;
}

.news-blog-card p {
  max-width: 68ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.news-blog-more {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px 20px;
  border: 1px solid color-mix(in srgb, var(--news-accent) 26%, rgba(255, 255, 255, 0.16));
  border-radius: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--news-accent) 10%, transparent), rgba(11, 19, 63, 0.22));
}

.news-blog-more-label {
  display: inline-flex;
  width: fit-content;
  color: var(--news-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-blog-more-copy {
  display: grid;
  gap: 14px;
}

.news-blog-more-copy p {
  color: #d8dfff;
  font-size: 0.96rem;
  line-height: 1.62;
}

.news-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.news-section-heading h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.linkedin-updates {
  margin-top: clamp(58px, 8vw, 92px);
}

.hero-secondary + .team-capabilities,
.hero-secondary + .linkedin-updates {
  margin-top: 36px;
}

.linkedin-embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 548px);
  gap: 30px;
  margin-top: 28px;
}

.linkedin-embed-card {
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
    rgba(24, 36, 99, 0.34);
  box-shadow: 0 20px 42px rgba(12, 17, 52, 0.3);
}

.linkedin-embed-card iframe {
  display: block;
  width: min(504px, calc(92vw - 20px));
  max-width: 100%;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
}

.news-milestones {
  margin-top: clamp(68px, 9vw, 106px);
}

.news-milestone-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.news-milestone-heading h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.news-milestone-heading > p {
  margin: 0 0 4px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

.news-milestone-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-milestone-path::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-peach), var(--accent-cyan), var(--accent-gold));
  opacity: 0.72;
}

.news-milestone-card {
  --milestone-accent: var(--accent-peach);
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 82px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--milestone-accent);
  border-radius: 20px;
  background:
    radial-gradient(260px 180px at 100% 100%, color-mix(in srgb, var(--milestone-accent) 18%, transparent), transparent 72%),
    linear-gradient(150deg, rgba(48, 67, 145, 0.94), rgba(29, 43, 107, 0.92));
  box-shadow: 0 18px 38px rgba(12, 17, 52, 0.3);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.news-milestone-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--milestone-accent) 65%, white);
  box-shadow: 0 24px 46px rgba(12, 17, 52, 0.4);
}

.milestone-integration {
  --milestone-accent: var(--accent-cyan);
}

.milestone-readiness {
  --milestone-accent: var(--accent-gold);
}

.news-milestone-card::before {
  content: attr(data-step);
  position: absolute;
  top: 11px;
  left: 26px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  color: #1d2867;
  background: var(--milestone-accent);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(12, 17, 52, 0.3);
}

.news-milestone-status {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--milestone-accent) 55%, transparent);
  border-radius: 999px;
  color: var(--milestone-accent);
  background: rgba(12, 20, 70, 0.3);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-milestone-card h3 {
  margin: 0 0 11px;
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  line-height: 1.22;
}

.news-milestone-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.contact-inquiries {
  margin-top: 36px;
}

.contact-inquiry-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 32px;
}

.contact-inquiry-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.contact-inquiry-heading > p {
  margin: 0 0 4px;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.contact-inquiry-card {
  --inquiry-accent: var(--accent-peach);
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--inquiry-accent);
  border-radius: 22px;
  background:
    radial-gradient(300px 190px at 100% 100%, color-mix(in srgb, var(--inquiry-accent) 21%, transparent), transparent 72%),
    linear-gradient(145deg, rgba(29, 43, 108, 0.95), rgba(48, 67, 145, 0.82));
  box-shadow: 0 18px 38px rgba(12, 17, 52, 0.28);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-inquiry-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--inquiry-accent) 65%, white);
  box-shadow: 0 24px 46px rgba(12, 17, 52, 0.4);
}

.inquiry-platform {
  --inquiry-accent: var(--accent-cyan);
}

.inquiry-general {
  --inquiry-accent: var(--accent-gold);
}

.contact-inquiry-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid color-mix(in srgb, var(--inquiry-accent) 58%, transparent);
  border-radius: 17px;
  color: var(--inquiry-accent);
  background: color-mix(in srgb, var(--inquiry-accent) 11%, transparent);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--inquiry-accent) 10%, transparent);
}

.contact-inquiry-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-inquiry-label {
  display: block;
  color: var(--inquiry-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-inquiry-card h3 {
  margin: 7px 0 11px;
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
  line-height: 1.2;
}

.contact-inquiry-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.before-after-showcase {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background:
    radial-gradient(650px 220px at 15% -30%, rgba(239, 176, 184, 0.18), transparent 65%),
    radial-gradient(700px 230px at 95% -20%, rgba(116, 208, 220, 0.16), transparent 65%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.comparison-icon-defs {
  position: absolute;
}

.before-after-header {
  margin-bottom: 14px;
}

.before-after-kicker {
  margin: 0 0 4px;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
}

.before-after-header h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
}

.before-after-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.before-panel,
.after-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

.before-panel {
  background: linear-gradient(120deg, rgba(31, 42, 114, 0.92), rgba(31, 42, 114, 0.72));
}

.after-panel {
  background: linear-gradient(120deg, rgba(31, 42, 114, 0.86), rgba(39, 53, 127, 0.66));
}

.panel-label {
  margin: 0 0 10px;
  font-size: 0.86rem;
  color: var(--accent-peach);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.after-panel .panel-label {
  color: var(--text-primary);
}

.comparison-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.comparison-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(15, 22, 66, 0.46);
}

.comparison-item-content {
  display: grid;
  gap: 4px;
}

.comparison-mark {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  align-self: start;
  margin-top: 0;
}

.comparison-mark-negative {
  color: #d64545;
}

.comparison-mark-positive {
  color: #2f9e44;
}

.comparison-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.comparison-topic {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.comparison-detail {
  color: var(--text-soft);
  line-height: 1.45;
}

.comparison-divider {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 90px;
}

.comparison-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.25) 30%, 
    rgba(255, 255, 255, 0.25) 70%, 
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: 1;
}

.comparison-divider span {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 
    0 4px 14px rgba(9, 14, 48, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-divider .divider-arrow {
  width: 12px;
  height: 12px;
  display: block;
  stroke: var(--accent-cyan);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover effect for the whole showcase */
.before-after-showcase:hover .comparison-divider span {
  background: linear-gradient(135deg, rgba(116, 208, 220, 0.22), rgba(239, 176, 184, 0.16));
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 0 16px rgba(116, 208, 220, 0.35),
    0 6px 18px rgba(9, 14, 48, 0.3);
  transform: scale(1.06);
}

.before-after-showcase:hover .comparison-divider .divider-arrow {
  stroke: var(--accent-peach);
}

.how-kyklos-flow {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.how-flow-kicker {
  margin: 0;
  color: var(--accent-gold);
  text-align: center;
  font-style: italic;
  font-size: 1.12rem;
}

.how-flow-sources,
.how-flow-outcomes {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.how-flow-core {
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.core-divider {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 64px;
}

.core-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.25) 30%, 
    rgba(255, 255, 255, 0.25) 70%, 
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: 1;
}

.core-divider span {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 14px rgba(9, 14, 48, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.core-divider .divider-arrow {
  width: 12px;
  height: 12px;
  display: block;
  stroke: var(--accent-cyan);
  transition: stroke 0.3s ease;
}

.how-flow-core:hover .core-divider span {
  background: linear-gradient(135deg, rgba(116, 208, 220, 0.22), rgba(239, 176, 184, 0.16));
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 0 16px rgba(116, 208, 220, 0.35),
    0 6px 18px rgba(9, 14, 48, 0.3);
  transform: scale(1.08);
}

.how-flow-core:hover .core-divider .divider-arrow {
  stroke: var(--accent-peach);
}

.how-flow-node {
  border: 1px solid rgba(214, 182, 74, 0.7);
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(19, 30, 93, 0.46);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-flow-node h3 {
  margin: 0 0 8px;
  color: var(--accent-gold);
  font-size: 1.12rem;
}

.how-flow-node p {
  margin: 0;
  color: var(--text-soft);
}

.how-flow-assistant ul {
  margin-top: 8px;
}

.how-flow-review {
  text-align: center;
}

.how-flow-accent {
  color: var(--accent-gold) !important;
  font-weight: 700;
  margin-top: 2px;
}

.how-flow-footer {
  margin: 2px 0 0;
  text-align: center;
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 600;
}

.flow-arrow-container {
  display: grid;
  place-items: center;
  position: relative;
  padding: 18px 0;
  width: 100%;
}

.flow-arrow-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.25) 30%, 
    rgba(255, 255, 255, 0.25) 70%, 
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: 1;
}

.flow-arrow-node {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 14px rgba(9, 14, 48, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flow-arrow-node .divider-arrow {
  width: 12px;
  height: 12px;
  display: block;
  stroke: var(--accent-cyan);
  transition: stroke 0.3s ease;
}

.flow-arrow-container:hover .flow-arrow-node {
  background: linear-gradient(135deg, rgba(116, 208, 220, 0.22), rgba(239, 176, 184, 0.16));
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 0 16px rgba(116, 208, 220, 0.35),
    0 6px 18px rgba(9, 14, 48, 0.3);
  transform: scale(1.08);
}

.flow-arrow-container:hover .flow-arrow-node .divider-arrow {
  stroke: var(--accent-peach);
}

.platform-section-heading {
  margin-top: 58px;
  max-width: 880px;
}

.platform-execution-section {
  margin-top: 36px;
}

.platform-execution-heading {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.platform-section-heading .section-title {
  margin-top: 8px;
  margin-bottom: 10px;
}

.platform-section-heading > p {
  margin: 0;
  max-width: 68ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.product-window {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: #f8f9fd;
  box-shadow: 0 28px 58px rgba(8, 14, 48, 0.42);
}

.product-window-bar {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  color: #314078;
  background: linear-gradient(180deg, #ffffff, #edf0f8);
  border-bottom: 1px solid #d8ddea;
}

.product-window-bar span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #cad0df;
}

.product-window-bar span:first-child {
  background: var(--accent-peach);
}

.product-window-bar span:nth-child(2) {
  background: var(--accent-gold);
}

.product-window-bar span:nth-child(3) {
  background: var(--accent-cyan);
}

.product-window-bar strong {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.product-window img,
.home-product-crop img {
  display: block;
  width: 100%;
}


.product-window figcaption {
  margin: 0;
  padding: 14px 20px 16px;
  color: #536087;
  background: #f8f9fd;
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-showcase-heading {
  margin-top: 76px;
}

.product-showcase {
  margin-top: 28px;
}

.product-main-shot {
  position: relative;
}

.product-main-shot::after {
  content: "";
  position: absolute;
  inset: 48px 0 auto;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
}

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

.product-detail-card {
  --card-accent: var(--accent-cyan);
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--card-accent);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(48, 67, 145, 0.94), rgba(35, 50, 116, 0.92));
  box-shadow: var(--shadow);
}

.product-detail-pathway {
  --card-accent: var(--accent-gold);
}

.product-detail-card .platform-card-label {
  margin-bottom: 16px;
}

.product-detail-card h3 {
  margin: 22px 0 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.product-detail-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.product-zoom {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: #f7f8fb;
  box-shadow: 0 14px 30px rgba(9, 14, 48, 0.3);
  cursor: crosshair;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-zoom:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 45px rgba(9, 14, 48, 0.45);
}

.product-zoom img {
  position: absolute;
  display: block;
  max-width: none;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

.product-zoom-context img {
  width: 228%;
  left: -1%;
  top: -34%;
}

.product-zoom-pathway img {
  width: 190%;
  left: -39%;
  top: -42%;
}

/* Magnifier Zoom Styles */
.magnifier-container {
  position: relative;
  overflow: hidden;
  cursor: none; /* Hide default cursor so the lens is the cursor */
}

.magnifier-lens {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 
    inset 0 0 24px rgba(0, 0, 0, 0.25),
    0 0 0 6px rgba(255, 255, 255, 0.15),
    0 16px 40px rgba(5, 8, 32, 0.55);
  background-repeat: no-repeat;
  pointer-events: none; /* Let pointer events pass through to container */
  opacity: 0;
  transform: scale(0.7);
  transition: 
    opacity 0.22s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.22s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}

.magnifier-container:hover .magnifier-lens {
  opacity: 1;
  transform: scale(1);
}


.home-product-preview {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(480px 280px at 5% 10%, rgba(116, 208, 220, 0.16), transparent 72%),
    linear-gradient(145deg, rgba(43, 61, 139, 0.96), rgba(27, 40, 104, 0.94));
  box-shadow: 0 28px 58px rgba(8, 14, 48, 0.34);
}

.home-product-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.05;
}

.home-product-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent-gold);
  font-weight: 750;
  text-decoration: none;
}

.product-text-link span {
  transition: transform 0.2s ease;
}

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

.home-product-window {
  transform: rotate(0.5deg);
}

.home-product-crop {
  position: relative;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #f7f8fb;
}

.home-product-crop img {
  position: absolute;
  width: 121%;
  max-width: none;
  left: -10%;
  top: -7%;
}

.platform-trust-grid {
  position: relative;
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.platform-trust-card {
  --card-accent: var(--flow-accent);
}

.platform-card-label,
.platform-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 11px;
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--accent-gold)) 58%, transparent);
  border-radius: 999px;
  color: var(--card-accent, var(--accent-gold));
  background: rgba(12, 20, 70, 0.34);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-scale-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.2;
}

.platform-scale-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.trust-control {
  --card-accent: var(--accent-peach);
}

.trust-workflow {
  --card-accent: var(--accent-gold);
}

.trust-audit {
  --card-accent: #9daeff;
}

.platform-enables-heading {
  margin-top: 76px;
}

.platform-enables-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 46px);
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(116, 208, 220, 0.14), transparent 70%),
    radial-gradient(420px 220px at 0% 100%, rgba(239, 176, 184, 0.13), transparent 72%),
    linear-gradient(145deg, rgba(48, 67, 145, 0.82), rgba(31, 45, 112, 0.76));
  box-shadow: var(--shadow);
}

.platform-enables-card::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(116, 208, 220, 0.24);
  border-radius: 50%;
}

.platform-enables-card::after {
  content: none;
}

.platform-enables-summary {
  position: relative;
  z-index: 1;
  align-self: start;
  padding-right: clamp(0px, 2vw, 22px);
}

.platform-enables-summary span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(214, 182, 74, 0.48);
  border-radius: 999px;
  color: var(--accent-gold);
  background: rgba(214, 182, 74, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-enables-summary p {
  margin: 0;
  color: #eef3ff;
  font: 700 clamp(1.25rem, 2.4vw, 1.9rem)/1.18 "Bahnschrift", "Segoe UI Semibold", sans-serif;
  max-width: 13ch;
}

.platform-enables-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

.platform-enable-item {
  --enable-accent: var(--accent-cyan);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.platform-enable-item:first-child {
  padding-top: 0;
}

.platform-enable-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.enable-pathways {
  --enable-accent: var(--accent-cyan);
}

.enable-guidance {
  --enable-accent: var(--accent-peach);
}

.enable-quality {
  --enable-accent: var(--accent-gold);
}

.enable-expansion {
  --enable-accent: #9daeff;
}

.enable-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--enable-accent) 64%, transparent);
  border-radius: 50%;
  color: var(--enable-accent);
  background: color-mix(in srgb, var(--enable-accent) 9%, rgba(10, 19, 65, 0.28));
  font: 800 0.86rem/1 "Bahnschrift", "Segoe UI Semibold", sans-serif;
  box-shadow: 0 10px 22px rgba(12, 17, 52, 0.22);
}

.enable-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--enable-accent) 52%, transparent);
  border-radius: 999px;
  color: var(--enable-accent);
  background: color-mix(in srgb, var(--enable-accent) 8%, rgba(10, 19, 65, 0.2));
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-enable-item h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  line-height: 1.18;
}

.platform-enable-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.platform-scale-heading {
  margin-top: 72px;
}

.platform-scale-path {
  position: relative;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.platform-scale-path::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-peach), var(--accent-gold));
  opacity: 0.8;
}

.platform-scale-card {
  --card-accent: var(--accent-cyan);
  position: relative;
  min-height: 260px;
  padding: 74px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(49, 68, 146, 0.94), rgba(30, 44, 108, 0.92));
  box-shadow: var(--shadow);
}

.platform-scale-card:nth-child(2) {
  --card-accent: var(--accent-peach);
}

.platform-scale-card:nth-child(3) {
  --card-accent: var(--accent-gold);
}

.platform-scale-card::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  left: 28px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  color: #1d2867;
  background: var(--card-accent);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--card-accent) 70%, white), 0 8px 20px rgba(12, 17, 52, 0.3);
}

.platform-scale-card .platform-status {
  position: absolute;
  top: 18px;
  right: 22px;
  margin: 0;
  color: var(--card-accent);
  border-color: color-mix(in srgb, var(--card-accent) 58%, transparent);
}

.flow-arrow-split {
  height: 20px;
}

.flow-arrow-split::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 8px;
  border-left: 2px solid rgba(214, 182, 74, 0.72);
}

.flow-arrow-split::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 8px;
  border-top: 2px solid rgba(214, 182, 74, 0.72);
}

.flow-arrow-split span,
.flow-arrow-split i {
  display: none;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  color: #1c255f;
  background: var(--accent-gold);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 72px;
  padding: 34px 0 42px;
  color: #cfd7ff;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .home-flow-grid {
    gap: 18px;
    padding-left: 46px;
  }

  .home-flow-grid::before {
    top: 24px;
    bottom: 24px;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-peach), var(--accent-cyan), var(--accent-gold));
  }

  .home-flow-grid .flow-card {
    min-height: 0;
  }

  .home-flow-grid .flow-card .flow-step-node {
    position: absolute;
    top: 4px;
    left: -52px;
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
  }

  .contact-inquiry-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .contact-inquiry-card {
    min-height: 0;
  }

  .contact-inquiry-icon {
    margin-bottom: 28px;
  }

  .news-milestone-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-milestone-path {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 46px;
  }

  .news-milestone-path::before {
    top: 22px;
    bottom: 22px;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-peach), var(--accent-cyan), var(--accent-gold));
  }

  .news-milestone-card {
    min-height: 0;
    padding-top: 76px;
  }

  .news-milestone-card::before {
    left: -47px;
  }

  .team-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-strength-grid {
    grid-template-columns: 1fr;
  }

  .team-strength-card {
    min-height: 0;
  }

  .team-strength-icon {
    margin-bottom: 26px;
  }

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

  .team-method-path::before {
    display: none;
  }

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

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

  .platform-trust-grid,
  .platform-scale-path {
    grid-template-columns: 1fr;
  }

  .platform-enables-card {
    grid-template-columns: 1fr;
  }

  .platform-enables-card::before {
    display: none;
  }

  .platform-enables-summary p {
    max-width: 24ch;
  }

  .product-detail-grid,
  .home-product-preview {
    grid-template-columns: 1fr;
  }

  .home-product-preview {
    gap: 32px;
  }

  .platform-trust-grid::before {
    left: 20px;
    top: 5%;
    bottom: 5%;
  }

  .platform-trust-card {
    margin-left: 0;
  }

  .platform-enable-item {
    min-height: 0;
  }

  .platform-scale-path {
    gap: 18px;
    padding-left: 46px;
  }

  .platform-scale-path::before {
    top: 22px;
    bottom: 22px;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-peach), var(--accent-gold));
  }

  .platform-scale-card {
    min-height: 0;
    padding-top: 72px;
  }

  .platform-scale-card::before {
    left: -47px;
  }

  .before-after-comparison {
    grid-template-columns: 1fr;
  }

  .how-flow-sources,
  .how-flow-outcomes,
  .how-flow-core {
    grid-template-columns: 1fr;
  }

  .how-flow-core::before,
  .how-flow-core::after,
  .flow-arrow-container,
  .core-divider {
    display: none;
  }

  .comparison-divider {
    min-width: auto;
    width: 100%;
    padding: 12px 0;
    position: relative;
  }

  .comparison-divider::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    right: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
      rgba(255, 255, 255, 0.02) 0%, 
      rgba(255, 255, 255, 0.25) 30%, 
      rgba(255, 255, 255, 0.25) 70%, 
      rgba(255, 255, 255, 0.02) 100%
    );
  }

  .comparison-divider span {
    width: 36px;
    height: 64px;
    border-radius: 18px;
    flex-direction: column;
    padding: 8px 0;
  }

  .comparison-divider .divider-arrow {
    transform: rotate(90deg);
  }



  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    gap: 4px;
  }

  .nav-links a {
    padding: 7px 8px;
    font-size: 0.88rem;
  }

  .hero-home,
  .hero-secondary {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 34px;
  }

  .hero-secondary-visual {
    width: auto;
    height: 260px;
  }

  .hero-media {
    width: min(100%, 300px);
  }

  .story-heading,
  .practice-layout {
    grid-template-columns: 1fr;
  }

  .story-heading {
    gap: 16px;
  }

  .practice-visual {
    min-height: 430px;
  }

  .challenge-path {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 36px;
  }

  .challenge-path::before {
    top: 12px;
    bottom: 24px;
    left: 7px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-peach), var(--accent-cyan), var(--accent-gold));
  }

  .challenge-step {
    padding: 0 0 38px;
    text-align: left;
  }

  .challenge-index {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 2.4rem;
    transform: none;
  }

  .challenge-step h3,
  .challenge-step p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .challenge-marker {
    top: 7px;
    left: -29px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .contact-inquiries {
    margin-top: 36px;
  }

  .contact-inquiry-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .contact-inquiry-card {
    padding: 22px;
  }

  .news-milestones {
    margin-top: 54px;
  }

  .news-milestone-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .news-milestone-path {
    padding-left: 38px;
  }

  .news-milestone-path::before {
    left: 15px;
  }

  .news-milestone-card {
    padding: 72px 21px 23px;
  }

  .news-milestone-card::before {
    left: -39px;
  }

  .team-capabilities,
  .team-method {
    margin-top: 52px;
  }

  .team-section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .team-strength-card {
    padding: 22px;
  }

  .team-method {
    padding: 26px 18px;
  }

  .home-stakeholders-grid + .team-method {
    margin-top: 36px;
  }

  .team-method-path {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 34px;
  }

  .team-method-path::before {
    display: block;
    top: 20px;
    bottom: 20px;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-peach), var(--accent-gold));
  }

  .platform-section-heading {
    margin-top: 46px;
  }

  .platform-section-heading .section-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .product-showcase-heading {
    margin-top: 56px;
  }

  .product-window-bar strong {
    position: static;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: none;
  }

  .product-window figcaption {
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-detail-card {
    padding: 18px;
  }

  .product-zoom-context img {
    width: 245%;
  }

  .home-product-preview {
    margin-top: 36px;
    padding: 24px 18px;
  }

  .home-product-window {
    transform: none;
  }

  .platform-trust-card,
  .platform-scale-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .platform-trust-grid::before {
    left: 14px;
  }

  .platform-trust-card::after {
    font-size: 5.8rem;
  }

  .platform-scale-path {
    padding-left: 38px;
  }

  .platform-scale-path::before {
    left: 15px;
  }

  .platform-scale-card::before {
    left: -39px;
  }

  .platform-scale-card .platform-status {
    right: 16px;
  }

  .news-blog-card {
    min-height: 640px;
    padding: 22px;
  }

  .linkedin-embed-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .linkedin-embed-card {
    padding: 6px;
    border-radius: 16px;
  }

  .linkedin-embed-card iframe {
    width: calc(92vw - 12px);
  }

  .team-members-grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .team-members-grid .member-photo {
    width: min(78%, 320px);
    margin: 0 auto;
  }

  .practice-visual {
    min-height: 360px;
  }

  .orbit-label-context {
    right: 2%;
  }

  .practice-core {
    width: 132px;
  }

  .practice-points {
    padding: 22px;
  }

  .practice-point {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .manifesto {
    padding: 34px 24px;
  }

  .manifesto-hero {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .manifesto h2 {
    max-width: 11.5ch;
    font-size: clamp(1.75rem, 7.2vw, 2.2rem);
    letter-spacing: -0.02em;
  }

  .manifesto-intro {
    max-width: 32ch;
    font-size: 1rem;
  }

  .manifesto-pillars span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .manifesto-hero + .practice-story {
    margin-top: 36px;
  }

  .hero-home,
  .hero-secondary {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-secondary-visual {
    width: auto;
    max-width: 92vw;
    height: min(68vw, 270px);
    justify-self: center;
  }

  .hero-media {
    width: min(76vw, 300px);
    justify-self: center;
  }
}
