/* =========================================================
   Голос Бренда — Editorial / data-driven redesign
   ========================================================= */

:root {
  --bg: #F4F0E8;
  --bg-alt: #EBE5D8;
  --fg: #0E0E0C;
  --fg-muted: #6B6862;
  --rule: #D9D2C2;
  --card: #FBF8F1;
  --accent: #C8553D;

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--fg);
  background: var(--card);
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--fg);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--fg-muted);
}
.nav-links a {
  position: relative;
  transition: color 0.15s var(--ease);
}
.nav-links a:hover { color: var(--fg); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 95% 8%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 40%),
    radial-gradient(circle at 0% 70%, color-mix(in oklab, var(--accent) 6%, transparent), transparent 35%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  background: var(--card);
  margin-bottom: 36px;
  position: relative;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: pulse 1.6s ease-out infinite;
}
.pulse-sm { width: 6px; height: 6px; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 8.6vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 56px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-num {
  display: block;
  font-feature-settings: "ss01", "tnum";
  font-weight: 500;
  font-size: clamp(96px, 16vw, 220px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--accent);
}
.hero-num-unit { font-size: 0.45em; vertical-align: 0.4em; }
.hero-num-label {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  margin-top: 16px;
  max-width: 22ch;
  color: var(--fg);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.metric {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--rule);
}
.metric:nth-child(2) { padding-left: 24px; }
.metric:last-child { border-right: none; padding-left: 24px; }
.metric-value {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.metric-label {
  font-size: 14px;
  color: var(--fg);
  margin-top: 14px;
  font-weight: 500;
}
.metric-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .hero-metrics { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--rule); padding: 22px 0 !important; }
  .metric:last-child { border-bottom: none; }
}

/* =========================================================
   Proof strip
   ========================================================= */
.proof-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-alt);
  padding: 18px 0;
  overflow: hidden;
}
.proof-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.proof-marquee {
  display: flex;
  gap: 12px;
  animation: scroll-x 38s linear infinite;
  white-space: nowrap;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.proof-chip {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--fg);
  padding: 0 12px;
  position: relative;
}
.proof-chip:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -2px;
  color: var(--accent);
}

/* =========================================================
   Section heads
   ========================================================= */
.section-head {
  margin-bottom: 64px;
  max-width: 60ch;
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kicker-light { color: color-mix(in oklab, var(--bg) 70%, transparent); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.section-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 58ch;
  margin: 0;
}

/* =========================================================
   Live audit
   ========================================================= */
.audit {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.audit-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px;
  position: relative;
}
.audit-input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.audit-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.audit-input-icon {
  position: absolute;
  left: 18px;
  color: var(--fg-muted);
  pointer-events: none;
  display: flex;
}
.audit-input {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 17px;
  padding: 16px 20px 16px 48px;
  border-radius: 999px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}
.audit-input:focus { border-color: var(--fg); }

.audit-empty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.result-tile {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.result-tile:last-child { border-right: none; }
.result-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
}
.result-value {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: 14px;
  color: var(--fg);
}
.result-tile.tone-warn .result-value { color: var(--accent); }
.result-tile.tone-ok .result-value { color: var(--fg); }
.result-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  font-family: var(--mono);
}

@media (max-width: 760px) {
  .audit-empty-grid { grid-template-columns: repeat(2, 1fr); }
  .result-tile:nth-child(2n) { border-right: none; }
  .result-tile:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .audit-input-row { flex-direction: column; }
}

.audit-scanning {
  padding: 36px 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.scan-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.scan-line {
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  animation: scan 1.4s var(--ease) infinite alternate;
  opacity: 0.6;
}
@keyframes scan {
  from { transform: translateX(-15%); opacity: 0.2; }
  to { transform: translateX(15%); opacity: 0.85; }
}
.audit-scan-text {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.audit-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin: 20px 0 0;
  font-family: var(--mono);
}

/* =========================================================
   Services
   ========================================================= */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.svc-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: transparent;
  transition: background 0.2s var(--ease);
}
.svc-card:hover { background: var(--card); }
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}
.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  border-radius: 999px;
}
.svc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
}
.svc-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0 0 24px;
}
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.svc-bullets li {
  font-size: 13px;
  color: var(--fg);
  padding-left: 18px;
  position: relative;
  font-family: var(--mono);
}
.svc-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.svc-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.svc-metric-v {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svc-metric-l {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } .svc-bullets { grid-template-columns: 1fr; } }

/* =========================================================
   Process
   ========================================================= */
.process {
  padding: 120px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.proc-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr 60px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: padding 0.2s var(--ease);
}
.proc-row:hover { padding-left: 12px; }
.proc-n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.proc-w {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.proc-text {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0;
  max-width: 64ch;
}
.proc-arrow {
  color: var(--fg-muted);
  transition: color 0.2s, transform 0.2s var(--ease);
  justify-self: end;
}
.proc-row:hover .proc-arrow {
  color: var(--accent);
  transform: translateX(6px);
}

@media (max-width: 880px) {
  .proc-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .proc-w { grid-column: 2; margin-bottom: -12px; }
  .proc-arrow { display: none; }
}

/* =========================================================
   Cases
   ========================================================= */
.cases { padding: 120px 0; border-bottom: 1px solid var(--rule); }
.cases-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.case-row {
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.case-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.case-tag { color: var(--accent); }
.case-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.case-summary {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 58ch;
}
.case-bottom {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px dashed var(--rule);
}
.case-chart {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 8px 12px;
}
.sparkline {
  width: 100%;
  height: auto;
  display: block;
}
.spark-label {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--fg-muted);
}
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
}
.case-metric {
  padding: 8px 24px;
  border-right: 1px solid var(--rule);
}
.case-metric:last-child { border-right: none; }
.case-metric-v {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
}
.case-metric-l {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media (max-width: 880px) {
  .case-bottom { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); border-left: none; border-top: 1px solid var(--rule); padding-top: 16px; }
  .case-metric { padding: 8px 12px; }
  .case-metric:first-child { padding-left: 0; }
}

/* =========================================================
   Industries
   ========================================================= */
.industries { padding: 120px 0; border-bottom: 1px solid var(--rule); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.ind-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: background 0.18s;
}
.ind-cell:hover { background: var(--card); }
.ind-n {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}
.ind-v {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) { .ind-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 120px 0; background: var(--bg-alt); border-bottom: 1px solid var(--rule); }
.faq-list { border-top: 1px solid var(--rule); }
.faq-row { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--fg);
  transition: padding 0.2s var(--ease);
}
.faq-q:hover { padding-left: 8px; }
.faq-q-n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.faq-q-text { letter-spacing: -0.015em; line-height: 1.2; }
.faq-q-icon {
  color: var(--fg-muted);
  display: flex;
  justify-content: flex-end;
  transition: transform 0.2s var(--ease), color 0.2s;
}
.faq-row.open .faq-q-icon { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  padding-left: 84px;
  padding-right: 56px;
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.6;
  font-family: var(--sans);
  max-width: 70ch;
}
.faq-row.open .faq-a { grid-template-rows: 1fr; }
.faq-row.open .faq-a > p { padding-bottom: 32px; }

@media (max-width: 640px) {
  .faq-q { grid-template-columns: 32px 1fr 24px; gap: 12px; font-size: 18px; }
  .faq-a > p { padding-left: 44px; padding-right: 0; }
}

/* =========================================================
   CTA Block
   ========================================================= */
.cta-block {
  background: var(--fg);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 95% 100%, color-mix(in oklab, var(--accent) 38%, transparent), transparent 60%),
    radial-gradient(circle at 0% 0%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 35%);
  pointer-events: none;
}
.cta-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in oklab, var(--bg) 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--bg) 8%, transparent) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  pointer-events: none;
  opacity: 0.4;
}
.kicker-light {
  color: var(--accent) !important;
  margin-bottom: 24px;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
}
.cta-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.cta-h em {
  font-style: italic;
  color: var(--accent);
}
.cta-lede {
  font-size: 18px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--bg) 70%, transparent);
  max-width: 56ch;
  margin: 0;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid color-mix(in oklab, var(--bg) 25%, transparent);
}
.cta-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 25%, transparent);
}
.cta-stat-v {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.025em;
  font-feature-settings: "ss01";
}
.cta-stat-l {
  font-family: var(--mono);
  font-size: 12px;
  color: color-mix(in oklab, var(--bg) 70%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-blog {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-blog-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
@media (max-width: 880px) { .cta-inner { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact { padding: 120px 0; border-bottom: 1px solid var(--rule); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 20px;
}
.contact-lede {
  font-size: 18px;
  color: var(--fg-muted);
  margin: 0 0 40px;
  max-width: 40ch;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.contact-list-l {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.field-hint {
  color: var(--fg-muted);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 11px;
}
.req { color: var(--accent); }
.field-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  resize: none;
}
.field-input:focus { border-color: var(--fg); }
.field-textarea { min-height: 100px; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.checkbox input { margin-top: 3px; accent-color: var(--accent); }

.form-success {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 60px 32px;
  text-align: center;
}
.success-icon { margin-bottom: 24px; }
.form-success h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.form-success p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 38ch;
  margin: 0 auto;
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bg-alt);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tag {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-h {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }


/* =========================================================
   Methodology
   ========================================================= */
.method { padding: 120px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.method-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.18s;
}
.method-card:hover { background: var(--card); }
.method-n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 18px; }
.method-title { font-family: var(--serif); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 14px; }
.method-body { font-size: 15px; color: var(--fg-muted); line-height: 1.55; margin: 0; }
@media (max-width: 760px) { .method-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Testimonials
   ========================================================= */
.testi { padding: 120px 0; }
.testi-frame { display: grid; grid-template-columns: 48px 1fr 48px; gap: 24px; align-items: stretch; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 56px 56px 48px;
  position: relative;
}
.testi-mark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.5;
  color: var(--accent);
  position: absolute;
  top: 36px;
  left: 32px;
  opacity: 0.4;
}
.testi-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: var(--fg);
  text-wrap: balance;
}
.testi-meta { padding-top: 20px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.testi-role { font-size: 14px; font-weight: 500; color: var(--fg); }
.testi-note { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-muted); }
.testi-nav {
  background: transparent;
  border: 1px solid var(--rule);
  width: 48px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--fg-muted);
  align-self: center;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.testi-nav:hover { color: var(--accent); border-color: var(--accent); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rule); border: none; cursor: pointer; padding: 0; transition: background 0.15s; }
.testi-dot.active { background: var(--accent); }
@media (max-width: 760px) {
  .testi-frame { grid-template-columns: 1fr; }
  .testi-nav { display: none; }
  .testi-card { padding: 36px 24px 28px; }
  .testi-mark { font-size: 64px; top: 18px; left: 14px; }
}

/* =========================================================
   Audit "how it works" hint
   ========================================================= */
.audit-how {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: wrap;
}
.audit-how-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
}
.audit-how-steps {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-muted);
}
.audit-how-steps b {
  color: var(--fg);
  font-family: var(--mono);
  font-weight: 500;
  margin-right: 6px;
}

/* =========================================================
   Blog
   ========================================================= */
.blog { padding: 120px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.blog-card {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: background 0.18s;
}
.blog-card:hover { background: var(--card); }
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.blog-cat { color: var(--accent); }
.blog-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  text-wrap: balance;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0 0 28px;
  flex: 1;
}
.blog-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.blog-read {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-arrow { color: var(--fg-muted); transition: transform 0.18s, color 0.18s; }
.blog-card:hover .blog-arrow { color: var(--accent); transform: translateX(4px); }
.blog-all { display: flex; justify-content: center; margin-top: 48px; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }
