:root {
  --bg: #fafafa;
  --paper: #ffffff;
  --ink: #18211d;
  --muted: #607069;
  --line: #dfe5e1;
  --green: #143d2b;
  --green-2: #1f5a40;
  --gold: #d7aa50;
  --gold-soft: #f3e5bf;
  --gray: #eef2ef;
  --shadow: 0 24px 70px rgba(24, 33, 29, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 229, 225, 0.86);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  font-size: 13px;
  font-weight: 650;
  color: #24332d;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-action {
  padding: 11px 14px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: min(820px, calc(100vh - 122px));
  display: grid;
  align-items: center;
  padding: 70px 0 48px;
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 0.94) 42%, rgba(250, 250, 250, 0.2) 100%),
    url("assets/hero-strategy.png") right center / min(57vw, 820px) auto no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 600px) 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 760px;
}

.hero p,
.page-hero p {
  margin: 24px 0 0;
  max-width: 630px;
  color: #4f6259;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid var(--green);
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
}

.hero-facts {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.fact {
  min-height: 94px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.fact strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

.section.paper {
  background: var(--paper);
}

.section.green {
  background: var(--green);
  color: white;
}

.section.gray {
  background: var(--gray);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.page-section p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.green .section-head p,
.green .muted,
.green .service-row p,
.green .long-copy {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 0.82fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-number {
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
}

.service-row h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.media-panel {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: url("assets/hero-strategy.png") center / cover;
  box-shadow: var(--shadow);
}

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

.global-layout h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: auto;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.credibility-strip div {
  min-height: 92px;
  padding: 18px;
  background: var(--paper);
}

.credibility-strip strong,
.credibility-strip span {
  display: block;
}

.credibility-strip strong {
  font-size: 17px;
  line-height: 1.2;
}

.credibility-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-panel {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.text-panel h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.08;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

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

.process-card,
.plain-card,
.contact-card,
.team-card,
.insight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.process-card strong,
.plain-card strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.process-card h3,
.plain-card h3,
.contact-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.16;
}

.process-card p,
.plain-card p,
.contact-card p,
.contact-card address,
.team-card p,
.insight-card p {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.long-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.statement-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.statement-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--paper);
}

.statement-list strong {
  color: var(--green);
}

.statement-list span {
  color: var(--muted);
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-simple-head {
  align-items: start;
  margin-bottom: 32px;
}

.team-card.featured {
  grid-column: span 2;
  background: #f9fbfa;
}

.team-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
}

.team-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.16;
}

.team-card .role {
  margin: 8px 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-card p {
  font-size: 15px;
}

.team-contact {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.team-card .initials {
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(20, 61, 43, 0.08);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.insight-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.insight-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.16;
}

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

.footer {
  padding: 42px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #0f1713;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.7fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand-block {
  max-width: 430px;
}

.footer-brand-title {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-brand-subtitle {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
}

.footer p {
  margin: 18px 0 0;
  max-width: 420px;
}

.footer-domain {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-column strong,
.footer-nav strong {
  margin-bottom: 6px;
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 28px;
  font-size: 14px;
}

.footer-nav div {
  display: grid;
  gap: 7px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.page-hero {
  padding: 76px 0 68px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 860px;
}

.page-hero.editorial {
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 0.88) 58%, rgba(250, 250, 250, 0.2) 100%),
    url("assets/hero-strategy.png") right center / min(44vw, 680px) auto no-repeat;
}

.page-hero.dark {
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 24, 21, 0.96), rgba(20, 61, 43, 0.98)),
    url("assets/hero-strategy.png") right center / min(42vw, 620px) auto no-repeat;
  border-bottom: 0;
}

.page-hero.dark h1,
.page-hero.dark p {
  color: white;
}

.page-hero.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero.catalog {
  background: var(--gray);
}

.page-hero.contact-hero {
  padding-bottom: 36px;
  background: linear-gradient(180deg, #fff, #f4f7f5);
}

.catalog-masthead,
.company-masthead {
  padding: 74px 0 56px;
  border-bottom: 1px solid var(--line);
}

.catalog-masthead {
  background: var(--gray);
}

.catalog-masthead-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 54px;
  align-items: end;
}

.catalog-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-masthead h1,
.company-masthead h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.catalog-masthead p,
.company-masthead p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.company-masthead {
  background: var(--paper);
}

.company-masthead-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.company-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1px;
  min-width: min(460px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.company-quick-facts div {
  padding: 18px;
  background: #fff;
}

.company-quick-facts strong {
  display: block;
  font-size: 13px;
  color: var(--green);
  text-transform: uppercase;
}

.company-quick-facts span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-opening {
  padding: 76px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: 64px;
  align-items: stretch;
}

.about-opening h1,
.development-opening h1,
.participation-opening h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.about-opening p,
.development-opening p,
.participation-opening p {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.scope-panel {
  padding: 28px;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
}

.scope-panel > strong {
  display: block;
  color: var(--gold);
  margin-bottom: 22px;
}

.scope-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
}

.scope-panel dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 16px 0;
  background: var(--green);
}

.scope-panel dt,
.scope-panel dd {
  margin: 0;
}

.scope-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.scope-panel dd {
  color: rgba(255, 255, 255, 0.9);
}

.development-opening {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(238, 242, 239, 0.98) 0%, rgba(238, 242, 239, 0.92) 48%, rgba(238, 242, 239, 0.54) 100%),
    url("assets/hero-strategy.png") right center / min(44vw, 620px) auto no-repeat;
  border-bottom: 1px solid var(--line);
}

.development-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.board-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.board-stack div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.board-stack strong {
  color: var(--gold);
  font-weight: 900;
}

.board-stack span {
  color: var(--green);
  font-size: 18px;
  font-weight: 850;
}

.participation-opening {
  padding: 72px 0;
  color: white;
  background: var(--green);
}

.participation-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 62px;
  align-items: end;
}

.participation-opening .section-kicker,
.participation-opening h1 {
  color: white;
}

.participation-opening .section-kicker {
  color: var(--gold);
}

.participation-opening p {
  color: rgba(255, 255, 255, 0.76);
}

.participation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.participation-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-top {
  padding: 64px 0 78px;
  background: linear-gradient(180deg, #fff 0%, #f7f9f8 100%);
}

.team-masthead {
  padding: 70px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.team-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.team-masthead h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
}

.team-masthead p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.team-role-board div {
  min-height: 86px;
  padding: 18px;
  background: #fff;
}

.team-role-board strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
}

.team-role-board span {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-weight: 850;
}

.page-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.page-section {
  padding: 78px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.prose p {
  color: var(--muted);
  font-size: 18px;
}

.prose p:first-child {
  margin-top: 0;
}

.legal-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: #f7f9f7;
  color: #4f6259;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.story-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.story-panel h2,
.catalog-intro h2,
.pipeline-header h2,
.registry-block h2,
.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--line);
}

.timeline li {
  position: relative;
  padding: 0 0 34px 30px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

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

.catalog-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 900;
}

.catalog-item h3,
.pipeline-step h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.catalog-item p,
.pipeline-step p,
.registry-row dd,
.contact-detail p {
  margin: 0;
  color: var(--muted);
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.method-strip div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.method-strip strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 10px;
}

.method-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.pipeline {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 46px;
}

.pipeline-steps {
  display: grid;
  gap: 18px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.pipeline-number {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.dark-ledger {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.ledger-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.ledger-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.ledger-row strong {
  color: var(--gold);
}

.ledger-row span {
  color: rgba(255, 255, 255, 0.76);
}

.team-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 28px;
}

.team-structure {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

.role-rail {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.role-rail a {
  padding: 16px 18px;
  background: var(--paper);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.registry-block {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
}

.registry-table {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.registry-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.registry-row:last-child {
  border-bottom: 0;
}

.registry-row dt,
.registry-row dd {
  margin: 0;
  padding: 20px;
  background: var(--paper);
  overflow-wrap: anywhere;
}

.registry-row dt {
  color: var(--green);
  font-weight: 850;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-detail strong {
  color: var(--green);
}

.contact-detail a,
.legal-copy a {
  color: var(--green);
  font-weight: 800;
}

.mosaic-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.mosaic-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mosaic-card.large {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(20, 61, 43, 0.9), rgba(20, 61, 43, 0.96)),
    url("assets/hero-strategy.png") center / cover;
  color: white;
}

.mosaic-card.large p {
  color: rgba(255, 255, 255, 0.72);
}

.mosaic-card .catalog-icon {
  margin-bottom: 26px;
}

.mosaic-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.mosaic-card p {
  margin: 0;
  color: var(--muted);
}

.mosaic-card::after {
  content: attr(data-index);
  position: absolute;
  right: 24px;
  bottom: 8px;
  color: rgba(20, 61, 43, 0.06);
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
}

.mosaic-card.large::after {
  color: rgba(255, 255, 255, 0.08);
}

.strategy-canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header header"
    "left right";
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.strategy-canvas > div {
  min-height: 170px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.strategy-canvas .canvas-header {
  grid-area: header;
  min-height: 150px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.06);
}

.strategy-canvas strong {
  display: block;
  color: var(--gold);
  margin-bottom: 12px;
}

.strategy-canvas p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.dossier-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.dossier-side {
  padding: 34px;
  color: white;
  background: var(--green);
}

.dossier-side strong {
  display: block;
  color: var(--gold);
  margin-bottom: 14px;
}

.dossier-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.dossier-layout .registry-table {
  border: 0;
  border-radius: 0;
}

.brand-lab {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: start;
}

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

.logo-choice {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.logo-choice img {
  width: 260px;
  height: auto;
}

.logo-choice h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.logo-choice p {
  margin: 0;
  color: var(--muted);
}

.contact-command {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-command .contact-panel:first-child {
  color: white;
  background: var(--green);
}

.contact-command .contact-panel:first-child h2,
.contact-command .contact-panel:first-child strong {
  color: white;
}

.contact-command .contact-panel:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-command .contact-detail {
  border-color: rgba(255, 255, 255, 0.16);
}

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

.routing-tile {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.routing-tile strong {
  display: block;
  color: var(--gold);
  margin-bottom: 30px;
}

.routing-tile h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.routing-tile p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: #34423c;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 750;
}

.form-status a {
  color: var(--green);
  text-decoration: underline;
}

.policy-masthead {
  padding: 76px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.policy-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 58px;
  align-items: center;
}

.policy-masthead h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.policy-masthead p {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.policy-summary {
  display: grid;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius);
  color: white;
  background: var(--green);
}

.policy-summary strong {
  color: var(--gold);
  font-size: 18px;
}

.policy-summary span {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.legal-index a {
  padding: 16px 18px;
  color: var(--green);
  background: var(--paper);
  font-size: 13px;
  font-weight: 850;
}

.legal-copy {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.legal-copy section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.legal-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.legal-copy p + p {
  margin-top: 14px;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    background:
      linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 0.95) 46%, rgba(250, 250, 250, 0.2) 100%),
      url("assets/hero-strategy.png") center bottom / 100% auto no-repeat;
    padding-bottom: 340px;
  }

  .hero-grid,
  .section-head,
  .capability-grid,
  .two-column,
  .split-band,
  .story-layout,
  .catalog-layout,
  .pipeline,
  .dark-ledger,
  .team-lead,
  .team-structure,
  .registry-block,
  .contact-layout,
  .brand-lab,
  .global-layout,
  .catalog-masthead-grid,
  .company-masthead-grid,
  .team-masthead-grid,
  .about-opening-grid,
  .development-board,
  .participation-opening-grid,
  .policy-masthead-grid,
  .legal-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-hero.editorial,
  .page-hero.dark {
    background:
      linear-gradient(180deg, rgba(250, 250, 250, 1) 0%, rgba(250, 250, 250, 0.94) 58%, rgba(250, 250, 250, 0.2) 100%),
      url("assets/hero-strategy.png") center bottom / 100% auto no-repeat;
    padding-bottom: 290px;
  }

  .page-hero.dark {
    background:
      linear-gradient(180deg, rgba(17, 24, 21, 0.98) 0%, rgba(20, 61, 43, 0.94) 60%, rgba(20, 61, 43, 0.72) 100%),
      url("assets/hero-strategy.png") center bottom / 100% auto no-repeat;
  }

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

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

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

  .dossier-layout,
  .contact-command {
    grid-template-columns: 1fr;
  }

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

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

  .hero-facts,
  .facts-grid,
  .process-grid,
  .contact-grid,
  .page-grid,
  .team-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card.featured {
    grid-column: span 2;
  }

  .service-row {
    grid-template-columns: 54px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 180px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 120px;
  }

  .section,
  .page-section {
    padding: 62px 0;
  }

  .facts-grid,
  .process-grid,
  .contact-grid,
  .page-grid,
  .team-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .team-card.featured {
    grid-column: span 1;
  }

  .statement-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-hero.editorial,
  .page-hero.dark {
    padding-bottom: 180px;
  }

  .catalog-item,
  .pipeline-step,
  .ledger-row,
  .registry-row,
  .contact-detail,
  .scope-panel dl div,
  .board-stack div {
    grid-template-columns: 1fr;
  }

  .method-strip,
  .role-rail,
  .legal-index,
  .mosaic-services,
  .strategy-canvas,
  .logo-options,
  .routing-grid,
  .team-role-board,
  .credibility-strip,
  .company-quick-facts {
    grid-template-columns: 1fr;
  }

  .mosaic-card.large {
    grid-row: span 1;
  }

  .strategy-canvas {
    grid-template-areas: none;
  }

  .strategy-canvas .canvas-header {
    grid-area: auto;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .fact {
    min-height: 78px;
    padding: 14px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row p {
    grid-column: auto;
  }

  .text-panel,
  .process-card,
  .plain-card,
  .contact-card,
  .story-panel,
  .team-card,
  .insight-card,
  .contact-panel {
    padding: 22px;
  }

  .about-opening,
  .development-opening,
  .participation-opening,
  .policy-masthead,
  .team-masthead,
  .catalog-masthead,
  .company-masthead,
  .contact-top {
    padding: 52px 0;
  }

  .development-opening {
    background: var(--gray);
  }

  .footer {
    padding-top: 34px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}
