@charset "UTF-8";

@font-face {
  font-family: Manrope;
  src: url('/assets/brand/Manrope-Regular.woff') format('woff');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('/assets/brand/Manrope-SemiBold.woff') format('woff');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('/assets/brand/Manrope-Bold.woff') format('woff');
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  --ink: #262b30;
  --dark: #20252a;
  --dark-2: #171b1f;
  --muted: #5c646b;
  --accent: #f46a24;
  --accent-soft: #ff8b51;
  --orange-ink: #a83b08;
  --paper: #ffffff;
  --soft: #f3f4f5;
  --soft-2: #e8eaec;
  --line: #d8dde0;
  --line-dark: #434a50;
  --shadow: 0 24px 70px rgb(21 27 32 / 12%);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 164px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
a { touch-action: manipulation; }
button { cursor: pointer; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.055em;
  text-wrap: balance;
}

h1 { font-size: clamp(3.15rem, 6.7vw, 6.6rem); }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.65rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p { max-width: 67ch; }
figure { margin: 0; }

em {
  color: var(--accent);
  font-style: normal;
}

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

.wrap {
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.soft { background: var(--soft); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.lead { font-size: 1.16rem; line-height: 1.8; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 7px;
  flex: 0 0 25px;
  background: var(--accent);
  content: "";
  transform: skewX(-35deg);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 20px;
  padding: 14px 20px;
  color: var(--ink);
  background: #fff;
}

.skip-link:focus { top: 10px; }

.social-topbar {
  background: var(--dark-2);
  border-bottom-color: #ffffff1f;
}

.social-topbar > .wrap { min-height: 42px; }
.social-topbar .social-tagline { color: #d9dee2; letter-spacing: .07em; }

.header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(18px);
}

.nav-row {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-full {
  width: 188px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 14px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a[href="/soluciones-360/"],
.nav-links a[href="/civ-productivity/"] { color: var(--orange-ink); }

.header-cta,
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.header-cta {
  min-height: 46px;
  padding: 11px 16px;
  color: #fff;
  background: var(--dark);
}

.button {
  padding: 15px 23px;
  color: var(--ink);
  background: var(--accent);
}

.header-cta:hover,
.dark-button:hover { background: #3a4249; }

.button:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.button.secondary {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button.dark-button {
  color: #fff;
  background: var(--dark);
}

.menu-toggle,
.mobile-contact { display: none; }

.menu-toggle {
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: var(--ink);
  background: none;
  border: 1px solid var(--line);
}

.menu-icon {
  width: 17px;
  height: 11px;
  border-top: 2px solid;
  border-bottom: 2px solid;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: .92rem;
  font-weight: 600;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 54px;
}

.section-head h2 { max-width: 18ch; }
.section-head > p { max-width: 42ch; color: var(--muted); }

/* CIV Esencial hero */
.hero-essential {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--dark-2);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  animation: hero-scale 1.5s cubic-bezier(.2,.65,.2,1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(20 24 28 / 96%) 0%, rgb(24 29 33 / 88%) 38%, rgb(24 29 33 / 34%) 70%, rgb(24 29 33 / 12%) 100%),
    linear-gradient(0deg, rgb(20 24 28 / 60%) 0%, transparent 45%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 64px;
}

.hero-copy { max-width: 810px; min-width: 0; }

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 6.6vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.hero-copy .lead {
  max-width: 48ch;
  margin-top: 31px;
  color: #d7dce0;
}

.hero-copy .text-link:hover { color: #ffab82; }

.hero-signature {
  align-self: flex-end;
  margin-bottom: 38px;
  padding: 20px 0 20px 25px;
  border-left: 4px solid var(--accent);
  font-size: .88rem;
  line-height: 1.45;
  letter-spacing: .06em;
}

.hero-signature span,
.hero-signature strong { display: block; }
.hero-signature strong { font-size: 1.28rem; letter-spacing: -.025em; }
.hero-source { display: block; max-width: 33ch; margin-top: 18px; color: #d7dce0; font-size: .75rem; letter-spacing: 0; text-decoration: underline; text-underline-offset: 3px; }

.hero-routes {
  position: relative;
  z-index: 3;
  border-top: 1px solid #ffffff30;
  background: rgb(23 27 31 / 84%);
  backdrop-filter: blur(12px);
}

.hero-routes .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-routes a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 16px;
  min-height: 100px;
  align-content: center;
  padding: 20px 28px;
  border-left: 1px solid #ffffff22;
  transition: background .2s ease;
}

.hero-routes a:last-child { border-right: 1px solid #ffffff22; }
.hero-routes a:hover { background: #ffffff0d; }
.hero-routes span { grid-row: 1 / span 2; color: var(--accent); font-size: .78rem; font-weight: 700; }
.hero-routes strong { font-size: .98rem; }
.hero-routes small { color: #bfc6cc; font-size: .78rem; }

@keyframes hero-scale {
  from { opacity: .65; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

/* Home decisions */
.decision-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), #eef0f1 50%, transparent calc(50% + .5px)),
    #fff;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.decision-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.decision-card:hover {
  z-index: 1;
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.decision-card--dark {
  color: #fff;
  background: var(--dark);
  --muted: #c2c9ce;
  --line: #454c52;
}

.decision-card .number { margin-bottom: 52px; }
.decision-card--dark .number { color: var(--accent); }
.decision-card h3 { max-width: 16ch; font-size: 1.85rem; }
.decision-card p { margin-top: 20px; color: var(--muted); }
.card-action { display: flex; width: 100%; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 35px; font-size: .88rem; font-weight: 700; }
.card-action b { color: var(--accent); font-size: 1.2rem; }

/* Integrated system */
.split-statement {
  color: #fff;
  background: var(--dark);
  --muted: #c3c9ce;
  --line: #454c52;
}

.split-statement .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.statement-copy h2 { max-width: 13ch; }
.statement-copy .lead { margin-top: 28px; color: var(--muted); }
.statement-copy .text-link { margin-top: 31px; }
.statement-copy .text-link:hover { color: #ffab82; }

.system-stack { border-top: 1px solid var(--line); }

.system-stack span {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-size: .78rem;
}

.system-stack strong { color: #fff; font-size: 1.25rem; letter-spacing: -.025em; }

.activity-section { background: var(--soft); }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.activity-card {
  min-height: 350px;
  padding: 34px;
  border-top: 5px solid var(--accent);
  background: #fff;
}

.activity-card .number { display: block; margin-bottom: 58px; }
.activity-card h3 { max-width: 16ch; }
.activity-card p { margin-top: 20px; color: var(--muted); }
.activity-card .text-link { margin-top: 28px; }

.productivity-band {
  padding: 108px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgb(244 106 36 / 20%), transparent 27%),
    var(--dark-2);
  --muted: #c5cbd0;
  --line: #42494f;
}

.productivity-layout {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 110px;
  align-items: center;
}

.program-brand {
  width: min(330px, 72%);
  height: auto;
  object-fit: contain;
}

.productivity-band .program-brand { margin-bottom: 22px; }
.productivity-band h2 { max-width: 14ch; }
.productivity-band h2 em { color: var(--accent); }
.productivity-band p:not(.eyebrow) { margin-top: 26px; color: var(--muted); }
.productivity-band .text-link:hover { color: #ffab82; }

.productivity-rail { border-top: 1px solid var(--line); }
.productivity-rail article { display: grid; grid-template-columns: 104px 1fr; gap: 22px; align-items: center; min-height: 112px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.productivity-rail span { color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .1em; }
.productivity-rail h3 { font-size: 1.28rem; letter-spacing: -.035em; }

/* Ecosystem */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ecosystem-grid article {
  min-height: 270px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-grid article.is-civ {
  color: #fff;
  background: var(--dark);
  --muted: #c1c8cd;
}

.ecosystem-grid span { color: var(--orange-ink); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ecosystem-grid .is-civ span { color: var(--accent); }
.ecosystem-grid h3 { margin-top: 52px; font-size: 1.62rem; }
.ecosystem-grid p { margin-top: 16px; color: var(--muted); font-size: .94rem; }
.ecosystem-grid a { display: inline-block; margin-top: 23px; border-bottom: 1px solid; font-size: .82rem; font-weight: 700; }

/* Interior heroes */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 94px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, transparent 0 72%, rgb(244 106 36 / 9%) 72% 77%, transparent 77%),
    var(--soft);
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid #cfd4d7;
  content: "";
  transform: rotate(35deg);
}

.page-hero .wrap { position: relative; z-index: 1; }
.breadcrumb { margin-bottom: 48px; color: var(--muted); font-size: .82rem; }
.breadcrumb a { text-decoration: underline; text-underline-offset: 4px; }
.page-hero h1 { max-width: 18ch; font-size: clamp(3.3rem, 6.5vw, 6.3rem); }
.page-hero .lead { max-width: 62ch; margin-top: 30px; color: var(--muted); }
.page-hero .actions { margin-top: 36px; }

.page-hero--signature,
.program-hero {
  color: #fff;
  background:
    radial-gradient(circle at 84% 24%, rgb(244 106 36 / 17%), transparent 22%),
    linear-gradient(135deg, #20252a, #171b1f);
  --muted: #c5cbd0;
  --line: #444b51;
}

.page-hero--signature::after,
.program-hero::after { border-color: #ffffff17; }
.page-hero--signature .breadcrumb,
.program-hero .breadcrumb,
.page-hero--signature .lead,
.program-hero .lead { color: var(--muted); }
.page-hero--signature .text-link:hover,
.program-hero .text-link:hover { color: #ffab82; }

.program-hero .program-brand {
  width: min(300px, 68%);
  margin: 10px 0 20px;
}

.program-hero h1 { max-width: 19ch; }
.program-status {
  display: inline-flex;
  margin-top: 27px;
  padding: 7px 11px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: .78rem;
  line-height: 1.5;
  opacity: .78;
}

/* Content grids */
.manifesto-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 105px;
  align-items: start;
}

.manifesto-grid h2 { max-width: 15ch; }
.manifesto-grid .lead { font-size: clamp(1.25rem, 2.1vw, 1.72rem); line-height: 1.6; }
.proof-line { display: grid; gap: 8px; margin-top: 42px; padding: 25px 0 0 28px; border-left: 4px solid var(--accent); }
.proof-line span { color: var(--muted); font-size: .83rem; text-transform: uppercase; letter-spacing: .1em; }
.proof-line strong { font-size: 1.25rem; }

.component-grid,
.architecture-grid,
.value-grid,
.level-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.component-grid { grid-template-columns: repeat(3, 1fr); }
.architecture-grid { grid-template-columns: repeat(5, 1fr); }
.value-grid,
.level-grid { grid-template-columns: repeat(4, 1fr); }

.component-grid article,
.architecture-grid article,
.value-grid article,
.level-grid article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.component-grid span,
.architecture-grid span,
.value-grid span,
.level-grid span {
  color: var(--orange-ink);
  font-size: .78rem;
  font-weight: 700;
}

.component-grid h3,
.architecture-grid h3,
.value-grid h3,
.level-grid h3 { margin-top: 45px; }

.component-grid p,
.architecture-grid p,
.value-grid p,
.level-grid p { margin-top: 16px; color: var(--muted); font-size: .93rem; }

.activities-detail { background: #fff; }
.solution-list { border-top: 1px solid var(--line); }

.solution-list > article {
  display: grid;
  grid-template-columns: 70px 1fr 190px;
  gap: 42px;
  align-items: start;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
}

.solution-index {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

.solution-sector {
  color: var(--orange-ink);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.solution-list h3 { max-width: 28ch; margin-top: 12px; font-size: 1.9rem; }
.solution-list p { margin-top: 17px; color: var(--muted); }
.solution-list > article > .text-link { align-self: center; justify-self: end; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.chip { display: inline-flex; align-items: center; padding: 7px 11px; border: 1px solid var(--line); font-size: .79rem; line-height: 1.45; }

.builder-section {
  color: #fff;
  background: var(--dark);
  --muted: #c4cbd0;
  --line: #454c52;
}

.guide-panel {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 90px;
  align-items: start;
}

.guide-panel h2 { max-width: 15ch; }
.guide-panel > div > p:last-child { margin-top: 25px; }

fieldset {
  padding: 0;
  border: 0;
  margin: 0 0 25px;
}

legend {
  margin-bottom: 11px;
  font-size: .92rem;
  font-weight: 600;
}

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

.segmented label {
  position: relative;
  min-width: 180px;
  flex: 1;
}

.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
}

.segmented span {
  display: block;
  padding: 13px 16px;
  border: 1px solid #929ca4;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
}

.segmented input:checked + span {
  border-color: var(--dark);
  color: #fff;
  background: var(--dark);
}

.segmented input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.form-grid .full { grid-column: 1 / -1; }

label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: .91rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid #929ca4;
  border-radius: 2px;
  color: var(--ink);
  background: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

textarea { resize: vertical; }

.guide-form > button,
.solution-builder > button,
.diagnostic-form > button,
.inquiry-form > button { margin: 3px 0 17px; }

.guide-result,
.solution-result,
.diagnostic-result {
  margin-top: 29px;
  padding: 28px;
  border-left: 5px solid var(--accent);
  color: var(--ink);
  background: #fff;
  --muted: #5c646b;
}

.guide-result h3,
.solution-result h3,
.diagnostic-result h3 { margin-bottom: 16px; }

.result-detail { margin-top: 15px; color: var(--muted); }

.process-section { background: var(--soft); }
.step-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { padding-top: 24px; border-top: 1px solid var(--line); }
.step .number { margin-bottom: 25px; }
.number { color: var(--orange-ink); font-size: .77rem; font-weight: 700; letter-spacing: .08em; }
.step h3 { font-size: 1.25rem; }
.step p:last-child { margin-top: 15px; color: var(--muted); font-size: .92rem; }

/* Formation and services */
.catalogue-section { border-top: 1px solid var(--line); }
.catalog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 32px; }
.catalog-toolbar label { width: min(100%, 450px); }
.catalog-count { padding-bottom: 14px; color: var(--muted); font-size: .85rem; }
.row-list { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 55px 1fr 1.18fr;
  gap: 36px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 130px;
}

.service-row h3 { max-width: 22ch; }
.service-row p { color: var(--muted); }
.service-row .text-link { margin-top: 17px; }
.empty-state { padding: 32px 0; }
.underlined { text-decoration: underline; text-underline-offset: 3px; }

.dark-section {
  color: #fff;
  background: var(--dark);
  --muted: #c4cbd0;
  --line: #454c52;
}

.dark-section .section-head > p,
.dark-section p { color: var(--muted); }
.dark-section .text-link:hover { color: #ffab82; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.split h2 { margin-bottom: 26px; }
.split p + p { margin-top: 18px; }
.split .text-link { margin-top: 27px; }

.image-frame {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--soft-2);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-credit {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  padding: 5px 8px;
  border-radius: 2px;
  color: #fff;
  background: rgb(31 36 41 / 88%);
  font-size: .7rem;
  line-height: 1.4;
}

.photo-credit:hover { text-decoration: underline; }

.note {
  margin-top: 27px;
  padding: 9px 0 9px 22px;
  border-left: 4px solid var(--accent);
  color: var(--muted);
  font-size: .92rem;
}

.jaway-section {
  padding: 105px 0;
  color: #fff;
  background:
    linear-gradient(120deg, transparent 0 62%, rgb(244 106 36 / 14%) 62% 67%, transparent 67%),
    var(--dark-2);
  --muted: #c6ccd1;
  --line: #42494f;
}

.jaway-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.jaway-word { display: inline-block; margin-bottom: 42px; font-size: 2rem; font-weight: 700; letter-spacing: -.06em; }
.jaway-layout h2 { max-width: 14ch; }
.jaway-layout p:not(.eyebrow) { margin-top: 26px; color: var(--muted); }
.signal-list { border-top: 1px solid var(--line); }
.signal-list article { display: grid; grid-template-columns: 45px 100px 1fr; gap: 19px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--line); }
.signal-list span { color: var(--accent); font-size: .77rem; font-weight: 700; }
.signal-list strong { font-size: 1.1rem; }
.signal-list p { margin: 0 !important; font-size: .92rem; }

/* Legacy-compatible shared blocks */
.grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px; }
.feature { padding-top: 27px; border-top: 1px solid var(--line); }
.feature .number { display: block; margin-bottom: 35px; }
.feature h3 { margin-bottom: 16px; }
.feature p { color: var(--muted); }
.feature .text-link { margin-top: 22px; }
.partner-row { display: grid; grid-template-columns: 48px .9fr 1.2fr; gap: 34px; padding: 32px 0; border-top: 1px solid var(--line); }
.partner-row p { color: var(--muted); }
.status-label { display: inline-flex; margin-bottom: 28px; padding: 7px 12px; border: 1px solid var(--line); font-size: .84rem; }
.faq { margin-top: 30px; }
.faq details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; line-height: 1.6; }
.faq p { padding-top: 15px; color: var(--muted); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 85px; }
.inquiry-form > h2 { margin-bottom: 20px; }
.inquiry-form > p.muted { margin-bottom: 26px; }
.contact-aside { padding-left: 42px; border-left: 1px solid var(--line); }
.contact-aside h3 { margin-bottom: 28px; }
.contact-options { display: grid; gap: 12px; }
.contact-option { display: flex; min-height: 90px; align-items: center; justify-content: space-between; gap: 18px; padding: 22px; border: 1px solid var(--line); transition: border-color .2s, background .2s; }
.contact-option:hover { border-color: var(--accent); background: var(--soft); }
.contact-option span:first-child { display: flex; flex-direction: column; gap: 3px; }
.contact-option strong { font-size: 1rem; }
.contact-option small { color: var(--muted); overflow-wrap: anywhere; }
.contact-address { margin-top: 39px; }
.contact-address .small { margin-top: 17px; }
.interest { margin-bottom: 20px; color: var(--orange-ink); font-weight: 600; }
.draft-panel { margin-top: 28px; padding: 27px; border-top: 5px solid var(--accent); background: var(--soft); }
.draft-panel h3 { margin-bottom: 16px; }
.draft-text { margin-top: 20px; padding: 20px; border: 1px solid var(--line); background: #fff; font: inherit; white-space: pre-wrap; overflow-wrap: anywhere; }
.edit-draft { color: var(--ink); background: none; border: 0; border-bottom: 1px solid; }
.form-error { color: #a12424; font-weight: 700; }

.reading { max-width: 850px; }
.reading article + article { margin-top: 38px; }
.reading h2 { margin-bottom: 16px; font-size: 1.55rem; }
.reading p { color: var(--muted); }

.callout {
  padding: 72px 0;
  background: var(--soft-2);
}

.callout--orange { background: var(--accent); }
.callout .wrap { display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.callout h2 { max-width: 24ch; font-size: clamp(2.3rem, 4vw, 4.2rem); }
.callout p { margin-top: 18px; color: var(--muted); }
.callout--orange .eyebrow::before { background: var(--dark); }
.callout--orange p { color: #4c2b1b; }
.callout .button { flex: 0 0 auto; }

/* Footer */
.footer {
  padding: 75px 0 25px;
  color: #fff;
  background: var(--dark-2);
  --muted: #bec5ca;
  --line: #42494f;
}

.footer-top { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 70px; padding-bottom: 60px; }
.footer .brand-full { width: 240px; }
.footer-phrase { max-width: 24ch; margin-top: 28px; font-size: 1.65rem; line-height: 1.3; letter-spacing: -.04em; }
.footer-caption { margin-top: 20px; color: var(--muted); font-size: .8rem; }
.footer h3 { margin-bottom: 21px; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; align-items: start; gap: 10px; font-size: .9rem; }
.footer a:hover { color: #ffab82; }
.footer-ecosystem { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 29px; }
.footer-ecosystem h3 { margin-bottom: 4px; }
.footer-ecosystem a,
.footer-ecosystem span { font-size: .81rem; }
.footer-ecosystem span { color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

[hidden] { display: none !important; }

/* Readable body copy and controls, including at enlarged text settings. */
.nav-links, .eyebrow, .number, .hero-routes small, .hero-routes span,
.ecosystem-grid span, .ecosystem-grid a, .component-grid span,
.architecture-grid span, .value-grid span, .level-grid span,
.solution-sector, .chip, .program-status, .productivity-rail span,
.footer h3, .footer-ecosystem a, .footer-ecosystem span { font-size: .875rem; }
.decision-card p, .activity-card p, .ecosystem-grid p, .component-grid p,
.architecture-grid p, .value-grid p, .level-grid p, .step p:last-child,
.signal-list p, .note, .contact-option small { font-size: 1rem; }
.component-grid > *, .architecture-grid > *, .value-grid > *,
.level-grid > *, .decision-grid > *, .activity-grid > *,
.ecosystem-grid > *, .form-grid > *, .section-head > *,
.hero-routes a, .guide-panel > * { min-width: 0; overflow-wrap: break-word; }

@media (max-width: 1240px) {
  .wrap { width: calc(100% - 64px); }
  .nav-row { gap: 20px; }
  .brand-full { width: 168px; }
  .nav-links { gap: 15px; font-size: .875rem; }
  .header-cta { display: none; }
  .mobile-contact { display: block; }
  .hero-copy h1 { font-size: clamp(3.2rem, 6.6vw, 5.5rem); }
  .productivity-layout,
  .split-statement .wrap,
  .jaway-layout { gap: 65px; }
  .architecture-grid { grid-template-columns: repeat(3, 1fr); }
  .architecture-grid article:nth-child(n+4) { min-height: 220px; }
}

@media (max-width: 1000px) {
  .section { padding: 88px 0; }
  .nav-row { min-height: 86px; }
  .brand-full { width: 155px; }
  .nav-links { gap: 13px; font-size: .875rem; }
  .hero-essential { min-height: 680px; }
  .hero-stage { min-height: 575px; }
  .hero-signature { display: none; }
  .decision-card { min-height: 305px; padding: 28px; }
  .split-statement .wrap,
  .productivity-layout,
  .manifesto-grid,
  .jaway-layout { gap: 55px; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .component-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid,
  .level-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-list > article { grid-template-columns: 52px 1fr; gap: 30px; }
  .solution-list > article > .text-link { grid-column: 2; justify-self: start; }
  .guide-panel { gap: 48px; }
  .contact-layout { gap: 45px; }
  .footer-top { gap: 40px; }
}

@media (max-width: 1080px) {
  html { scroll-padding-top: 152px; }
  .brand-full { width: 176px; }
  .nav-row { min-height: 82px; justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 18px 32px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 28px rgb(20 24 28 / 13%);
    font-size: .98rem;
    white-space: normal;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-links a::after { bottom: 7px; transform-origin: left; }
  .hero-essential { min-height: 0; }
  .hero-media img { object-position: 66% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgb(20 24 28 / 95%), rgb(22 27 31 / 63%)); }
  .hero-stage { min-height: 575px; padding-block: 55px; }
  .hero-copy { max-width: 680px; }
  .hero-copy h1 { font-size: clamp(3rem, 8vw, 5rem); }
  .hero-routes .wrap { grid-template-columns: 1fr; }
  .hero-routes a { min-height: 82px; border-right: 1px solid #ffffff22; border-bottom: 1px solid #ffffff22; }
  .section-head { display: block; margin-bottom: 39px; }
  .section-head > p { margin-top: 24px; }
  .decision-grid,
  .activity-grid,
  .grid-three { grid-template-columns: 1fr; }
  .decision-card,
  .activity-card { min-height: 0; }
  .decision-card .number,
  .activity-card .number { margin-bottom: 34px; }
  .split-statement .wrap,
  .productivity-layout,
  .manifesto-grid,
  .guide-panel,
  .jaway-layout,
  .split,
  .grid-two { grid-template-columns: 1fr; }
  .system-stack { margin-top: 10px; }
  .productivity-rail { margin-top: 15px; }
  .page-hero { padding: 42px 0 66px; }
  .breadcrumb { margin-bottom: 36px; }
  .page-hero h1 { font-size: clamp(3rem, 10vw, 5.2rem); }
  .architecture-grid { grid-template-columns: repeat(2, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .guide-panel { gap: 34px; }
  .service-row { grid-template-columns: 36px 1fr; gap: 15px 22px; }
  .service-row > div { grid-column: 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { padding: 36px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .callout .wrap { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .wrap { width: calc(100% - 40px); }
  .section { padding: 66px 0; }
  .social-topbar .social-tagline { max-width: 18ch; font-size: .74rem; }
  .brand-full { width: 164px; }
  .nav-links { padding-inline: 20px; }
  .hero-stage { min-height: 540px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 8vw, 4rem); }
  .hero-copy .lead { font-size: 1rem; }
  .hero-copy .button { width: 100%; }
  .hero-routes a { padding-inline: 20px; }
  .section-head h2,
  .statement-copy h2 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
  .decision-card,
  .activity-card { padding: 26px; }
  .productivity-band,
  .jaway-section { padding: 72px 0; }
  .productivity-rail article { grid-template-columns: 86px 1fr; }
  .ecosystem-grid,
  .component-grid,
  .architecture-grid,
  .value-grid,
  .level-grid { grid-template-columns: 1fr; }
  .ecosystem-grid article,
  .component-grid article,
  .architecture-grid article,
  .value-grid article,
  .level-grid article { min-height: 0; }
  .ecosystem-grid h3,
  .component-grid h3,
  .architecture-grid h3,
  .value-grid h3,
  .level-grid h3 { margin-top: 32px; }
  .solution-list > article { grid-template-columns: 1fr; gap: 19px; }
  .solution-list > article > .text-link { grid-column: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .guide-result,
  .solution-result,
  .diagnostic-result,
  .draft-panel { padding: 22px 20px; }
  .step-list { gap: 32px 23px; }
  .catalog-toolbar { display: block; }
  .catalog-count { padding: 18px 0 0; }
  .image-frame { min-height: 350px; }
  .signal-list article { grid-template-columns: 35px 82px 1fr; gap: 12px; }
  .callout { padding: 55px 0; }
  .footer { padding-top: 58px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 390px) {
  .wrap { width: calc(100% - 32px); }
  .brand-full { width: 151px; }
  .menu-toggle { padding: 9px 10px; font-size: .84rem; }
  .menu-icon { display: none; }
  .hero-copy h1 { font-size: 3rem; }
  .page-hero h1 { font-size: 2.75rem; }
  .segmented label { min-width: 128px; }
  .segmented span { padding-inline: 9px; }
  .step-list { grid-template-columns: 1fr; }
  .signal-list article { grid-template-columns: 34px 1fr; }
  .signal-list p { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
