:root {
  --page: #e2e5df;
  --paper: #fbfbf8;
  --ink: #111614;
  --soft-ink: #353c38;
  --muted: #6f7772;
  --line: rgba(17, 22, 20, 0.12);
  --line-strong: rgba(17, 22, 20, 0.2);
  --dark: #111816;
  --sage: #dfe8dd;
  --blue: #dce8ee;
  --rose: #eadfe3;
  --sand: #eee8dc;
  --white: #ffffff;
  --shell: 1320px;
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(17, 22, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "PingFang SC", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.site-header,
.hero,
.section,
.page-hero,
.footer {
  width: min(var(--shell), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin-top: 24px;
  background: rgba(251, 251, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(17, 22, 20, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-toggle {
  display: none;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--soft-ink);
  font-size: 12px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  min-height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  background: var(--dark);
  border-radius: 999px;
  font-weight: 700;
}

.hero,
.section,
.page-hero {
  margin-top: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 22, 20, 0.08), rgba(17, 22, 20, 0.3)),
    linear-gradient(90deg, rgba(17, 22, 20, 0.28), rgba(17, 22, 20, 0.05), rgba(17, 22, 20, 0.24));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  padding: 80px 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
}

.hero p {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

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

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.section {
  padding: 86px 0;
}

.page-hero {
  padding: 82px 0;
}

.page-hero .container,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.page-hero h1,
.section h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}

.page-hero p,
.lead-copy p,
.section-intro p,
.assessment-section p,
.guide-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.lead-copy {
  display: grid;
  gap: 18px;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-intro.compact {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-intro h2 {
  margin: 0 0 18px;
}

.proof-strip {
  background: var(--dark);
  color: var(--white);
}

.proof-strip .kicker,
.proof-strip p,
.proof-strip span {
  color: rgba(255, 255, 255, 0.68);
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.proof-strip h2 {
  max-width: 500px;
}

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

.proof-points article,
.card,
.case-card,
.deliverables article,
.quote-list blockquote,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.proof-points article {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.proof-points strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}

.proof-points span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
}

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

.logo-cloud span {
  min-height: 72px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.market-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(134, 191, 228, 0.32), transparent 32%),
    linear-gradient(135deg, #061550 0%, #0b2b74 56%, #143f8f 100%);
}

.market-section .kicker,
.market-section p {
  color: rgba(255, 255, 255, 0.68);
}

.market-section .section-intro {
  max-width: 940px;
}

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

.market-grid article {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.market-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
}

.market-grid span {
  display: block;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.market-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.risk-section {
  background: #f4f5f1;
}

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

.grid {
  display: grid;
  gap: 12px;
}

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

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

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

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

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

.card {
  min-height: 250px;
  padding: 24px;
}

.card span,
.deliverables span {
  display: block;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card h3,
.deliverables h3,
.case-card h3,
.faq-list h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.card p,
.deliverables p,
.case-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.media-panel {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background: var(--blue);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.steps article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

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

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

.sprint-section .kicker,
.sprint-section p {
  color: rgba(255, 255, 255, 0.7);
}

.sprint-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.sprint-copy {
  position: sticky;
  top: 104px;
}

.sprint-copy h2 {
  margin-bottom: 18px;
}

.sprint-copy h2 span {
  display: block;
}

.offer-number {
  margin-bottom: 4px;
  font-size: 72px;
  line-height: 0.92;
}

.sprint-copy p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
}

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

.deliverables article {
  min-height: 230px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.deliverables span {
  color: rgba(255, 255, 255, 0.56);
}

.deliverables p {
  color: rgba(255, 255, 255, 0.68);
}

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

.case-card {
  overflow: hidden;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.72);
}

.case-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.case-card h3,
.case-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.case-card h3 {
  padding-top: 22px;
}

.case-card p {
  padding-bottom: 24px;
}

.feedback-section {
  background: var(--sage);
}

.quote-list {
  display: grid;
  gap: 12px;
}

.quote-list blockquote {
  margin: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.quote-list p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.quote-list cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.faq-section {
  overflow: visible;
}

.faq-copy {
  position: sticky;
  top: 104px;
}

.faq-copy p:not(.kicker) {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 10px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 22, 20, 0.28) rgba(17, 22, 20, 0.06);
}

.faq-list::-webkit-scrollbar {
  width: 8px;
}

.faq-list::-webkit-scrollbar-track {
  background: rgba(17, 22, 20, 0.06);
  border-radius: 999px;
}

.faq-list::-webkit-scrollbar-thumb {
  background: rgba(17, 22, 20, 0.28);
  border-radius: 999px;
}

.faq-list article {
  padding: 24px;
}

.faq-list span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-section {
  background: var(--blue);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.guide-layout h2 {
  margin-bottom: 12px;
}

.assessment-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(134, 191, 228, 0.32), transparent 32%),
    linear-gradient(135deg, #061550 0%, #0b2b74 56%, #143f8f 100%);
}

.assessment-section .kicker,
.assessment-section p,
.assessment-section li,
.assessment-section .privacy-note {
  color: rgba(255, 255, 255, 0.72);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

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

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

.field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
}

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

.privacy-note {
  margin: 0;
  font-size: 13px;
}

.success {
  display: none;
  padding: 14px 16px;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--sage);
}

.success.visible {
  display: block;
}

.success.error {
  background: #fff2f2;
  color: #8f1d1d;
}

.footer {
  margin-top: 18px;
  margin-bottom: 28px;
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
  border-radius: var(--radius);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

/* Supporting pages */
.simple-section {
  padding: 72px 0;
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.featured {
  color: var(--white);
  background: var(--dark);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  color: var(--soft-ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.quote-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.quote-panel p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 22px;
  line-height: 1.35;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
}

.about-team-photo {
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue);
  overflow: hidden;
}

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

.digital-native-section {
  color: var(--white);
  background: var(--dark);
}

.digital-native-section .kicker,
.digital-native-section p {
  color: rgba(255, 255, 255, 0.7);
}

.digital-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.digital-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

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

.team-card {
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.team-portrait {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(209, 223, 241, 0.28)),
    radial-gradient(circle at 72% 22%, rgba(134, 191, 228, 0.42), transparent 28%),
    #edf3fa;
  border-bottom: 1px solid var(--line);
}

.team-card > div:last-child {
  padding: 24px;
}

.team-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.18;
}

.team-card h4 {
  margin: 0 0 16px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.3;
}

.team-card p,
.team-card li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.team-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.team-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

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

.model-ladder article,
.scope-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.model-ladder article {
  min-height: 560px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.model-ladder article.featured {
  color: var(--white);
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.14);
}

.model-ladder span {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.model-ladder article.featured span,
.model-ladder article.featured p,
.model-ladder article.featured li {
  color: rgba(255, 255, 255, 0.7);
}

.model-ladder strong {
  display: block;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1;
}

.model-ladder h3,
.scope-grid h3,
.process-timeline h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.model-ladder p,
.scope-grid p,
.process-timeline p,
.process-timeline aside {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.model-ladder ul {
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.model-ladder li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.model-ladder article.featured li {
  border-top-color: rgba(255, 255, 255, 0.14);
}

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

.scope-grid article {
  min-height: 260px;
  padding: 26px;
}

.process-timeline {
  display: grid;
}

.process-timeline article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.process-timeline article:first-child {
  padding-top: 0;
  border-top: 0;
}

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

.process-timeline span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.process-timeline aside {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.module-grid,
.resource-grid,
.platform-grid,
.operation-grid,
.article-grid,
.video-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.module-grid article,
.resource-card,
.platform-grid article,
.operation-grid article,
.article-grid article,
.video-card,
.comparison-grid article,
.fit-grid article,
.work-map article,
.metric-list article,
.checklist-grid article,
.case-lens article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.module-grid article,
.resource-card,
.operation-grid article,
.article-grid article,
.video-card,
.comparison-grid article {
  min-height: 250px;
  padding: 24px;
}

.platform-grid article {
  min-height: 420px;
  padding: 24px;
}

.resource-card,
.video-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.resource-card:hover,
.video-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card > span {
  margin-bottom: 12px;
}

.module-grid span,
.resource-card span,
.platform-grid span,
.article-grid span,
.video-card span,
.comparison-grid span,
.work-map span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.module-grid h3,
.resource-card h3,
.platform-grid h3,
.operation-grid h3,
.article-grid h3,
.video-card h3,
.comparison-grid h3,
.fit-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.18;
}

.comparison-grid article > span {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.55;
  text-transform: none;
}

.module-grid p,
.resource-card p,
.platform-grid p,
.operation-grid p,
.article-grid p,
.video-card p,
.comparison-grid p,
.fit-grid p,
.metric-list p,
.checklist-grid p,
.case-lens p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.platform-grid .list {
  margin-top: 24px;
}

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

.fit-grid article {
  padding: 26px;
}

.work-map {
  display: grid;
  gap: 12px;
}

.work-map article {
  display: grid;
  grid-template-columns: 130px minmax(190px, 0.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
}

.work-map strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.work-map p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.metric-list,
.checklist-grid,
.case-lens {
  display: grid;
  gap: 12px;
}

.metric-list article,
.checklist-grid article,
.case-lens article {
  padding: 22px;
}

.metric-list strong,
.checklist-grid strong,
.case-lens strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .nav {
    min-height: auto;
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .hero {
    min-height: 440px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .page-hero .container,
  .split,
  .about-story-grid,
  .proof-strip-grid,
  .method-layout,
  .sprint-layout,
  .faq-layout,
  .assessment-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-points,
  .grid.three,
  .grid.four,
  .market-grid,
  .card-grid.three,
  .card-grid.four,
  .case-grid,
  .deliverables,
  .logo-cloud,
  .model-ladder,
  .scope-grid,
  .team-grid,
  .module-grid,
  .resource-grid,
  .platform-grid,
  .operation-grid,
  .article-grid,
  .video-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sprint-copy {
    position: static;
  }

  .faq-copy {
    position: static;
  }

  .faq-list {
    max-height: 520px;
  }

  .process-timeline article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .work-map article {
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline aside {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .media-panel,
  .media-panel img {
    min-height: 380px;
  }

}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .page-hero,
  .footer {
    width: calc(100% - 20px);
  }

  .container {
    width: calc(100% - 32px);
  }

  .nav {
    position: relative;
    min-height: 52px;
    padding: 0 14px;
  }

  .brand {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.18s ease;
    transform-origin: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(251, 251, 248, 0.98);
    box-shadow: 0 18px 50px rgba(17, 22, 20, 0.12);
    backdrop-filter: blur(28px);
    z-index: 100;
  }

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

  .nav-links a {
    padding: 11px 18px;
    width: 100%;
    font-size: 14px;
  }

  .nav-links a:last-child {
    margin-top: 4px;
  }

  .hero {
    min-height: 400px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

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

  .page-hero h1,
  .section h2 {
    font-size: 30px;
  }

  .proof-points,
  .grid.two,
  .grid.three,
  .grid.four,
  .market-grid,
  .card-grid.three,
  .card-grid.four,
  .case-grid,
  .deliverables,
  .logo-cloud,
  .model-ladder,
  .scope-grid,
  .team-grid,
  .module-grid,
  .resource-grid,
  .platform-grid,
  .operation-grid,
  .article-grid,
  .video-grid,
  .comparison-grid,
  .fit-grid,
  .form-grid,
  .guide-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .guide-layout {
    align-items: start;
  }

  .card,
  .proof-points article,
  .deliverables article,
  .model-ladder article,
  .scope-grid article,
  .team-card,
  .platform-grid article,
  .module-grid article,
  .resource-card,
  .operation-grid article,
  .article-grid article,
  .video-card,
  .comparison-grid article {
    min-height: auto;
  }

  .faq-list {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .process-timeline article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-map article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-timeline aside {
    grid-column: auto;
  }

  .offer-number {
    font-size: 48px;
  }

  .card span,
  .deliverables span {
    margin-bottom: 24px;
  }

  .case-card {
    min-height: auto;
  }

  .form {
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* V3 editorial direction extension for supporting pages */
:root {
  --page: #e9eef8;
  --paper: #fcfdff;
  --paper-soft: #f3f6fb;
  --ink: #07153a;
  --soft-ink: #26365f;
  --muted: #77839d;
  --line: rgba(20, 42, 92, 0.12);
  --line-strong: rgba(20, 42, 92, 0.2);
  --dark: #071a56;
  --sage: #edf3fa;
  --blue: #e7f0fb;
  --rose: #eef3fb;
  --sand: #f4f7fb;
  --white: #ffffff;
  --shell: 1180px;
  --max: 1080px;
  --radius: 8px;
  --shadow: none;
}

body {
  color: var(--ink);
  background: var(--page);
  font-family: "PingFang SC", "PingFang TC", "Hiragino Sans GB", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

.site-header,
.hero,
.section,
.page-hero,
.footer {
  width: min(var(--shell), calc(100% - 36px));
}

.container {
  width: min(var(--max), calc(100% - 56px));
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  margin-top: 0;
  background: rgba(252, 253, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(14, 31, 75, 0.1);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: 58px;
  padding: 0 18px;
}

.brand {
  font-size: 13px;
  font-weight: 500;
}

.nav-links {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta,
.button {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.nav-cta,
.button.primary {
  color: var(--white) !important;
  background: var(--dark);
}

.button.secondary,
.button.light {
  color: var(--dark);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.9);
}

.hero,
.section,
.page-hero {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.page-hero {
  position: relative;
  min-height: 460px;
  margin-top: 104px;
  padding: 118px 0 76px;
  display: grid;
  align-items: center;
  color: var(--white);
  border: 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 16%, rgba(154, 215, 246, 0.76), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(73, 105, 196, 0.48), transparent 36%),
    linear-gradient(135deg, #061550 0%, #123384 55%, #86bfe4 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    radial-gradient(ellipse at 52% 104%, rgba(0, 0, 0, 0.3), transparent 46%);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 12%;
  top: 16%;
  height: 58%;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.3;
  transform: rotate(-4deg);
  background:
    repeating-radial-gradient(ellipse at 50% 96%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px 16px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
}

.page-hero .container,
.split {
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
  gap: 48px;
}

.page-hero h1,
.section h2,
.hero h1 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 400;
}

.page-hero p,
.lead-copy p,
.section-intro p,
.assessment-section p,
.guide-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.eyebrow,
.kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.page-hero .kicker {
  color: rgba(255, 255, 255, 0.64);
}

.section {
  padding: 62px 0;
  background: var(--paper);
}

.guide-section,
.risk-section,
.feedback-section {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
}

.sprint-section,
.proof-strip,
.digital-native-section,
.assessment-section,
.market-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(134, 191, 228, 0.32), transparent 32%),
    linear-gradient(135deg, #061550 0%, #0b2b74 56%, #143f8f 100%);
}

.market-section,
.assessment-section,
.team-portrait {
  background-image:
    radial-gradient(circle at 80% 16%, rgba(134, 191, 228, 0.32), transparent 32%),
    linear-gradient(135deg, #061550 0%, #0b2b74 56%, #143f8f 100%);
}

.sprint-section .kicker,
.sprint-section p,
.proof-strip .kicker,
.proof-strip p,
.proof-strip span,
.digital-native-section .kicker,
.digital-native-section p,
.assessment-section .kicker,
.assessment-section p,
.assessment-section li,
.assessment-section .privacy-note,
.market-section .kicker,
.market-section p {
  color: rgba(255, 255, 255, 0.72);
}

.card,
.case-card,
.proof-points article,
.deliverables article,
.quote-list blockquote,
.faq-list article,
.module-grid article,
.resource-card,
.platform-grid article,
.operation-grid article,
.article-grid article,
.video-card,
.comparison-grid article,
.fit-grid article,
.work-map article,
.metric-list article,
.checklist-grid article,
.case-lens article,
.model-ladder article,
.scope-grid article,
.team-card,
.quote-panel,
.digital-panel {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: none;
}

.proof-points article,
.deliverables article,
.digital-panel,
.model-ladder article.featured {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.card span,
.deliverables span,
.module-grid span,
.resource-card span,
.platform-grid span,
.article-grid span,
.video-card span,
.comparison-grid span,
.work-map span,
.team-card span,
.model-ladder span,
.market-grid span,
.logo-cloud span,
.faq-list span,
.field label,
.tag,
.steps span,
.process-timeline span {
  font-weight: 500;
}

.card h3,
.deliverables h3,
.case-card h3,
.faq-list h3,
.module-grid h3,
.resource-card h3,
.platform-grid h3,
.operation-grid h3,
.article-grid h3,
.video-card h3,
.comparison-grid h3,
.fit-grid h3,
.model-ladder h3,
.scope-grid h3,
.process-timeline h3,
.team-card h3,
.metric-list strong,
.checklist-grid strong,
.case-lens strong,
.steps h3 {
  color: var(--ink);
  font-weight: 500;
}

.sprint-section h2,
.sprint-section h3,
.sprint-section strong,
.proof-strip h2,
.proof-strip strong,
.digital-native-section h2,
.assessment-section h2,
.market-section h2,
.market-grid strong,
.deliverables h3,
.model-ladder article.featured h3,
.model-ladder article.featured strong {
  color: var(--white);
}

.market-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.market-grid strong,
.proof-points strong,
.model-ladder strong,
.offer-number {
  font-weight: 400;
}

.logo-cloud span,
.tag {
  background: rgba(255, 255, 255, 0.58);
}

.form {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.field input,
.field select,
.field textarea {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.image-slot,
.about-team-photo,
.team-portrait,
.media-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(209, 223, 241, 0.28)),
    radial-gradient(circle at 72% 22%, rgba(134, 191, 228, 0.42), transparent 28%),
    #edf3fa;
}

.image-slot::before,
.about-team-photo::before,
.team-portrait::before,
.media-panel::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(7, 21, 58, 0.1);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.case-card .image-slot {
  height: 230px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.case-card img,
.about-team-photo img,
.media-panel img {
  display: none;
}

.team-portrait {
  border-width: 0 0 1px;
  border-radius: 0;
}

.footer {
  background:
    radial-gradient(circle at 82% 16%, rgba(134, 191, 228, 0.24), transparent 34%),
    linear-gradient(135deg, #061550, #071a56);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .page-hero {
    margin-top: 14px;
    min-height: 420px;
    padding: 76px 0 64px;
  }

  .page-hero .container,
  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .page-hero,
  .footer {
    width: calc(100% - 20px);
  }

  .page-hero {
    min-height: 380px;
    padding: 64px 0 56px;
  }

  .page-hero h1,
  .section h2 {
    font-size: 30px;
  }

  .case-card .image-slot {
    height: 190px;
  }
}
