:root {
  --bg: #ffffff;
  --bg-soft: #f7f4ed;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(20, 19, 17, 0.08);
  --line-strong: rgba(20, 19, 17, 0.14);
  --text: #141311;
  --muted: #676159;
  --muted-strong: #302b26;
  --gold: #b58b34;
  --gold-light: #d6b56b;
  --gold-deep: #86641f;
  --danger: #ffb4a8;
  --shadow: 0 24px 60px rgba(40, 33, 24, 0.08);
  --radius: 22px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-meta: "Cormorant SC", Georgia, serif;
  --font-script: "Dancing Script", "Segoe Script", cursive;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.living-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.82;
  mix-blend-mode: normal;
}

.living-background::selection { background: transparent; }

main {
  position: relative;
  z-index: 1;
}

.cta-short { display: none; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 50% 32%, rgba(181, 139, 52, 0.14), transparent 22rem),
    linear-gradient(180deg, #faf7f2 0%, #f2eee7 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.is-loaded #preloader {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.preloader-logo {
  width: min(240px, 42vw);
  height: auto;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.preloader-line {
  width: min(180px, 40vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 139, 52, 0.9), transparent);
  transform: scaleX(0.22);
  transform-origin: center;
}

.preloader-text {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(181, 139, 52, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 139, 52, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.72));
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 240, 179, 0.62), transparent 42%),
    linear-gradient(180deg, rgba(242, 203, 107, 0.94), rgba(195, 139, 32, 0.72));
  border-bottom: 1px solid rgba(134, 100, 31, 0.34);
  backdrop-filter: blur(22px) saturate(120%);
  box-shadow: 0 1px 0 rgba(255, 248, 218, 0.54), 0 16px 40px rgba(120, 88, 28, 0.12);
}

.site-header.is-scrolled {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 238, 170, 0.56), transparent 44%),
    linear-gradient(180deg, rgba(232, 190, 85, 0.96), rgba(181, 126, 28, 0.76));
  box-shadow: 0 1px 0 rgba(255, 248, 218, 0.58), 0 18px 42px rgba(120, 88, 28, 0.14);
}

.brand { display: flex; align-items: center; min-width: 96px; }
.brand-logo {
  display: block;
  width: clamp(74px, 8vw, 96px);
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(25, 22, 18, 0.08));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin-left: auto;
  padding: 0.3rem;
  color: var(--muted);
  font-size: 0.88rem;
  border: 1px solid rgba(181, 139, 52, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.nav a {
  padding: 0.52rem 0.76rem;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover { color: var(--text); background: rgba(20, 19, 17, 0.045); transform: translateY(-1px); }

.header-cta, .primary-btn, .secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9rem 1.16rem;
  border-radius: 999px;
  font-family: var(--font-meta);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta, .primary-btn {
  border: 1px solid rgba(20, 19, 17, 0.88);
  color: #f8f5f0;
  background: linear-gradient(135deg, #191715 0%, #23201d 100%);
  box-shadow: 0 14px 30px rgba(20, 19, 17, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.secondary-btn {
  border: 1px solid rgba(20, 19, 17, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.header-cta:hover, .primary-btn:hover, .secondary-btn:hover { transform: translateY(-2px); }

.section { padding: clamp(4.8rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); }

main,
.section,
.hero,
.site-header {
  width: 100%;
  max-width: 100vw;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(4.5rem, 7vw, 7.5rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.orb-1 {
  width: 460px;
  height: 460px;
  top: -130px;
  right: -90px;
  background: radial-gradient(circle, rgba(181, 139, 52, 0.18), transparent 72%);
}

.orb-2 {
  width: 380px;
  height: 380px;
  left: -110px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(143, 135, 122, 0.14), transparent 74%);
}

.hero-copy,
.route-panel,
.section-heading,
.lead-form,
.structure-box,
.method-layout {
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  right: clamp(1rem, 5vw, 5rem);
  top: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 139, 52, 0.38), transparent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-family: var(--font-meta);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1, h2 { font-family: var(--font-display); }
h1 { max-width: 980px; font-size: clamp(3.6rem, 7.2vw, 8rem); }
h2 { max-width: 920px; font-size: clamp(2.45rem, 4.4vw, 4.9rem); }
h3 { font-family: var(--font-body); font-size: clamp(1.1rem, 1.35vw, 1.35rem); line-height: 1.18; font-weight: 800; }

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

.hero-eyebrow {
  margin-bottom: 1.8rem;
}

.hero-title {
  position: relative;
  isolation: isolate;
  overflow: visible;
  max-width: 760px;
  font-size: clamp(2.85rem, 5.45vw, 6.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.014em;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 0;
}

.hero-title::after {
  content: "";
  display: block;
  width: clamp(92px, 14vw, 170px);
  height: 1px;
  margin-top: clamp(1rem, 1.45vw, 1.35rem);
  background: linear-gradient(90deg, rgba(181, 139, 52, 0.72), rgba(181, 139, 52, 0));
  transform-origin: left center;
  animation: heroTitleRule 3.6s var(--ease, ease) infinite;
}

.hero-word {
  position: relative;
  display: inline-block;
  margin-right: 0.16em;
  overflow: visible;
  z-index: inherit;
}

.hero-line {
  position: relative;
  display: block;
  overflow: visible;
  line-height: 0.98;
  padding: 0.08em 0 0.16em;
  margin: -0.08em 0 -0.1em;
}

.hero-line:first-child {
  z-index: 30;
}

.hero-line-middle {
  margin-top: 0.045em;
  z-index: 20;
}

.hero-line-final {
  margin-top: 0.02em;
  margin-bottom: 0;
  padding-bottom: 0.2em;
  padding-left: 0;
  z-index: 10;
}

.hero-line .hero-word:last-child {
  margin-right: 0;
}

.hero-word-inner {
  position: relative;
  display: inline-block;
  z-index: inherit;
}

.hero-accent {
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-style: normal;
  letter-spacing: 0.012em;
}

.hero-title-secondary {
  max-width: 650px;
  margin: 1rem 0 0;
  color: #635d55;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2.25vw, 2.35rem);
  font-style: italic;
  line-height: 1.24;
}

@keyframes heroTitleRule {
  0%, 100% { transform: scaleX(0.78); opacity: 0.45; }
  45% { transform: scaleX(1); opacity: 0.86; }
}

.hero-subtitle,
.section-heading p,
.situation-card p,
.solution-card p,
.steps p,
.structure-box p,
.footer p,
.form-note {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 660px;
  margin: 1.7rem 0 0;
  color: #3d3832;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-microproof span {
  padding: 0.48rem 0.65rem;
  border: 1px solid rgba(243, 213, 143, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-family: var(--font-meta);
  text-transform: uppercase;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-assurance span {
  padding: 0.48rem 0.65rem;
  border: 1px solid rgba(243, 213, 143, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.route-panel,
.solution-card,
.situation-card,
.friction-card,
.structure-box,
.lead-form,
.steps > div {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 235, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.route-panel {
  position: relative;
  min-height: 500px;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
}

.route-panel::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 12%, rgba(181, 139, 52, 0.12), transparent 32%),
    radial-gradient(circle at 18% 90%, rgba(255, 255, 255, 0.72), transparent 28%);
}

.panel-kicker {
  color: var(--gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: var(--font-meta);
  font-weight: 600;
}

.route-panel h2 { margin-top: 0.55rem; font-size: clamp(2.1rem, 3.4vw, 3.8rem); }
.route-panel p { max-width: 500px; margin: 0.8rem 0 0; color: var(--muted); }

.route-map {
  position: relative;
  min-height: 220px;
  margin-top: -0.55rem;
  margin-bottom: -1.8rem;
}

.decision-desk {
  min-height: 280px;
  margin-top: 1.2rem;
  margin-bottom: 1.1rem;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 26%, rgba(181, 139, 52, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(244, 240, 232, 0.36));
  border: 1px solid rgba(20, 19, 17, 0.07);
}

.desk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 19, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 17, 0.038) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 58% 48%, black, transparent 78%);
}

.desk-dossier,
.desk-routes,
.desk-stack,
.desk-orbit {
  position: absolute;
  z-index: 1;
}

.desk-dossier {
  left: 5%;
  top: 8%;
  width: min(220px, 48%);
  padding: 1rem;
  border: 1px solid rgba(20, 19, 17, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(45, 36, 24, 0.08);
}

.desk-label,
.stack-label {
  display: block;
  margin-bottom: 0.72rem;
  color: var(--gold);
  font-family: var(--font-meta);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.desk-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.46rem 0;
  border-top: 1px solid rgba(20, 19, 17, 0.08);
  color: #29251f;
  font-size: 0.74rem;
}

.desk-row span {
  color: var(--muted);
}

.desk-row b {
  font-weight: 600;
  text-align: right;
  max-width: 54%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desk-orbit {
  left: 48%;
  top: 27%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(181, 139, 52, 0.34);
  border-radius: 999px;
}

.desk-orbit::before,
.desk-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(20, 19, 17, 0.1);
  border-radius: inherit;
}

.desk-orbit::after {
  inset: 38px;
  border-color: rgba(181, 139, 52, 0.26);
}

.desk-seal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(20, 19, 17, 0.75);
  background: rgba(250, 247, 241, 0.92);
  color: #151311;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(41, 33, 23, 0.1);
}

.orbit-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(181, 139, 52, 0.12);
}

.dot-a { left: 13px; top: 42px; }
.dot-b { right: 18px; top: 26px; }
.dot-c { right: 35px; bottom: 14px; }

.desk-routes {
  right: 5%;
  top: 12%;
  width: min(230px, 44%);
  display: grid;
  gap: 0.55rem;
}

.route-option {
  padding: 0.65rem 0.74rem 0.72rem;
  border: 1px solid rgba(20, 19, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(45, 36, 24, 0.06);
}

.route-option span {
  display: block;
  margin-bottom: 0.42rem;
  color: #2f2a24;
  font-size: 0.72rem;
  font-weight: 600;
}

.route-option i {
  display: block;
  width: var(--route-size);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  transform-origin: left center;
}

.route-option.muted {
  opacity: 0.72;
}

.route-option.active {
  border-color: rgba(181, 139, 52, 0.42);
  background: rgba(255, 249, 235, 0.86);
}

.desk-stack {
  left: 22%;
  right: 7%;
  bottom: 8%;
  height: 104px;
}

.stack-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(270px, 72%);
  height: 58px;
  border: 1px solid rgba(20, 19, 17, 0.52);
  background: rgba(255, 255, 255, 0.78);
  transform: skewX(-16deg);
  box-shadow: 0 16px 34px rgba(45, 36, 24, 0.08);
}

.sheet-back { right: 34px; bottom: 32px; opacity: 0.54; }
.sheet-mid { right: 17px; bottom: 16px; opacity: 0.74; }

.sheet-front {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1rem;
  border-color: rgba(181, 139, 52, 0.72);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 224, 0.82));
  transform: skewX(-16deg);
}

.sheet-front span,
.sheet-front b {
  display: block;
  transform: skewX(16deg);
}

.sheet-front span {
  color: var(--muted);
  font-size: 0.72rem;
}

.sheet-front b {
  color: #171411;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.decision-desk {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.86fr);
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
  padding: 1.1rem;
}

.desk-dossier,
.desk-routes,
.desk-stack {
  position: relative;
  z-index: 2;
}

.desk-dossier {
  left: auto;
  top: auto;
  width: auto;
}

.desk-routes {
  right: auto;
  top: auto;
  width: auto;
}

.desk-stack {
  grid-column: 1 / -1;
  left: auto;
  right: auto;
  bottom: auto;
  height: 118px;
}

.desk-orbit {
  z-index: 0;
  left: 54%;
  top: 49%;
  opacity: 0.36;
  pointer-events: none;
}

.stack-label {
  margin-bottom: 0.36rem;
}

.stack-sheet {
  width: min(320px, 68%);
}

.route-svg {
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: visible;
}

.route-path {
  fill: none;
  stroke: url("#routeGold");
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 0;
  opacity: 0.88;
}

.insight-svg {
  filter: saturate(1.02);
  transform: translateY(-52px) scale(0.98);
  transform-origin: center top;
}

.insight-grid path {
  fill: none;
  stroke: rgba(20, 19, 17, 0.05);
  stroke-width: 1;
}

.insight-line,
.asset-line {
  fill: none;
  stroke: url("#routeGold");
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 0;
  opacity: 0.9;
}

.route-path.insight-route {
  fill: none;
  stroke-width: 3.2;
  stroke-dasharray: 680;
  stroke-dashoffset: 0;
}

.eye-outline {
  fill: rgba(255, 255, 255, 0.74);
}

.insight-dot,
.route-dot {
  fill: var(--gold);
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(181, 139, 52, 0.25));
}

.scenario-cards,
.scenario-card,
.strategy-map,
.comparison-matrix,
.structure-stack,
.capital-node {
  transform-box: fill-box;
  transform-origin: center;
}

.card-rule,
.matrix-axis {
  stroke: #151311;
  opacity: 0.62;
}

.card-frame {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(20, 19, 17, 0.5);
}

.card-b .card-frame {
  fill: rgba(255, 248, 230, 0.74);
}

.decision-lane {
  fill: none;
  stroke: rgba(20, 19, 17, 0.18);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 0;
}

.asset-line {
  stroke-width: 2.4;
}

.matrix-frame,
.stack-layer,
.capital-node .asset-line {
  stroke: #151311;
  opacity: 0.78;
}

.matrix-bar,
.matrix-signal,
.approval-line {
  stroke: url("#routeGold");
}

.matrix-frame,
.stack-layer {
  fill: rgba(255, 255, 255, 0.58);
}

.layer-mid {
  fill: rgba(255, 248, 230, 0.64);
}

.layer-top {
  fill: url("#softGoldFill");
}

.approval-line {
  stroke-width: 3;
}

.route-node circle {
  fill: rgba(255, 255, 255, 0.94);
  stroke: var(--gold-deep);
  stroke-width: 2;
  filter: drop-shadow(0 8px 18px rgba(50, 42, 30, 0.08));
}

.route-node text {
  fill: var(--gold-light);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 900;
  text-anchor: middle;
}

.route-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: 0.2rem;
}

.route-legend span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(20, 19, 17, 0.1);
  border-radius: 999px;
  color: #3b352f;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
  font-family: var(--font-meta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-strip {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(1rem, 5vw, 5rem);
  padding: 0.95rem 0;
  border-top: 1px solid rgba(20, 19, 17, 0.08);
  border-bottom: 1px solid rgba(20, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 1;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, #f4f1eb, transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(-90deg, #f4f1eb, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeRun 28s linear infinite;
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 2.4rem;
  white-space: nowrap;
  color: #5d564f;
  font-family: var(--font-meta);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mq-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-heading { max-width: 1020px; margin-bottom: 2.3rem; }
.section-heading p { max-width: 760px; margin: 1rem 0 0; font-size: 1.08rem; }

.signature-section { padding-top: clamp(3.6rem, 6vw, 5rem); }

.signature-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.35rem, 3.6vw, 2.4rem);
  border: 1px solid rgba(20, 19, 17, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 18%, rgba(181, 139, 52, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 234, 0.84));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signature-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(20, 19, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 58% 46%, rgba(181, 139, 52, 0.15), transparent 34%),
    radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.84), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 241, 234, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.signature-visual::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(181, 139, 52, 0.07);
  pointer-events: none;
}

.signature-visual::after {
  content: "";
  position: absolute;
  inset: auto 14% 18% 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 139, 52, 0.42), transparent);
  pointer-events: none;
}

.signature-svg {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.signature-frame,
.signature-accent,
.signature-sweep {
  fill: none;
  stroke: url("#signatureFrameInk");
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  opacity: 0.78;
}

.signature-accent {
  stroke: url("#signatureGold");
  opacity: 0.92;
}

.signature-rule-top,
.signature-rule-bottom {
  stroke-width: 2.5;
  opacity: 0.74;
}

.signature-monogram {
  transform-box: fill-box;
  transform-origin: center;
}

.signature-letter {
  fill: url("#signatureInk");
  font-family: var(--font-display);
  font-size: 210px;
  font-weight: 900;
  font-kerning: normal;
}

.signature-letter-z {
  letter-spacing: 0;
}

.signature-letter-r {
  letter-spacing: 0;
}

.signature-mark {
  fill: none;
  stroke: url("#signatureGold");
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.92;
}

.signature-copy p { max-width: 720px; color: var(--muted); font-size: 1.06rem; }

.signature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.signature-points div {
  display: grid;
  gap: 0.38rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(20, 19, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.signature-points strong {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-points span { color: var(--muted-strong); }

.friction-section { padding-top: clamp(3.4rem, 6vw, 5rem); }

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

.friction-card {
  position: relative;
  min-height: 220px;
  padding: 1.45rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.friction-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.friction-card p { margin: 0.9rem 0 0; color: var(--muted); }

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

.situation-card,
.solution-card {
  position: relative;
  min-height: 250px;
  padding: 1.45rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.situation-card::before,
.solution-card::before,
.friction-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 139, 52, 0.34), transparent);
}

.situation-card::after,
.solution-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -54px;
  bottom: -54px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(181, 139, 52, 0.08), transparent 70%);
  transition: transform 260ms ease;
}

.situation-card:hover,
.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(181, 139, 52, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 234, 0.9));
  box-shadow: 0 20px 52px rgba(37, 31, 24, 0.1);
}

.situation-card:hover::after,
.solution-card:hover::after { transform: scale(1.2); }

.situation-card span,
.card-index {
  display: inline-block;
  margin-bottom: 1.35rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.situation-card p,
.solution-card p { margin: 1rem 0 0; }

.method-section { padding-top: clamp(5rem, 8vw, 8rem); }

.method-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  align-items: stretch;
}

.method-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 19, 17, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(181, 139, 52, 0.16), transparent 27%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.8), transparent 30%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(245, 241, 234, 0.74));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 22px 60px rgba(42, 35, 26, 0.06);
}

.method-grid {
  position: absolute;
  inset: 1.2rem;
  background-image:
    linear-gradient(rgba(20, 19, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 17, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

.method-flow {
  position: absolute;
  inset: 10%;
  opacity: 0.9;
}

.method-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 139, 52, 0.54), rgba(20, 19, 17, 0.12), transparent);
  transform-origin: center;
}

.line-one { top: 28%; transform: rotate(-12deg); }
.line-two { top: 50%; transform: rotate(0deg); }
.line-three { top: 72%; transform: rotate(12deg); }

.method-flow::before,
.method-flow::after {
  content: "";
  position: absolute;
  inset: 17% 14%;
  border: 1px solid rgba(181, 139, 52, 0.18);
  border-radius: 999px;
  transform: rotateX(62deg);
}

.method-flow::after {
  inset: 28% 24%;
  border-color: rgba(20, 19, 17, 0.08);
  animation: orbitSpin 28s linear infinite reverse;
}

.method-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(181, 139, 52, 0.34);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 3.05rem;
  font-weight: 700;
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(42, 35, 26, 0.1), 0 0 0 14px rgba(181, 139, 52, 0.045);
}

.method-stage {
  position: absolute;
  z-index: 3;
  min-width: 128px;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(20, 19, 17, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(42, 35, 26, 0.07);
  transform: translate3d(0, 0, 0);
}

.method-stage span {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--gold);
  font-family: var(--font-meta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.method-stage strong {
  display: block;
  color: #2b251e;
  font-size: 0.82rem;
  font-weight: 700;
}

.method-stage-one { left: 9%; top: 14%; }
.method-stage-two { right: 9%; top: 18%; }
.method-stage-three { left: 7%; top: 54%; }
.method-stage-four { right: 8%; top: 58%; }
.method-stage-five { left: 50%; bottom: 10%; min-width: 152px; translate: -50% 0; }

.method-pulse {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(181, 139, 52, 0.1);
  animation: methodPulse 3.8s ease-in-out infinite;
}

.pulse-one { left: 24%; top: 33%; }
.pulse-two { right: 24%; top: 47%; animation-delay: 0.9s; }
.pulse-three { left: 50%; bottom: 29%; animation-delay: 1.8s; }

@keyframes methodPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.45; }
  45% { transform: scale(1.25); opacity: 1; }
}

.steps { display: grid; gap: 0.9rem; }

.steps > div {
  position: relative;
  display: grid;
  gap: 0.38rem;
  padding: 1.2rem 1.25rem 1.2rem 4.2rem;
  border-radius: 20px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.steps > div:hover { transform: translateX(4px); border-color: rgba(181, 139, 52, 0.28); }

.steps span {
  position: absolute;
  left: 1.25rem;
  top: 1.2rem;
  color: var(--gold-light);
  font-weight: 900;
  font-size: 0.8rem;
}

.steps strong { font-size: 1.1rem; }
.steps p { margin: 0; }

.operation-section { padding-top: 2.4rem; }

.operation-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.operation-layers,
.operation-notes {
  display: grid;
  gap: 1rem;
}

.operation-layers {
  position: relative;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border: 1px solid rgba(20, 19, 17, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 14%, rgba(181, 139, 52, 0.1), transparent 20rem),
    linear-gradient(rgba(20, 19, 17, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 17, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 234, 0.84));
  background-size: auto, 44px 44px, 44px 44px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.operation-layers::before {
  content: "";
  position: absolute;
  left: clamp(2.2rem, 4vw, 3rem);
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: linear-gradient(transparent, rgba(181, 139, 52, 0.45), transparent);
}

.operation-layers::after {
  content: "";
  position: absolute;
  left: clamp(2.2rem, 4vw, 3rem);
  top: 3rem;
  width: 1px;
  height: 36%;
  background: linear-gradient(transparent, var(--gold), transparent);
  animation: operationTrace 5.8s ease-in-out infinite;
}

.operation-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.36rem;
  min-height: 104px;
  padding: 1rem 1.1rem 1rem 4.25rem;
  border: 1px solid rgba(20, 19, 17, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(42, 35, 26, 0.055);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.operation-stage:hover {
  transform: translateX(0.35rem);
  border-color: rgba(181, 139, 52, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 44px rgba(42, 35, 26, 0.075);
}

.operation-stage::after {
  content: "";
  position: absolute;
  inset: auto 1.15rem -1px 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(181, 139, 52, 0.36), transparent);
}

.operation-stage span {
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(181, 139, 52, 0.24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 7px rgba(181, 139, 52, 0.055);
}

.operation-stage strong {
  max-width: 18ch;
  font-size: 1.06rem;
  line-height: 1.15;
}

.operation-stage p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.stage-one,
.stage-two,
.stage-three,
.stage-four { transform: translateX(0); }

@keyframes operationTrace {
  0%, 100% { transform: translateY(-18%); opacity: 0; }
  18%, 72% { opacity: 0.82; }
  52% { transform: translateY(86%); }
}

.operation-notes article,
.faq-item {
  border: 1px solid rgba(20, 19, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 234, 0.84));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.operation-notes article {
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border-radius: 24px;
}

.operation-notes span {
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.operation-notes h3,
.faq-item h3 {
  margin-top: 0.8rem;
}

.operation-notes p,
.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.solution-card { min-height: 285px; }

.structure-section { padding-top: 2rem; }

.structure-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 30px;
}

.structure-box p { max-width: 860px; font-size: 1.08rem; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.trust-list span {
  padding: 0.54rem 0.76rem;
  border: 1px solid rgba(20, 19, 17, 0.1);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.network-map {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 181, 107, 0.2), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(181, 139, 52, 0.08), transparent 42%),
    linear-gradient(rgba(20, 19, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 17, 0.024) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  border: 1px solid rgba(20, 19, 17, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), var(--shadow);
  overflow: hidden;
}

.network-map::before,
.network-map::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(181, 139, 52, 0.12);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.network-map::after {
  inset: 25% 21%;
  border-color: rgba(20, 19, 17, 0.07);
  transform: rotate(12deg);
}

.network-ring,
.network-orbit-dot {
  position: absolute;
  pointer-events: none;
}

.network-ring {
  left: 50%;
  top: 50%;
  width: min(52%, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(181, 139, 52, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.ring-two {
  width: min(70%, 342px);
  border-color: rgba(20, 19, 17, 0.055);
  transform: translate(-50%, -50%) rotate(18deg);
}

.network-orbit-dot {
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(181, 139, 52, 0.08);
  animation: networkPulse 3.6s ease-in-out infinite;
}

.dot-one { left: 27%; top: 34%; }
.dot-two { right: 27%; bottom: 33%; animation-delay: 1.4s; }

.network-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 104px;
  min-height: 46px;
  padding: 0.58rem 0.86rem;
  border: 1px solid rgba(20, 19, 17, 0.105);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(42, 35, 26, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.network-node.center {
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  min-width: 86px;
  border-color: rgba(181, 139, 52, 0.18);
  color: var(--gold-light);
  background:
    radial-gradient(circle at 36% 25%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 2.35rem;
  box-shadow: 0 18px 44px rgba(42, 35, 26, 0.09), 0 0 0 12px rgba(181, 139, 52, 0.04);
  transform: translate(-50%, -50%);
}

.n1 { left: 8%; top: 17%; }
.n2 { right: 8%; top: 21%; }
.n3 { left: 10%; bottom: 17%; }
.n4 { right: 8%; bottom: 16%; }

.network-line {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, rgba(181, 139, 52, 0.48), rgba(181, 139, 52, 0.08), transparent);
  transform-origin: left center;
  opacity: 0.72;
}

.network-line::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(214, 181, 107, 0.82), transparent);
  animation: networkTrace 4.8s ease-in-out infinite;
}

.l1 { transform: rotate(206deg); }
.l2 { transform: rotate(326deg); }
.l3 { transform: rotate(147deg); }
.l4 { transform: rotate(31deg); }
.l2::after { animation-delay: 0.7s; }
.l3::after { animation-delay: 1.4s; }
.l4::after { animation-delay: 2.1s; }

@keyframes networkTrace {
  0%, 100% { transform: translateX(0); opacity: 0; }
  18%, 72% { opacity: 0.72; }
  58% { transform: translateX(210%); }
}

@keyframes networkPulse {
  0%, 100% { transform: scale(0.76); opacity: 0.42; }
  48% { transform: scale(1.22); opacity: 0.95; }
}

.contact-section { padding-top: 2rem; }

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1040px;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 28px;
}

.form-intro,
.lead-form .full,
.form-submit,
.form-status,
.form-note { grid-column: 1 / -1; }

.form-intro {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(20, 19, 17, 0.08);
}

.form-intro span {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-intro strong { font-size: 1.05rem; }

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(20, 19, 17, 0.12);
  border-radius: 16px;
  padding: 0.98rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 4px rgba(181, 139, 52, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

select option { background: #ffffff; color: var(--text); }
textarea { resize: vertical; }
.form-submit { border: 0; cursor: pointer; justify-self: start; }
.form-status { color: var(--muted); align-self: center; margin: 0; }
.form-note { margin: 0; font-size: 0.86rem; }

.faq-section { padding-top: 2.2rem; }

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border-radius: 24px;
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: #201a12;
  border-top: 1px solid rgba(134, 100, 31, 0.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 240, 179, 0.62), transparent 42%),
    linear-gradient(180deg, rgba(242, 203, 107, 0.94), rgba(195, 139, 32, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 248, 218, 0.54), 0 -16px 40px rgba(120, 88, 28, 0.1);
}

.footer-logo { width: 88px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(64, 45, 12, 0.12)); }
.footer p { max-width: 960px; margin: 0; color: rgba(32, 26, 18, 0.78); font-size: 0.9rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (pointer: fine) {
  .primary-btn,
  .secondary-btn,
  .solution-card,
  .situation-card,
  .friction-card,
  .faq-item {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  }
}

@keyframes orbitSpin {
  from { transform: rotateX(64deg) rotateZ(0deg); }
  to { transform: rotateX(64deg) rotateZ(360deg); }
}

@media (max-width: 1120px) {
  .signature-points,
  .friction-grid,
  .situation-grid, .premium-grid, .faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operation-shell { grid-template-columns: 1fr; }
  .stage-two,
  .stage-three,
  .stage-four { transform: translateX(0); }
  .solution-card { min-height: 240px; }
}

@media (max-width: 920px) {
  .nav { display: none; }
  .hero, .method-layout, .structure-box, .signature-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; overflow-x: clip; }
  .method-visual { min-height: 460px; }
  .network-map { min-height: 330px; }
  .network-node { min-width: 96px; font-size: 0.78rem; }
  .network-node.center { width: 76px; height: 76px; min-width: 76px; font-size: 2rem; }
  .n1 { left: 6%; top: 14%; }
  .n2 { right: 6%; top: 18%; }
  .n3 { left: 7%; bottom: 16%; }
  .n4 { right: 6%; bottom: 14%; }
  .operation-shell,
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 66px; align-items: center; gap: 0.6rem; padding-inline: 0.75rem; }
  .brand { min-width: 108px; }
  .brand-logo { width: 76px; height: 52px; }
  .header-cta {
    width: 76px;
    min-width: 76px;
    min-height: 40px;
    padding: 0.64rem 0.42rem;
    font-size: 0.63rem;
    white-space: nowrap;
  }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .section { padding-inline: 1rem; }
  .hero { padding-top: 4.4rem; gap: 1.5rem; }
  .hero-copy,
  .route-panel,
  .hero-subtitle,
  .section-heading,
  .lead-form { max-width: 100%; }
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.16;
  }
  .hero-line { line-height: 1; padding: 0.07em 0 0.15em; margin: -0.07em 0 -0.08em; }
  .hero-line-middle { margin-top: 0.035em; }
  .hero-line-final { margin-top: 0.02em; padding-left: 0; padding-bottom: 0.2em; }
  h2 { font-size: clamp(2.05rem, 8.8vw, 2.8rem); }
  .hero-title-secondary { font-size: clamp(1.35rem, 7vw, 2rem); }
  .hero-actions { flex-direction: column; }
  .primary-btn, .secondary-btn { width: 100%; }
  .route-panel { min-height: 430px; }
  .route-map, .route-svg { min-height: 200px; }
  .decision-desk {
    min-height: 470px;
    margin-top: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0.72rem;
    padding: 1rem;
  }
  .desk-dossier {
    left: auto;
    top: auto;
    width: auto;
  }
  .desk-orbit {
    left: 78%;
    top: 26%;
    width: 104px;
    height: 104px;
    opacity: 0.62;
  }
  .desk-seal {
    width: 48px;
    height: 48px;
    font-size: 1.12rem;
  }
  .desk-routes {
    left: auto;
    right: auto;
    top: auto;
    width: auto;
  }
  .desk-stack {
    left: auto;
    right: auto;
    bottom: auto;
    height: 118px;
  }
  .desk-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.08rem;
  }
  .desk-row b {
    max-width: 100%;
    text-align: left;
  }
  .stack-label { margin-bottom: 0.42rem; }
  .stack-sheet {
    left: 0;
    right: auto;
    width: 84%;
    height: 52px;
  }
  .sheet-back { left: 0; right: auto; }
  .sheet-mid { left: 14px; right: auto; }
  .sheet-front { left: 28px; right: auto; }
  .sheet-front b {
    letter-spacing: 0.14em;
    white-space: nowrap;
  }
  .insight-svg { transform: translateY(-22px) translateX(-8px) scale(0.88); }
  .route-panel h2 { font-size: clamp(2rem, 8vw, 2.55rem); }
  .marquee-strip { margin-inline: 1rem; }
  .signature-visual,
  .signature-svg { min-height: 280px; }
  .method-visual {
    min-height: 560px;
  }
  .method-core {
    width: 96px;
    height: 96px;
    font-size: 2.35rem;
  }
  .method-stage {
    min-width: 112px;
    padding: 0.56rem 0.62rem;
  }
  .method-stage strong {
    font-size: 0.76rem;
  }
  .method-stage-one { left: 7%; top: 8%; }
  .method-stage-two { right: 7%; top: 20%; }
  .method-stage-three { left: 7%; top: 44%; }
  .method-stage-four { right: 7%; top: 56%; }
  .method-stage-five { bottom: 8%; }
  .pulse-one { left: 23%; top: 30%; }
  .pulse-two { right: 24%; top: 45%; }
  .pulse-three { bottom: 25%; }
  .signature-points,
  .friction-grid, .situation-grid, .premium-grid, .lead-form { grid-template-columns: 1fr; }
  .situation-card, .solution-card { min-height: auto; }
  .steps > div { padding-left: 3.75rem; }
  .operation-layers { padding: 0.9rem; }
  .operation-layers::before,
  .operation-layers::after {
    left: 2rem;
  }
  .operation-stage {
    min-height: auto;
    padding: 1rem 1rem 1rem 3.85rem;
  }
  .operation-stage strong { max-width: 100%; }
  .operation-stage p {
    max-width: 100%;
    font-size: 0.88rem;
  }
  .operation-notes article,
  .faq-item { padding: 1.05rem; }
  .network-map {
    min-height: 360px;
    border-radius: 22px;
  }
  .network-node {
    width: 96px;
    min-width: 92px;
    min-height: 40px;
    padding: 0.52rem 0.62rem;
    font-size: 0.74rem;
  }
  .network-node.center {
    width: 72px;
    height: 72px;
    min-width: 72px;
    font-size: 1.86rem;
  }
  .n1 { left: calc(50% - 48px); top: 8%; }
  .n2 { right: 5%; top: 34%; }
  .n3 { left: 5%; bottom: 34%; }
  .n4 { left: calc(50% - 48px); right: auto; bottom: 8%; }
  .l1 { transform: rotate(270deg); width: 34%; }
  .l2 { transform: rotate(342deg); width: 36%; }
  .l3 { transform: rotate(158deg); width: 36%; }
  .l4 { transform: rotate(90deg); width: 34%; }
  .form-submit { justify-self: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .route-path { stroke-dashoffset: 0; }
  .marquee-track { animation: none; }
  .living-background { display: none; }
}
