:root {
  color-scheme: light;
  --ink: #102233;
  --muted: #5d6b78;
  --line: #dbe5ed;
  --soft: #f5f8fb;
  --panel: #ffffff;
  --blue: #0b8ed0;
  --deep: #083856;
  --teal: #00a8b8;
  --green: #3c9d70;
  --violet: #6852b8;
  --shadow: 0 18px 60px rgba(10, 38, 60, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--deep);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 237, 0.8);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 8px 26px rgba(16, 34, 51, 0.08);
}

.brand img {
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #31485c;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--soft);
}

.language-switcher button,
.language-switcher a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button[aria-current="page"],
.language-switcher a[aria-current="page"] {
  color: #ffffff;
  background: var(--deep);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: center;
  min-height: calc(90vh - 82px);
  padding-top: clamp(84px, 9vw, 132px);
  padding-bottom: clamp(84px, 9vw, 132px);
  background:
    linear-gradient(135deg, rgba(0, 139, 208, 0.07), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, rgba(209, 209, 209, 0.16) 100%);
}

.hero .hero-copy {
  max-width: 720px;
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: #008bd0;
}

.hero h1 {
  max-width: 680px;
  color: #000000;
  font-size: clamp(3.55rem, 6vw, 6.25rem);
  line-height: 0.96;
}

.page-hero {
  display: grid;
  align-items: center;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(11, 142, 208, 0.1), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.page-hero .hero-copy {
  max-width: 980px;
}

.breadcrumb {
  padding: 18px clamp(20px, 5vw, 72px) 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #8a9baa;
}

.breadcrumb a {
  color: var(--deep);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.hero-text,
.intro p,
.feature-copy p,
.split p,
.about p,
.contact p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
}

.hero .hero-text {
  max-width: 520px;
  margin-top: 34px;
  color: #868789;
  font-size: clamp(1.08rem, 1.2vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 50px;
}

.hero .button {
  min-height: 58px;
  padding: 0 28px;
  border-color: #008bd0;
  background: #008bd0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero .button:hover {
  background: #008bd0;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.hero .button.ghost {
  color: #000000;
  background: #ffffff;
  border-color: #d1d1d1;
  box-shadow: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(11, 142, 208, 0.2);
}

.button:hover {
  background: #0779b2;
}

.button.ghost {
  color: var(--deep);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 850;
}

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

.architecture-panel,
.risk-board,
.outcomes,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.architecture-panel {
  min-height: clamp(460px, 62vh, 660px);
  overflow: hidden;
  border-color: rgba(0, 139, 208, 0.15);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.clarity-visual {
  position: relative;
  min-height: inherit;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 42%, rgba(0, 139, 208, 0.14), transparent 24%),
    linear-gradient(135deg, #ffffff, rgba(209, 209, 209, 0.24));
}

.complexity-mark,
.clarity-plane,
.clarity-path,
.focus-point {
  position: absolute;
  display: block;
}

.complexity-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(134, 135, 137, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.complexity-mark:nth-child(1) {
  left: 14%;
  top: 18%;
  transform: rotate(-18deg);
}

.complexity-mark:nth-child(2) {
  left: 25%;
  top: 34%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

.complexity-mark:nth-child(3) {
  left: 12%;
  bottom: 27%;
  width: 46px;
  transform: rotate(11deg);
}

.complexity-mark:nth-child(4) {
  left: 32%;
  bottom: 16%;
  height: 46px;
  transform: rotate(-7deg);
}

.complexity-mark:nth-child(5) {
  left: 39%;
  top: 20%;
  width: 12px;
  height: 12px;
  border-color: rgba(0, 139, 208, 0.48);
  border-radius: 999px;
}

.complexity-mark:nth-child(6) {
  left: 20%;
  top: 61%;
  width: 24px;
  height: 24px;
  transform: rotate(26deg);
}

.clarity-path {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(134, 135, 137, 0), rgba(0, 139, 208, 0.34), rgba(134, 135, 137, 0));
}

.clarity-path:nth-child(7) {
  left: 25%;
  top: 30%;
  width: 58%;
  transform: rotate(12deg);
}

.clarity-path:nth-child(8) {
  left: 22%;
  top: 54%;
  width: 62%;
  transform: rotate(-5deg);
}

.clarity-path:nth-child(9) {
  left: 27%;
  top: 72%;
  width: 54%;
  transform: rotate(-18deg);
}

.clarity-plane {
  right: 12%;
  width: 42%;
  height: 22%;
  border: 1px solid rgba(0, 139, 208, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.clarity-plane:nth-child(10) {
  top: 22%;
}

.clarity-plane:nth-child(11) {
  top: 42%;
  right: 16%;
  border-color: rgba(0, 139, 208, 0.28);
  background: rgba(255, 255, 255, 0.88);
}

.clarity-plane:nth-child(12) {
  top: 62%;
}

.focus-point {
  right: 34%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #008bd0;
  box-shadow: 0 0 0 12px rgba(0, 139, 208, 0.12);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #ffffff;
  color: #334c61;
  font-weight: 800;
  text-align: center;
}

.intro,
.about,
.split,
.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card,
.industry-card,
.insight-card,
.content-card,
.article-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card p,
.industry-card p,
.insight-card p,
.content-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.content-section:nth-of-type(even),
.legal-list,
.cta-section {
  background: var(--soft);
}

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

.content-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.content-card h3,
.article-card h3 {
  color: var(--deep);
}

.framework-section,
.deliverables-section,
.stories-section {
  background: var(--soft);
}

.framework-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.framework-step {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  background: #ffffff;
}

.framework-step > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--deep);
  font-weight: 900;
}

.framework-step dl,
.product-card dl,
.story-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.framework-step dt,
.product-card dt,
.story-card dt {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.framework-step dd,
.product-card dd,
.story-card dd {
  margin: 3px 0 0;
  color: var(--muted);
}

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

.product-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.deliverable-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deliverable-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(11, 142, 208, 0.28);
  border-radius: 999px;
  color: var(--deep);
  background: #ffffff;
  font-weight: 800;
}

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

.story-card,
.resource-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.resource-card span,
.resource-card small {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card small {
  color: var(--muted);
}

.resource-cover {
  display: grid;
  align-items: end;
  min-height: 136px;
  padding: 16px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 56, 86, 0.92), rgba(11, 142, 208, 0.74)),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.resource-cover strong {
  max-width: 12ch;
  font-size: 1.45rem;
  line-height: 1.02;
}

.framework-catalog-section {
  background: #ffffff;
}

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

.framework-catalog-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mini-framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mini-framework span {
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.mini-framework span:nth-child(2) {
  background: var(--teal);
}

.mini-framework span:nth-child(3) {
  background: var(--green);
}

.mini-framework span:nth-child(4) {
  background: var(--deep);
}

.framework-catalog-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.framework-catalog-card dt {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.framework-catalog-card dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.service-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  color: #375066;
}

.service-card li::before,
.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
}

.feature,
.split {
  background: var(--soft);
}

.risk-board {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.risk-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.risk-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--deep);
  background: #eaf5fb;
  font-weight: 850;
}

.risk-card.active {
  border-color: rgba(11, 142, 208, 0.45);
  box-shadow: 0 12px 28px rgba(11, 142, 208, 0.12);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 12px;
}

.tag-cloud span,
.values span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #30485b;
  font-weight: 750;
}

.industry-grid,
.insight-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.industry-card strong,
.insight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

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

.article-card {
  display: grid;
  gap: 14px;
}

.article-meta,
.article-byline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.article-meta span:first-child {
  color: var(--blue);
}

.outcomes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.outcomes div {
  padding: 24px;
  background: #ffffff;
}

.outcomes strong,
.outcomes span {
  display: block;
}

.outcomes span {
  margin-top: 6px;
  color: var(--muted);
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(11, 142, 208, 0.08), transparent 46%),
    #ffffff;
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.legal h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.legal p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.legal-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.legal-list h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.legal-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.cta-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2f465a;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.turnstile-placeholder {
  padding: 12px 14px;
  border: 1px dashed rgba(11, 142, 208, 0.5);
  border-radius: 8px;
  color: var(--muted);
  background: #f7fbfe;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: block;
  width: 150px;
  height: 47px;
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-brand img {
  max-width: none;
  width: 258px;
  height: auto;
  transform: translate(-54px, -157px);
}

.footer p {
  margin: 0 0 6px;
  text-align: right;
}

.footer p:last-child {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer a {
  color: var(--deep);
  font-weight: 800;
}

.footer-copy {
  display: none;
}

/* RC1.4 homepage visual system */
.site-header {
  min-height: 66px;
  padding: 6px clamp(30px, 3.8vw, 54px);
  gap: 28px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(209, 209, 209, 0.5);
}

.brand {
  display: block;
  width: 200px;
  height: 54px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  max-width: none;
  width: 343px;
  height: auto;
  transform: translate(-71px, -208px);
}

.nav {
  gap: clamp(20px, 1.9vw, 30px);
  color: #000000;
  font-size: 0.81rem;
  font-weight: 430;
}

.nav a {
  white-space: nowrap;
  opacity: 0.72;
  transition: color 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.nav a:hover {
  color: #008bd0;
  border-color: transparent;
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  gap: 16px;
}

.language-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
}

.language-switcher::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 1.5px solid #000000;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 46%, #000000 47%, #000000 53%, transparent 54%),
    linear-gradient(transparent 46%, #000000 47%, #000000 53%, transparent 54%);
  opacity: 0.58;
}

.language-switcher a {
  width: auto;
  min-width: 24px;
  height: 28px;
  padding: 0 3px;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.34;
  transition: opacity 220ms ease, color 220ms ease;
}

.language-switcher a[aria-current="page"] {
  color: #000000;
  background: transparent;
  opacity: 0.78;
}

.site-header .button.small {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 22px;
  border-color: #008bd0;
  border-radius: 5px;
  background: #008bd0;
  font-size: 0.79rem;
  font-weight: 660;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 139, 208, 0.2);
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.site-header .button.small:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 139, 208, 0.25);
}

.site-header .button.small::after,
.hero .button::after,
.home-insights .button::after {
  content: "→";
  margin-left: 12px;
}

.home-insights .button span {
  display: none;
}

.home-service-card .text-link span {
  margin-left: 12px;
}

body[data-page="home"] {
  color: #000000;
  background: #ffffff;
}

body[data-page="home"] .section {
  padding-left: clamp(42px, 5.2vw, 78px);
  padding-right: clamp(42px, 5.2vw, 78px);
}

body[data-page="home"] .hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(34px, 3.5vw, 54px);
  min-height: 760px;
  padding: 126px clamp(52px, 5.2vw, 78px) 100px;
  background:
    radial-gradient(circle at 86% 30%, rgba(0, 139, 208, 0.17), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, rgba(209, 209, 209, 0.12) 100%);
}

body[data-page="home"] .hero .hero-copy {
  max-width: 650px;
}

body[data-page="home"] .hero .eyebrow {
  margin-bottom: 28px;
  color: #008bd0;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.045em;
}

body[data-page="home"] .hero h1 {
  max-width: 610px;
  color: #000000;
  font-size: clamp(4rem, 5.4vw, 5.7rem);
  line-height: 1.06;
  font-weight: 800;
}

body[data-page="home"] .hero h1 span {
  color: #008bd0;
}

body[data-page="home"] .hero .hero-text {
  max-width: 500px;
  margin-top: 42px;
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.72;
}

body[data-page="home"] .hero-actions {
  gap: 30px;
  margin-top: 46px;
}

body[data-page="home"] .hero .button {
  min-height: 48px;
  padding: 0 30px;
  border-radius: 5px;
  border-color: #008bd0;
  background: #008bd0;
  font-size: 0.9rem;
  font-weight: 740;
  box-shadow: 0 12px 30px rgba(0, 139, 208, 0.2);
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

body[data-page="home"] .hero .button:hover {
  transform: translateY(-2px);
}

body[data-page="home"] .hero .button.ghost {
  padding-left: 5px;
  padding-right: 0;
  color: #000000;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .architecture-panel {
  min-height: 530px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .clarity-visual {
  min-height: inherit;
  overflow: visible;
  background:
    radial-gradient(circle at 76% 48%, rgba(0, 139, 208, 0.2), transparent 29%),
    radial-gradient(circle at 45% 50%, rgba(209, 209, 209, 0.46), transparent 18%);
}

body[data-page="home"] .complexity-mark {
  width: 4px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #008bd0;
  box-shadow:
    12px -18px 0 rgba(0, 139, 208, 0.72),
    25px 8px 0 rgba(0, 139, 208, 0.44),
    -16px 12px 0 rgba(0, 139, 208, 0.56),
    38px -4px 0 rgba(0, 139, 208, 0.38),
    -24px -20px 0 rgba(0, 139, 208, 0.36),
    18px 26px 0 rgba(0, 139, 208, 0.5);
}

body[data-page="home"] .complexity-mark:nth-child(1) { left: 24%; top: 39%; }
body[data-page="home"] .complexity-mark:nth-child(2) { left: 27%; top: 46%; }
body[data-page="home"] .complexity-mark:nth-child(3) { left: 31%; top: 52%; }
body[data-page="home"] .complexity-mark:nth-child(4) { left: 29%; top: 58%; }
body[data-page="home"] .complexity-mark:nth-child(5) { left: 35%; top: 44%; }
body[data-page="home"] .complexity-mark:nth-child(6) { left: 37%; top: 55%; }

body[data-page="home"] .clarity-path {
  left: 35%;
  top: 50%;
  width: 68%;
  height: 2px;
  transform: none;
  background: linear-gradient(90deg, rgba(0, 139, 208, 0), #ffffff 35%, rgba(0, 139, 208, 0.48) 70%, rgba(0, 139, 208, 0));
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 24px rgba(0, 139, 208, 0.24));
}

body[data-page="home"] .clarity-path:nth-child(8),
body[data-page="home"] .clarity-path:nth-child(9) {
  top: 50%;
  opacity: 0.18;
}

body[data-page="home"] .clarity-plane {
  top: 16%;
  right: 1%;
  width: 35%;
  height: 70%;
  border: 1.5px solid rgba(0, 139, 208, 0.52);
  border-left-color: rgba(0, 139, 208, 0.18);
  border-radius: 0;
  transform: skewY(-26deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(0, 139, 208, 0.12));
  box-shadow: none;
  backdrop-filter: blur(8px);
}

body[data-page="home"] .clarity-plane:nth-child(10) {
  right: 27%;
  width: 24%;
  opacity: 0.28;
}

body[data-page="home"] .clarity-plane:nth-child(11) {
  right: 17%;
  width: 15%;
  opacity: 0.42;
}

body[data-page="home"] .clarity-plane:nth-child(12) {
  right: 0;
  opacity: 0.9;
}

body[data-page="home"] .focus-point {
  right: 1.5%;
  top: 49%;
  width: 7px;
  height: 7px;
  background: #ffffff;
  box-shadow: 0 0 18px #ffffff, 0 0 38px rgba(0, 139, 208, 0.42);
}

.home-trust {
  padding: 46px clamp(42px, 5.2vw, 78px) 54px;
  border-top: 1px solid rgba(209, 209, 209, 0.6);
  border-bottom: 1px solid rgba(209, 209, 209, 0.65);
  background: #ffffff;
}

.home-trust p,
.home-services > .eyebrow {
  margin: 0 0 34px;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.home-industry-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.home-industry-strip span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-left: 1px solid rgba(209, 209, 209, 0.52);
  color: #5d6b78;
  font-size: 0.9rem;
  font-weight: 520;
  line-height: 1.35;
  text-align: center;
}

.home-industry-strip span:first-child {
  border-left: 0;
}

.home-why {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
  gap: clamp(58px, 7vw, 112px);
  padding: 86px clamp(52px, 5.2vw, 78px) 96px;
}

.home-why-heading h2 {
  max-width: 440px;
  font-size: clamp(2.2rem, 3.1vw, 3.35rem);
  line-height: 1.08;
}

.home-why-heading h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 27px;
  background: #008bd0;
}

.home-proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.home-proof-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 118px;
  padding: 12px 42px;
}

.home-proof-points article + article {
  border-left: 1px solid rgba(209, 209, 209, 0.85);
}

.home-proof-points h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.home-proof-points p {
  max-width: 310px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.72;
}

.home-services {
  padding: 8px clamp(52px, 5.2vw, 78px) 96px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.home-service-card {
  display: grid;
  min-height: 330px;
  padding: 40px 30px 30px;
  border: 1px solid rgba(209, 209, 209, 0.58);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.026), 0 26px 64px rgba(0, 139, 208, 0.025);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.home-service-card:hover {
  border-color: rgba(0, 139, 208, 0.34);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.04), 0 34px 72px rgba(0, 139, 208, 0.07);
  transform: translateY(-4px);
}

.home-service-card h3 {
  margin-top: 30px;
  color: #000000;
  font-size: 1.42rem;
  line-height: 1.22;
}

.home-service-card p {
  margin: 20px 0 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.72;
}

.home-service-card .text-link {
  align-self: end;
  color: #008bd0;
  font-size: 0.9rem;
  font-weight: 680;
  transition: color 220ms ease, transform 220ms ease;
}

.home-service-card .text-link:hover {
  transform: translateX(2px);
}

.home-service-card > .home-icon {
  margin-left: 2px;
  opacity: 0.9;
}

.home-icon,
.home-stat-icon {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  color: #008bd0;
}

.home-icon-shield {
  border: 1.8px solid currentColor;
  border-radius: 10px 10px 14px 14px;
  clip-path: polygon(50% 0, 90% 14%, 84% 70%, 50% 100%, 16% 70%, 10% 14%);
}

.home-icon-cloud::before {
  content: "";
  position: absolute;
  inset: 10px 2px 7px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
  border-top-color: transparent;
}

.home-icon-brain::before {
  content: "";
  position: absolute;
  inset: 4px 7px;
  border: 1.8px solid currentColor;
  border-radius: 45% 55% 48% 52%;
  box-shadow: inset 8px 0 0 -6px currentColor;
}

.home-icon-user::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
}

.home-icon-user::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 4px;
  width: 22px;
  height: 13px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.home-icon-target {
  border: 1.8px solid currentColor;
  border-radius: 999px;
}

.home-icon-target::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
}

.home-insights {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(44px, 6vw, 90px);
  overflow: hidden;
  padding: 92px clamp(52px, 5.2vw, 78px) 94px;
  color: #ffffff;
  background: linear-gradient(112deg, #000000 0%, #001526 42%, #002b4a 78%, #008bd0 150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 139, 208, 0.18);
}

.home-insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 36%, rgba(0, 139, 208, 0.08) 65%, rgba(255, 255, 255, 0.035) 100%);
  pointer-events: none;
}

.home-insights::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 12%;
  width: 66%;
  height: 70%;
  border-top: 1px solid rgba(0, 139, 208, 0.38);
  border-radius: 50%;
  transform: rotate(-12deg);
  opacity: 0.82;
}

.home-insight-copy {
  position: relative;
  z-index: 1;
}

.home-insight-copy .eyebrow {
  color: #008bd0;
}

.home-insight-copy h2 {
  max-width: 430px;
  color: #ffffff;
  font-size: clamp(2.15rem, 3.2vw, 3.3rem);
  line-height: 1.12;
}

.home-insight-copy p {
  max-width: 350px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.68;
}

.home-insight-copy .button.ghost {
  min-height: 48px;
  margin-top: 32px;
  padding: 0 28px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.home-insight-copy .button.ghost:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.home-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.home-stats article {
  min-height: 232px;
  padding: 28px 54px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.home-stats strong {
  display: block;
  margin-top: 22px;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.home-stats p {
  max-width: 180px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.52;
}

.home-stats .home-stat-statement {
  max-width: 230px;
  margin-top: 22px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.24;
}

.home-stat-icon {
  width: 44px;
  height: 44px;
  color: #ffffff;
}

.home-stat-people::before,
.home-stat-building::before,
.home-stat-globe::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.home-stat-building::before {
  border-radius: 3px;
}

.home-stat-building::after {
  content: "";
  position: absolute;
  inset: 13px 18px 8px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.home-stat-globe::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 6px;
  width: 2px;
  height: 32px;
  background: currentColor;
}

body[data-page="home"] .footer {
  align-items: center;
  padding: 48px clamp(52px, 5.2vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  background: #000000;
}

body[data-page="home"] .footer-brand img {
  width: 150px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body[data-page="home"] .footer-brand img {
  max-width: none;
  width: 258px;
  height: auto;
  transform: translate(-54px, -157px);
}

body[data-page="home"] .footer > div {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 9vw, 170px);
  width: 100%;
}

body[data-page="home"] .footer p {
  margin: 0;
  text-align: left;
}

body[data-page="home"] .footer p:last-child {
  display: flex;
  gap: 34px;
  justify-content: flex-end;
  white-space: nowrap;
}

body[data-page="home"] .footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

body[data-page="home"] .footer-copy {
  display: inline;
}

@media (max-width: 1500px) {
  .site-header {
    gap: 16px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav {
    gap: clamp(10px, 0.9vw, 15px);
  }

  .header-actions {
    gap: 12px;
  }
}

@media (max-width: 1350px) {
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: grid;
  }

  .menu-button {
    display: block;
  }

  body[data-page="home"] .footer > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="home"] .footer p:last-child {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .cards-grid,
  .industry-grid,
  .insight-grid,
  .content-grid,
  .article-grid,
  .product-grid,
  .story-grid,
  .resource-grid,
  .framework-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-timeline {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: grid;
  }

  .menu-button {
    display: block;
  }

  body[data-page="home"] .hero,
  .home-why,
  .home-insights {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .architecture-panel {
    min-height: 430px;
  }

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

  .home-industry-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 22px;
  }

  .home-industry-strip span:nth-child(4) {
    border-left: 0;
  }

  .home-stats {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    padding: 8px 18px;
  }

  .brand img {
    width: 281px;
    transform: translate(-59px, -170px);
  }

  .brand {
    width: 163px;
    height: 48px;
  }

  .button.small {
    display: none;
  }

  .hero,
  .intro,
  .about,
  .split,
  .feature,
  .contact,
  .legal {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .architecture-panel {
    min-height: clamp(320px, 52vh, 430px);
  }

  body[data-page="home"] .hero {
    padding-top: 76px;
    padding-bottom: 64px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(3.05rem, 12vw, 4.4rem);
  }

  body[data-page="home"] .hero .hero-text {
    font-size: 1.02rem;
  }

  body[data-page="home"] .architecture-panel {
    min-height: 350px;
  }

  body[data-page="home"] .clarity-visual {
    overflow: hidden;
  }

  body[data-page="home"] .clarity-plane {
    right: 6%;
    width: 36%;
    height: 62%;
  }

  body[data-page="home"] .clarity-plane:nth-child(10) {
    right: 33%;
  }

  body[data-page="home"] .clarity-plane:nth-child(11) {
    right: 22%;
  }

  .home-proof-points,
  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-proof-points article,
  .home-proof-points article + article,
  .home-stats article {
    border-left: 0;
    border-right: 0;
  }

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

  body[data-page="home"] .footer,
  body[data-page="home"] .footer > div {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .footer {
    display: grid;
  }

  body[data-page="home"] .footer p:last-child {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .footer p {
    text-align: left;
  }

  .legal-list article,
  .cta-section {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.1rem);
  }

  .cards-grid,
  .industry-grid,
  .insight-grid,
  .content-grid,
  .article-grid,
  .product-grid,
  .story-grid,
  .resource-grid,
  .framework-catalog-grid {
    grid-template-columns: 1fr;
  }

  .language-switcher button,
  .language-switcher a {
    width: 34px;
  }

  .language-switcher a {
    width: auto;
    min-width: 22px;
  }

  body[data-page="home"] .section,
  body[data-page="home"] .hero,
  .home-trust,
  .home-why,
  .home-services,
  .home-insights,
  body[data-page="home"] .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  body[data-page="home"] .hero-actions {
    gap: 14px;
  }

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

  .home-industry-strip span:nth-child(odd) {
    border-left: 0;
  }

  .home-industry-strip span:nth-child(4) {
    border-left: 1px solid rgba(209, 209, 209, 0.7);
  }

}

@media (prefers-reduced-motion: reduce) {
  .nav a,
  .language-switcher a,
  .site-header .button.small,
  body[data-page="home"] .hero .button,
  .home-service-card,
  .home-service-card .text-link,
  .home-insight-copy .button.ghost {
    transition-duration: 0.01ms;
  }

  .site-header .button.small:hover,
  body[data-page="home"] .hero .button:hover,
  .home-service-card:hover,
  .home-service-card .text-link:hover,
  .home-insight-copy .button.ghost:hover {
    transform: none;
  }
}
