@font-face {
  font-family: "Space Grotesk Local";
  src: url("./assets/fonts/space-grotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Local";
  src: url("./assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #f7f5f1;
  --background-accent: #f1ece4;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: rgba(252, 249, 244, 0.96);
  --surface-soft: rgba(248, 242, 234, 0.8);
  --surface-tint: rgba(255, 248, 238, 0.88);
  --text: #17181c;
  --text-soft: #5b4f45;
  --text-faint: rgba(23, 24, 28, 0.62);
  --line: rgba(124, 97, 74, 0.16);
  --line-strong: rgba(124, 97, 74, 0.26);
  --primary: #a75a00;
  --primary-strong: #c96f00;
  --primary-soft: rgba(167, 90, 0, 0.1);
  --secondary: #0f6ea6;
  --warning: #a05124;
  --success: #0c6f60;
  --shadow-panel: 0 18px 52px rgba(37, 28, 18, 0.08);
  --shadow-soft: 0 8px 24px rgba(37, 28, 18, 0.05);
  --frame: 1180px;
  --radius: 8px;
  --radius-panel: 24px;
  --radius-soft: 18px;
  --font-display: "Space Grotesk Local", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body:
    "Inter", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(167, 90, 0, 0.1), transparent 26%),
    radial-gradient(circle at top right, rgba(15, 110, 166, 0.08), transparent 24%),
    linear-gradient(180deg, #fdfcf9 0%, var(--background) 54%, #f5f1ea 100%);
  color: var(--text);
  font-family: var(--font-body);
}

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

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

.site-shell {
  min-height: 100vh;
}

.frame {
  width: min(var(--frame), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(247, 241, 232, 0.8));
  border-top: 1px solid rgba(124, 97, 74, 0.08);
  border-bottom: 1px solid rgba(124, 97, 74, 0.08);
}

.section-panel {
  background:
    radial-gradient(circle at 16% 14%, rgba(167, 90, 0, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(243, 237, 228, 0.9));
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 241, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124, 97, 74, 0.1);
}

.nav-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-inner {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 44px;
  padding: 4px 2px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
  flex: 0 0 auto;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(124, 97, 74, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  justify-items: start;
}

.section-kicker,
.eyebrow,
.status-kicker,
.case-head span,
.workbench-label,
.step-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.brand-name {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(167, 90, 0, 0.2);
  min-width: 176px;
  min-height: 54px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(124, 97, 74, 0.18);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
}

.hero {
  padding-top: 54px;
}

.hero-stack {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 28px;
}

.hero-copy-single {
  width: min(100%, 820px);
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta-centered {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 0.68rem;
}

.eyebrow-soft {
  color: var(--secondary);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.75vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: none;
  text-wrap: balance;
}

.hero-title-single {
  max-width: none;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-lead,
.section-head p,
.step-card p,
.case-card p,
.faq-item p,
.action-note,
.trust-copy p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.08rem;
}

.hero-payoff {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.38;
  font-weight: 700;
  color: var(--primary);
}

.hero-lead-single {
  max-width: 39rem;
  font-size: 1rem;
}

.hero-gains,
.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-gains-centered,
.hero-actions-centered {
  justify-content: center;
  justify-items: center;
}

.gain-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 97, 74, 0.14);
  box-shadow: var(--shadow-soft);
}

.hero-actions {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: min(100%, 36rem);
  margin: 0 auto;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(124, 97, 74, 0.12);
  box-shadow: 0 18px 38px rgba(37, 28, 18, 0.06);
  backdrop-filter: blur(12px);
}

.action-note {
  margin: 0;
  font-size: 0.92rem;
  max-width: 30rem;
  text-align: center;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(167, 90, 0, 0.12);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage {
  display: grid;
  gap: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(167, 90, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 232, 0.92));
}

.hero-stage-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(124, 97, 74, 0.08);
}

.hero-stage-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-stage-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-stage-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 34rem;
}

.hero-scenarios {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-content: start;
}

.hero-scenario {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.92);
  border: 1px solid rgba(124, 97, 74, 0.14);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.hero-workbench {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 238, 230, 0.92)),
    linear-gradient(135deg, rgba(255, 248, 238, 0.84), rgba(255, 255, 255, 0.96));
}

.workbench-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(124, 97, 74, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.workbench-toolbar-meta {
  display: inline-flex;
  gap: 6px;
}

.workbench-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(124, 97, 74, 0.24);
}

.workbench-toolbar-title,
.workbench-toolbar-chip,
.workbench-rail-count,
.workbench-main-badge,
.workbench-output-title {
  font-family: var(--font-display);
}

.workbench-toolbar-title {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workbench-toolbar-chip,
.workbench-main-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 110, 166, 0.1);
  color: var(--secondary);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workbench-screen {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  min-height: 470px;
}

.workbench-rail,
.workbench-main,
.workbench-output,
.workbench-block,
.workbench-summary-card {
  display: grid;
  gap: 14px;
}

.workbench-rail {
  align-content: start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(124, 97, 74, 0.12);
}

.workbench-main {
  align-content: start;
}

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

.workbench-rail-head,
.workbench-main-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.workbench-rail-count {
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.workbench-main-head h3 {
  margin: 6px 0 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.workbench-block,
.workbench-output {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 97, 74, 0.12);
}

.workbench-summary-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 97, 74, 0.1);
}

.workbench-summary-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
}

.workbench-block-warn {
  background: rgba(255, 243, 235, 0.88);
}

.workbench-block-accent {
  background: rgba(239, 248, 252, 0.92);
}

.workbench-label {
  color: var(--primary);
  font-size: 0.66rem;
}

.workbench-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(249, 245, 238, 0.9);
  border: 1px solid rgba(124, 97, 74, 0.1);
}

.workbench-note strong,
.workbench-list li,
.workbench-status {
  font-weight: 700;
}

.workbench-note span,
.workbench-list {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.workbench-list {
  margin: 0;
  padding-left: 18px;
}

.workbench-output {
  margin-top: auto;
  gap: 12px;
}

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

.workbench-output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workbench-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 110, 166, 0.1);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.workbench-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 24, 28, 0.08);
  overflow: hidden;
}

.workbench-progress-bar {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(167, 90, 0, 0.9), rgba(15, 110, 166, 0.72));
}

.workbench-output-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 16px;
  border-radius: 16px;
  background: rgba(247, 243, 236, 0.95);
  border: 1px solid rgba(124, 97, 74, 0.1);
}

.workbench-output-title {
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workbench-output-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.image-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(124, 97, 74, 0.1);
  color: var(--text-faint);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
}

.status-kicker {
  color: var(--primary);
  font-size: 0.66rem;
}

.trust-strip {
  padding-top: 52px;
  padding-bottom: 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(245, 239, 231, 0.76));
  border-top: 1px solid rgba(124, 97, 74, 0.08);
  border-bottom: 1px solid rgba(124, 97, 74, 0.08);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: start;
}

.trust-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: 4px;
}

.trust-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  max-width: 12ch;
}

.trust-copy p {
  margin: 0;
  max-width: 29rem;
}

.trust-benefits {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 244, 236, 0.9));
  border: 1px solid rgba(124, 97, 74, 0.12);
  box-shadow: var(--shadow-soft);
}

.trust-benefits-head {
  display: grid;
  gap: 8px;
  padding: 4px 2px 0;
}

.trust-benefits-kicker {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-benefits-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 34rem;
}

.trust-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  align-content: start;
  align-items: stretch;
}

.trust-card {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 97, 74, 0.14);
  box-shadow: var(--shadow-soft);
  align-content: start;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 90, 0, 0.75), rgba(15, 110, 166, 0.22));
}

.trust-card strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.35;
}

.trust-card span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head-split {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: end;
}

.section-kicker {
  color: var(--primary);
  font-size: 0.68rem;
}

.section-head h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-line {
  display: block;
}

.section-head p {
  margin: 0;
}

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

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

.rail-card,
.step-card,
.case-card,
.faq-item {
  min-height: 100%;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.card-index,
.step-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 0.64rem;
}

.rail-card h3,
.step-card h3,
.case-card h3,
.faq-item summary {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 700;
}

.rail-card p,
.step-card p,
.case-card p,
.faq-item p {
  margin: 0;
}

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

.workflow-grid-flow {
  position: relative;
}

.workflow-grid-flow::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 90, 0, 0.15), rgba(15, 110, 166, 0.22), rgba(167, 90, 0, 0.15));
}

.step-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
}

.step-card-flow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 247, 241, 0.96));
}

.step-card .button {
  justify-self: start;
  margin-top: 6px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.compare-column {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 30px 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  align-content: start;
}

.compare-column-old {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 238, 229, 0.86));
}

.compare-column-new {
  background:
    radial-gradient(circle at top right, rgba(15, 110, 166, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 236, 0.92));
}

.compare-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(167, 90, 0, 0.1);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-column h3 {
  margin: 0;
  min-height: 4.8rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.compare-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.7;
}

.compare-list li::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(167, 90, 0, 0.5);
  box-shadow: 0 0 0 6px rgba(167, 90, 0, 0.08);
}

.compare-column-new .compare-list li::before {
  background: rgba(15, 110, 166, 0.72);
  box-shadow: 0 0 0 6px rgba(15, 110, 166, 0.1);
}

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

.case-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  margin-bottom: 12px;
}

.case-head h3 {
  flex: 1 1 14rem;
}

.case-head span {
  color: var(--secondary);
  font-size: 0.64rem;
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-left: 0;
  background: rgba(255, 255, 255, 0.84);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 14px;
  max-width: 60ch;
}

.cta-band {
  padding-top: 54px;
}

.cta-band-inner {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 52px 32px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(167, 90, 0, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 236, 0.96));
}

.cta-band-inner p {
  margin: 0;
  max-width: 38rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.site-footer {
  padding: 0 0 38px;
}

.footer-inner {
  padding-top: 18px;
  border-top: 1px solid rgba(124, 97, 74, 0.1);
  color: rgba(23, 24, 28, 0.68);
  font-size: 0.9rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(167, 90, 0, 0.3);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1080px) {
  .grid-4,
  .workflow-grid,
  .case-strip,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .hero-stage-head {
    grid-template-columns: 1fr;
  }

  .hero-scenarios {
    justify-content: flex-start;
  }

  .workflow-grid-flow::before {
    display: none;
  }

  .trust-copy h2,
  .trust-copy p {
    max-width: none;
  }
}

@media (max-width: 920px) {
  .frame {
    width: min(var(--frame), calc(100% - 28px));
  }

  .section-head-split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .workbench-screen {
    grid-template-columns: 1fr;
  }

  .workbench-top {
    grid-template-columns: 1fr;
  }

  .workbench-summary-grid,
  .workbench-draft-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .brand {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 68px 0;
  }

  .grid-4,
  .workflow-grid,
  .case-strip,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .rail-card,
  .step-card,
  .case-card,
  .compare-column,
  .faq-item,
  .cta-band-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-stage {
    padding: 18px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10.6vw, 3.45rem);
    line-height: 1.05;
  }

  .hero-actions {
    width: 100%;
    padding: 16px 14px 14px;
  }

  .hero-copy {
    gap: 24px;
  }

  .hero-gains,
  .trust-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-items: stretch;
  }

  .button {
    width: 100%;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 22px;
    padding: 5px 10px;
  }

  .trust-benefits {
    padding: 16px;
  }

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

  .brand-copy {
    display: none;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .workbench-screen {
    min-height: auto;
    padding: 20px;
  }

  .image-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
