:root {
  --font-main: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
  --font-serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
  --bg: #F7F7F8;
  --bg-soft: #EEEAE6;
  --surface: #FFFFFF;
  --surface-2: #F1ECE8;
  --line: rgba(44, 44, 46, 0.11);
  --line-strong: rgba(44, 44, 46, 0.2);
  --text: #2C2C2E;
  --muted: #68625F;
  --faint: #8D8580;
  --yellow: #C05A3C;
  --green: #827458;
  --purple: #9B6B58;
  --orange: #D97757;
  --blue: #6F7667;
  --ink: #2C2C2E;
  --paper: #F7F7F8;
  --brand: #C05A3C;
  --brand-soft: #D97757;
  --brand-shadow: rgba(192, 90, 60, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
ol,
ul,
pre {
  margin: 0;
}

h1,
h2,
h3,
p,
li,
summary,
blockquote,
a,
code {
  overflow-wrap: anywhere;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  background: var(--bg);
  color: var(--brand);
  transform: translateY(-180%);
}

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

.site-shell {
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.home-page .site-shell {
  max-width: none;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 119, 87, 0.16), transparent 25%),
    radial-gradient(circle at 15% 58%, rgba(192, 90, 60, 0.08), transparent 28%),
    linear-gradient(180deg, #F7F7F8 0%, #F3F0ED 48%, #F7F7F8 100%);
  color: var(--text);
}

.home-page * {
  min-width: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 248, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 8px 18px var(--brand-shadow));
}

.facet-base {
  fill: var(--brand);
  stroke: var(--text);
  stroke-width: 2;
  stroke-linejoin: round;
}

.facet-light {
  fill: var(--brand-soft);
}

.facet-left {
  fill: #A94F37;
}

.facet-right {
  fill: #8F422F;
}

.facet-center {
  fill: #E1A17B;
}

.facet-bottom {
  fill: #6F3A2D;
}

.facet-line {
  fill: none;
  stroke: var(--text);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
}

.brand-word,
.footer-brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand-word strong,
.footer-brand strong {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-word em,
.footer-brand em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.footer-title-row b {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  border: 1px solid rgba(192, 90, 60, 0.42);
  padding: 0 6px;
  color: var(--brand);
  font-size: 9px;
  font-weight: 900;
}

.top-nav {
  display: none;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.top-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-nav a[aria-current="page"],
.top-nav a:hover {
  color: var(--text);
}

.top-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: var(--brand);
}

.header-tools {
  display: none;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  overflow: hidden;
}

.header-tools button {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.header-tools button:hover {
  color: var(--text);
  background: var(--surface-2);
}

.header-tools button:last-child {
  border-right: 0;
}

.tool-lines {
  position: relative;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.tool-lines::before,
.tool-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.tool-lines::before {
  top: -5px;
}

.tool-lines::after {
  top: 5px;
}

.language-button {
  gap: 6px;
  min-width: 86px;
  padding: 0 10px;
}

.menu-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-link span {
  width: 18px;
  height: 2px;
  background: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  min-height: 940px;
  align-items: center;
  overflow: hidden;
  padding: 104px 24px 134px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 42%, rgba(192, 90, 60, 0.08), transparent 31%),
    radial-gradient(circle at 88% 94%, rgba(217, 119, 87, 0.16), transparent 27%),
    var(--bg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  padding: 4px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.hero h1 {
  margin-top: 30px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--brand);
}

.hero-lede {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-top: 38px;
}

.primary-cta,
.outline-cta {
  display: inline-flex;
  min-width: 178px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 28px;
  background: var(--brand);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.outline-cta {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
}

.text-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 56px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts li + li {
  position: relative;
}

.hero-facts li + li::before {
  content: "";
  width: 1px;
  height: 18px;
  margin-right: 22px;
  background: var(--line-strong);
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.dot-purple {
  color: var(--purple);
}

.dot-green {
  color: var(--green);
}

.dot-orange {
  color: var(--orange);
}

.hero-geometry {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  left: 52%;
  top: 48%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(44, 44, 46, 0.08);
  transform-origin: center;
}

.hero-line-a {
  transform: translate(-50%, -50%) rotate(33deg);
}

.hero-line-b {
  width: 760px;
  height: 470px;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.hero-line-c {
  width: 560px;
  height: 680px;
  transform: translate(-50%, -50%) rotate(-36deg);
}

.floating-square {
  position: absolute;
  width: 92px;
  height: 92px;
  opacity: 0.34;
  transform: rotate(45deg);
}

.square-purple {
  left: 10%;
  top: 8%;
  border: 1px solid var(--purple);
  opacity: 0.28;
}

.square-amber {
  right: 9%;
  top: 28%;
  width: 58px;
  height: 58px;
  background: rgba(192, 90, 60, 0.16);
}

.square-cyan {
  left: 12%;
  bottom: 20%;
  width: 72px;
  height: 72px;
  background: rgba(217, 119, 87, 0.11);
}

.square-green {
  right: 14%;
  bottom: 16%;
  border: 1px solid var(--green);
  opacity: 0.24;
}

.section {
  position: relative;
  padding: 110px 24px;
  border-bottom: 1px solid var(--line);
}

.section-heading,
.dimension-grid,
.process-section,
.faq-list,
.journey-grid,
.mcp-panel,
.centered,
.footer-main,
.site-footer > p {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 58px;
  text-align: center;
}

.section-heading h2,
.process-copy h2,
.final-copy h2 {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-heading p,
.process-copy p,
.final-copy p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.centered-kicker {
  margin-bottom: 16px;
}

.dimensions-section {
  padding-top: 106px;
}

.dimension-grid {
  display: grid;
  gap: 22px;
}

.dimension-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 138px;
  border: 1px solid var(--line-strong);
  border-top-color: color-mix(in srgb, currentColor 42%, transparent);
  padding: 28px 30px;
  background: var(--surface);
  color: var(--green);
  box-shadow: 0 18px 50px rgba(44, 44, 46, 0.06);
}

.dimension-card h3,
.journey-card strong,
.process-step strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.dimension-card > div,
.process-step strong,
.process-step p,
.tool-row span {
  min-width: 0;
}

.dimension-card p,
.journey-card p,
.process-step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.dimension-code {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  color: currentColor;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.tone-purple {
  color: var(--purple);
}

.tone-green {
  color: var(--green);
}

.tone-orange {
  color: var(--orange);
}

.tone-blue {
  color: var(--blue);
}

.process-section {
  display: grid;
  gap: 72px;
  align-items: start;
}

.process-copy {
  max-width: 520px;
}

.process-copy .section-kicker {
  border-color: transparent;
  padding-left: 0;
  color: var(--brand);
}

.process-copy .outline-cta {
  margin-top: 32px;
}

.process-list {
  display: grid;
  gap: 42px;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: start;
}

.process-step span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  color: var(--purple);
  font-family: var(--font-serif);
  font-size: 18px;
}

.process-step strong,
.process-step p {
  grid-column: 2;
}

.process-step:nth-child(2) span {
  color: var(--green);
}

.process-step:nth-child(3) span {
  color: var(--orange);
}

.process-step:nth-child(4) span {
  color: var(--blue);
}

.faq-section {
  background: rgba(192, 90, 60, 0.035);
}

.faq-list {
  max-width: 840px;
}

.faq-item {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(44, 44, 46, 0.045);
}

.faq-item[open] {
  border-color: rgba(192, 90, 60, 0.48);
  border-top-width: 5px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  position: relative;
  min-height: 72px;
  padding: 22px 64px 22px 30px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::after {
  content: "⌄";
  position: absolute;
  right: 30px;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
}

.faq-item[open] summary {
  color: var(--brand);
}

.faq-item[open] summary::after {
  content: "⌃";
  color: var(--brand);
}

.faq-item p {
  padding: 0 30px 30px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.journey-section,
.mcp-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 90, 60, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.4);
}

.journey-grid {
  display: grid;
  gap: 16px;
}

.journey-card {
  display: grid;
  gap: 12px;
  min-height: 150px;
  border: 1px solid var(--line-strong);
  border-top-color: color-mix(in srgb, currentColor 40%, transparent);
  padding: 28px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(44, 44, 46, 0.055);
}

.journey-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
}

.centered {
  display: flex;
  width: fit-content;
  margin-top: 48px;
}

.mcp-section .section-heading {
  margin-bottom: 54px;
}

.mcp-panel {
  max-width: 840px;
  border: 1px solid rgba(192, 90, 60, 0.36);
  border-top-width: 4px;
  padding: 34px 34px 32px;
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(44, 44, 46, 0.08);
}

.mcp-block + .mcp-block,
.mcp-tools {
  margin-top: 34px;
}

.mcp-block h3,
.mcp-tools h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.mcp-block p,
.mcp-link,
.tool-row {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.mcp-block p {
  margin-top: 10px;
}

.mcp-block p code,
.mcp-link a {
  color: var(--brand);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.mcp-panel pre {
  margin-top: 14px;
  overflow-x: auto;
  border: 1px solid rgba(44, 44, 46, 0.12);
  padding: 22px;
  background: #2C2C2E;
  color: #EFEAE6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  scrollbar-width: thin;
}

.mcp-tools {
  display: grid;
  gap: 18px;
}

.tool-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
}

.tool-row code {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(192, 90, 60, 0.4);
  padding: 0 14px;
  color: var(--brand);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 900;
}

.mcp-link {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.mcp-link a {
  word-break: break-all;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  padding: 92px 24px;
  border-bottom: 1px solid var(--line);
}

.cta-diamond {
  position: absolute;
  width: 460px;
  height: 460px;
  transform: rotate(45deg);
  background:
    radial-gradient(circle at 20% 80%, rgba(192, 90, 60, 0.12), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 119, 87, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.55);
}

.final-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
}

.final-copy .primary-cta {
  margin-top: 32px;
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 48px 24px 60px;
  background: #EEEAE6;
  color: var(--faint);
  text-align: center;
}

.footer-main {
  display: grid;
  gap: 22px;
  align-items: center;
}

.footer-brand {
  justify-content: center;
  justify-self: center;
  width: fit-content;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a + a::before {
  content: "|";
  margin-right: 18px;
  color: rgba(44, 44, 46, 0.18);
}

.site-footer p {
  max-width: 780px;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.primary-cta:focus-visible,
.outline-cta:focus-visible,
.text-cta:focus-visible,
.journey-card:focus-visible,
.faq-item summary:focus-visible,
.top-nav a:focus-visible,
.menu-link:focus-visible,
.footer-links a:focus-visible,
.header-tools button:focus-visible,
.mcp-link a:focus-visible {
  outline: 3px solid var(--brand-soft);
  outline-offset: 4px;
}

.primary-cta,
.outline-cta,
.text-cta,
.journey-card,
.top-nav a,
.footer-links a,
.menu-link,
.header-tools button {
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-cta:hover,
.outline-cta:hover,
.journey-card:hover {
  transform: translateY(-2px);
}

/* Shared content-page fallback styles */
.content-page .site-shell {
  background: var(--paper);
  color: var(--ink);
}

.content-page .hero {
  min-height: auto;
  padding: 22px 30px 76px;
  background: #325343;
  color: #ffffff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}

.brand-logo {
  display: inline-flex;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.brand-logo span {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.brand-logo small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  opacity: 0.86;
}

.page-hero {
  padding: 46px 0 18px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
}

.page-hero p {
  margin-top: 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.65;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 4px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.content-section,
.section-light {
  padding: 46px 30px;
  background: var(--paper);
}

.content-section h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
}

.content-section h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: #397a4a;
  font-size: 20px;
  font-weight: 900;
}

.content-section p,
.content-section li {
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.78;
}

.content-section p + p,
.content-section ul + p,
.content-section p + ul {
  margin-top: 16px;
}

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

.content-list li,
.content-card {
  border: 1px solid rgba(50, 83, 67, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.content-card + .content-card {
  margin-top: 12px;
}

.content-note {
  border-left: 4px solid #397a4a;
  padding: 14px 16px;
  background: rgba(57, 122, 74, 0.08);
  color: #325343;
  font-weight: 800;
}

.plain-link {
  color: #397a4a;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20, 24, 22, 0.12);
  color: #111111;
  font-size: 15px;
  text-align: left;
}

.friend-links a {
  color: #397a4a;
  font-weight: 800;
}

.ssl-logo {
  width: 112px;
  height: auto;
  margin: 12px auto 0;
}

.icp-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #666666;
}

.icp-line img {
  width: 18px;
  height: 18px;
}

@media (min-width: 760px) {
  .site-header {
    padding-left: max(40px, calc((100vw - 1120px) / 2));
    padding-right: max(40px, calc((100vw - 1120px) / 2));
  }

  .top-nav,
  .header-tools {
    display: flex;
  }

  .home-page .menu-link {
    display: none;
  }

  .hero {
    min-height: 1040px;
    padding-top: 118px;
    padding-bottom: 160px;
  }

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

  .hero-copy {
    transform: translateX(-76px);
  }

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

  .process-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

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

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    text-align: left;
  }

  .footer-brand {
    justify-content: flex-start;
    justify-self: start;
  }

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

@media (max-width: 1080px) {
  .top-nav {
    gap: 18px;
    font-size: 14px;
  }

  .header-tools button {
    min-width: 36px;
  }

  .language-button {
    min-width: 72px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-word strong {
    font-size: 18px;
  }

  .brand-word em {
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
    padding: 76px 18px 92px;
  }

  .hero h1 {
    margin-top: 26px;
    max-width: 330px;
    font-size: 46px;
  }

  .hero-lede {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta,
  .outline-cta {
    width: 100%;
    max-width: 354px;
  }

  .hero-facts {
    gap: 12px 18px;
    margin-top: 34px;
  }

  .hero-facts li + li::before {
    display: none;
  }

  .hero-line {
    left: 58%;
    width: 420px;
    height: 420px;
  }

  .hero-line-b {
    width: 470px;
    height: 310px;
  }

  .hero-line-c {
    width: 360px;
    height: 460px;
  }

  .floating-square {
    width: 72px;
    height: 72px;
  }

  .square-purple {
    left: 10%;
    top: 9%;
  }

  .square-amber {
    right: 8%;
    top: 36%;
  }

  .square-cyan {
    left: 12%;
    bottom: 15%;
  }

  .square-green {
    display: none;
  }

  .section {
    padding: 84px 18px;
  }

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

  .section-heading h2,
  .process-copy h2,
  .final-copy h2 {
    font-size: 32px;
  }

  .dimension-card {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    min-height: 144px;
    padding: 24px;
  }

  .dimension-code {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .process-step {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .process-step span {
    width: 46px;
    height: 46px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 20px 58px 20px 24px;
  }

  .faq-item p {
    padding: 0 24px 24px;
  }

  .journey-card {
    min-height: 148px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-brand {
    gap: 10px;
    justify-content: center;
    max-width: 100%;
  }

  .footer-brand > span:last-child {
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand .brand-mark {
    width: 44px;
    height: 44px;
  }

  .footer-title-row {
    justify-content: flex-start;
    gap: 7px;
  }

  .footer-brand strong {
    font-size: 20px;
  }

  .footer-title-row b {
    min-height: 18px;
    font-size: 8px;
  }

  .footer-brand em {
    margin-top: 4px;
    font-size: 10px;
    text-align: left;
  }

  .mcp-panel {
    padding: 24px;
  }

  .tool-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mcp-panel pre {
    padding: 18px;
    font-size: 13px;
  }

  .cta-diamond {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 40px;
  }

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

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