@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");
@import url("/brand/dorsey-worx/css/dorsey-worx-brand-tokens.css");

:root {
  --font-body: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --page-bg: #f7f1e7;
  --page-bg-deep: #efe4d4;
  --page-bg-edge: #e3d1bb;
  --surface-base: #fffbf5;
  --surface-raised: #f7efe2;
  --surface-strong: #efdfcb;
  --surface-overlay: rgba(255, 251, 245, 0.9);
  --surface-overlay-strong: rgba(255, 251, 245, 0.96);
  --surface-dark: #112331;
  --surface-dark-raised: #193142;
  --surface-dark-top: #214157;
  --surface-hero-card: rgba(255, 255, 255, 0.05);
  --text-primary: #132535;
  --text-secondary: #4f6171;
  --text-subtle: #6c7985;
  --text-inverse: #f6efe5;
  --text-inverse-muted: #cad5de;
  --border-subtle: rgba(19, 37, 53, 0.14);
  --border-strong: rgba(19, 37, 53, 0.22);
  --border-inverse: rgba(246, 239, 229, 0.14);
  --accent-primary: #c66a2c;
  --accent-primary-strong: #e6a15f;
  --accent-primary-soft: rgba(198, 106, 44, 0.12);
  --accent-heritage: #6f3730;
  --accent-heritage-soft: rgba(111, 55, 48, 0.12);
  --accent-support: #3f6076;
  --accent-support-soft: rgba(63, 96, 118, 0.12);
  --accent-success: #6a7a56;
  --accent-success-soft: rgba(106, 122, 86, 0.14);
  --accent-warning-soft: rgba(200, 120, 53, 0.18);
  --status-danger: #9b472c;
  --status-success: #496344;
  --focus-ring: rgba(200, 120, 53, 0.32);
  --shadow: 0 18px 40px rgba(19, 37, 53, 0.08);
  --shadow-strong: 0 28px 72px rgba(19, 37, 53, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-sm: 16px;
  --content: min(1240px, calc(100vw - 2rem));
  --paper: var(--page-bg);
  --sheet: var(--surface-overlay);
  --sheet-solid: var(--surface-base);
  --ink: var(--text-primary);
  --muted: var(--text-secondary);
  --line: var(--border-subtle);
  --navy: var(--surface-dark);
  --navy-soft: var(--surface-dark-raised);
  --navy-panel: var(--surface-dark-raised);
  --copper: var(--accent-primary);
  --copper-strong: var(--accent-primary-strong);
  --copper-soft: var(--accent-primary-soft);
  --steel: var(--accent-support);
  --steel-soft: var(--accent-support-soft);
  --sage: var(--accent-success);
  --sage-soft: var(--accent-success-soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(198, 106, 44, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 22rem),
    linear-gradient(180deg, var(--page-bg), var(--page-bg-deep) 58%, var(--page-bg-edge));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(19, 37, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 37, 53, 0.035) 1px, transparent 1px);
  background-size: 128px 128px;
  opacity: 0.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
}

.site-shell {
  width: var(--content);
  margin: 0 auto;
  padding-bottom: 3rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 1rem;
}

.topbar {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  overflow: hidden;
  margin-top: 0.85rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  background: var(--surface-overlay);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 48px rgba(19, 37, 53, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-primary) 0%,
    var(--accent-heritage) 52%,
    var(--accent-support) 100%
  );
}

.topbar-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  flex-wrap: wrap;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  text-decoration: none;
}

.brand-stack {
  display: grid;
  min-width: 0;
  gap: 0.1rem;
}

.brand-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  flex: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 0.86;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.brand-tag {
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-support);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-base);
  color: var(--text-primary);
  font: inherit;
  cursor: pointer;
}

.nav-toggle:focus-visible,
.nav a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav a.current {
  color: var(--accent-heritage);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-primary-strong), var(--accent-primary));
  color: var(--text-primary) !important;
  box-shadow:
    0 10px 24px rgba(198, 106, 44, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cta-link {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  text-decoration: none;
  background: var(--surface-base);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.45rem;
  margin-top: 0;
  padding: 2.6rem;
  border: 1px solid var(--border-inverse);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(221, 144, 72, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--surface-dark-top), var(--surface-dark) 72%);
  box-shadow: var(--shadow-strong);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246, 239, 229, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 229, 0.06) 1px, transparent 1px);
  background-size: 144px 144px;
  opacity: 0.35;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 120, 53, 0.18), transparent 68%);
}

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

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--accent-heritage);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 7.4vw, 6.55rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.25rem);
  line-height: 0.91;
}

h3 {
  font-size: 1.4rem;
  line-height: 0.98;
}

strong {
  overflow-wrap: anywhere;
}

.hero-copy p,
.panel p,
.card p,
.policy-content p,
.policy-content li,
.footer-meta {
  color: var(--text-secondary);
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  max-width: 40rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-inverse-muted);
}

.hero-qualifier {
  max-width: 40rem;
  margin: 1rem 0 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text-inverse-muted);
}

.hero .eyebrow {
  color: var(--accent-primary-strong);
}

.hero h1 {
  color: var(--text-inverse);
  text-wrap: balance;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.hero-signal {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border-inverse);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(10, 18, 26, 0.12);
}

.hero-signal-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  font-weight: 700;
}

.hero-signal strong {
  display: block;
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 0.95;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button.primary {
  background: linear-gradient(180deg, var(--accent-primary-strong), var(--accent-primary));
  color: var(--text-primary);
  box-shadow:
    0 12px 24px rgba(184, 116, 52, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  border-color: var(--border-strong);
  background: var(--surface-base);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

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

.hero .button.secondary {
  border-color: var(--border-inverse);
  background: var(--surface-hero-card);
  color: var(--text-inverse);
}

.hero-panel,
.panel,
.card,
.policy-layout,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 251, 245, 0.92));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-panel {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface-raised);
}

.hero-brief-card {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  min-height: 26rem;
  border-color: var(--border-inverse);
  background:
    radial-gradient(circle at top right, rgba(230, 161, 95, 0.14), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(19, 37, 53, 0.12)),
    rgba(19, 37, 53, 0.14);
}

.hero-brief-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(246, 239, 229, 0.12);
  border-radius: 18px;
  pointer-events: none;
}

.hero-brief-header,
.hero-brand-panel,
.brief-lane-grid,
.hero-brief-footer {
  position: relative;
  z-index: 1;
}

.hero-brief-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-brief-kicker,
.hero-brief-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-brief-kicker {
  color: var(--text-inverse);
  background: rgba(246, 239, 229, 0.1);
  border: 1px solid rgba(246, 239, 229, 0.12);
}

.hero-brief-pill {
  color: var(--accent-primary-strong);
  background: rgba(198, 106, 44, 0.1);
  border: 1px solid rgba(198, 106, 44, 0.16);
}

.hero-brand-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(246, 239, 229, 0.12);
  border-radius: 20px;
  background: rgba(11, 23, 34, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-mark-hero {
  width: 4.8rem;
  height: 4.8rem;
}

.hero-brand-name {
  margin: 0 0 0.35rem;
  color: var(--accent-primary-strong);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-brand-panel h2 {
  color: var(--text-inverse);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 0.92;
}

.brief-lane-grid {
  display: grid;
  gap: 0.85rem;
}

.brief-lane {
  padding: 1rem 1rem 1rem 1.08rem;
  border: 1px solid rgba(246, 239, 229, 0.12);
  border-left: 4px solid var(--accent-primary);
  border-radius: 18px;
  background: rgba(19, 37, 53, 0.28);
}

.brief-lane:nth-child(2) {
  border-left-color: var(--accent-support);
}

.brief-lane:nth-child(3) {
  border-left-color: var(--accent-heritage);
}

.brief-lane-label {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--text-inverse-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.brief-lane strong {
  color: var(--text-inverse);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-brief-footer {
  margin: 0;
  color: var(--text-inverse-muted);
  line-height: 1.6;
}

.roi-panel {
  justify-content: space-between;
}

.roi-grid,
.report-metric-grid,
.step-grid {
  display: grid;
  gap: 1.2rem;
}

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

.roi-result {
  display: grid;
  gap: 0.75rem;
}

.roi-result-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-base);
}

.roi-result-card strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.roi-note {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
}

.signal-grid,
.card-grid,
.feature-grid,
.policy-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.signal,
.card,
.contact-card,
.policy-sidebar,
.policy-content,
.footer,
.hero-panel,
.section-header,
.nav-panel {
  min-width: 0;
}

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

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

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

.policy-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.signal,
.card,
.contact-card {
  padding: 1.1rem 1.1rem 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  border-top-width: 1px;
  border-left: 4px solid transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 226, 0.92));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.card-lead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge.small {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 12px;
}

.icon-badge.copper {
  color: var(--accent-primary);
  background: rgba(198, 106, 44, 0.12);
  border-color: rgba(198, 106, 44, 0.16);
}

.icon-badge.steel,
.icon-badge.support {
  color: var(--accent-support);
  background: rgba(63, 96, 118, 0.12);
  border-color: rgba(63, 96, 118, 0.16);
}

.icon-badge.sage {
  color: var(--accent-success);
  background: rgba(106, 122, 86, 0.14);
  border-color: rgba(106, 122, 86, 0.16);
}

.icon-badge.heritage {
  color: var(--accent-heritage);
  background: rgba(111, 55, 48, 0.12);
  border-color: rgba(111, 55, 48, 0.16);
}

.signal.copper,
.card.copper {
  border-left-color: var(--accent-primary);
}

.signal.copper .card-kicker,
.card.copper .card-kicker {
  color: var(--accent-primary);
}

.signal.steel,
.card.steel {
  border-left-color: var(--accent-support);
}

.signal.steel .card-kicker,
.card.steel .card-kicker {
  color: var(--accent-support);
}

.signal.sage,
.card.sage {
  border-left-color: var(--accent-success);
}

.signal.sage .card-kicker,
.card.sage .card-kicker {
  color: var(--accent-success);
}

.signal strong {
  font-size: 1.9rem;
  display: block;
}

.section {
  margin-top: 0;
  padding: 1.85rem 0;
}

.section.panel {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section.panel.operator-panel {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--accent-heritage);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 6rem),
    var(--surface-strong);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

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

.operator-brief {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-base);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.operator-brief-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}

.operator-brief strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 0.95;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.15rem;
}

.lead-form-card,
.lead-side-card {
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 245, 0.96));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

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

.compact-grid {
  gap: 0.8rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
  color: var(--accent-heritage);
}

.checkbox-row label {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--surface-base);
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text-primary);
}

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--accent-primary);
}

.textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.short-textarea {
  min-height: 5.5rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-stack {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox-row input {
  margin-top: 0.2rem;
}

.consent-note {
  margin: -0.15rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.consent-note a {
  text-underline-offset: 0.16em;
}

.lead-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
}

.lead-status.error {
  color: var(--status-danger);
}

.lead-status.success {
  color: var(--status-success);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 1.45rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-heritage);
}

.step-card {
  position: relative;
  padding-top: 3.5rem;
}

.step-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-primary-strong);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
}

.bullet-list,
.policy-list,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.policy-list li {
  padding-left: 1rem;
  position: relative;
}

.bullet-list li::before,
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent-primary);
}

.policy-layout {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 1.2rem;
  margin-top: 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 245, 0.94));
}

.policy-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 239, 226, 0.96), rgba(255, 251, 245, 0.92));
}

.policy-content {
  padding: 0.2rem 0.2rem 0.2rem 0;
}

.policy-content section + section {
  margin-top: 2rem;
}

.policy-content ul {
  padding-left: 1.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.74rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-base);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.footer {
  margin-top: 0.5rem;
  padding: 1.1rem;
  background:
    linear-gradient(rgba(246, 239, 229, 0.04), rgba(246, 239, 229, 0.04)),
    linear-gradient(180deg, var(--surface-dark-top), var(--surface-dark) 76%);
  border-color: var(--border-inverse);
  box-shadow:
    var(--shadow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-links {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-inverse-muted);
}

.legal-note {
  font-size: 0.93rem;
  color: var(--text-secondary);
}

.hero .legal-note {
  color: var(--text-inverse-muted);
}

.footer strong {
  color: var(--text-inverse);
}

.footer-meta {
  color: var(--text-inverse-muted);
}

.sidebar-checklist {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.consent-note a,
.policy-content a,
.inline-link {
  color: var(--accent-support);
  font-weight: 600;
}

.report-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1rem;
}

.report-preview-intro,
.report-preview-intro h2,
.report-preview-intro p,
.report-preview-intro strong {
  color: var(--text-primary);
}

.report-preview-intro {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-base);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.report-preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  background: #fffdf9;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.report-preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--accent-heritage), var(--accent-primary), var(--surface-dark));
}

.report-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.95rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbf5eb, #f3e8d8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.dashboard-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.95rem;
}

.dashboard-window {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dashboard-window span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(19, 37, 53, 0.18);
}

.dashboard-window span:first-child {
  background: rgba(111, 55, 48, 0.4);
}

.dashboard-window span:nth-child(2) {
  background: rgba(198, 106, 44, 0.42);
}

.dashboard-window span:last-child {
  background: rgba(63, 96, 118, 0.42);
}

.dashboard-header-copy {
  min-width: 0;
}

.report-preview-header .section-kicker {
  color: var(--accent-heritage);
}

.report-preview-header h3 {
  margin-top: 0.25rem;
  color: var(--text-primary);
}

.report-preview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.report-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-dark);
  border: 1px solid rgba(16, 35, 51, 0.18);
  color: var(--text-inverse);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.report-pill.active {
  background: var(--accent-primary);
  border-color: rgba(198, 106, 44, 0.25);
}

.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dashboard-filter-row,
.dashboard-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dashboard-filter,
.dashboard-toolbar-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.74rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-filter {
  letter-spacing: 0.02em;
}

.dashboard-filter.active {
  background: rgba(198, 106, 44, 0.12);
  border-color: rgba(198, 106, 44, 0.2);
  color: var(--accent-heritage);
}

.dashboard-toolbar-meta span {
  color: var(--text-secondary);
  font-weight: 600;
}

.dashboard-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 1.15rem;
  align-items: start;
}

.dashboard-main {
  display: grid;
  gap: 1rem;
}

.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.dashboard-kpi {
  padding: 1rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent-primary);
  border-radius: var(--radius-sm);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.dashboard-kpi:nth-child(2) {
  border-top-color: var(--accent-support);
}

.dashboard-kpi:nth-child(3) {
  border-top-color: var(--accent-heritage);
}

.dashboard-kpi:nth-child(4) {
  border-top-color: var(--accent-success);
}

.dashboard-kpi > span:not(.icon-badge) {
  display: block;
  margin-top: 0.7rem;
  color: var(--accent-heritage);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.dashboard-kpi strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.92;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.dashboard-kpi em {
  display: block;
  margin-top: 0.28rem;
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.dashboard-lower-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.dashboard-panel,
.dashboard-detail-panel {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.dashboard-detail-panel {
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(180deg, #fff8ef, #f8f1e6);
}

.dashboard-panel-head {
  display: grid;
  gap: 0.24rem;
  margin-bottom: 0.9rem;
}

.dashboard-panel-head strong {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
}

.dashboard-panel-head span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: 36ch;
}

.dashboard-lane-list,
.dashboard-queue-list,
.dashboard-drill-list {
  display: grid;
  gap: 0.9rem;
}

.dashboard-lane {
  display: grid;
  gap: 0.45rem;
}

.dashboard-lane-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.dashboard-lane-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.dashboard-lane-copy strong {
  font-size: 0.94rem;
  line-height: 1.25;
}

.dashboard-lane-copy span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.dashboard-lane-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 106, 44, 0.18);
  background: rgba(198, 106, 44, 0.1);
  color: var(--accent-heritage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dashboard-lane-chip.support {
  border-color: rgba(63, 96, 118, 0.18);
  background: rgba(63, 96, 118, 0.1);
  color: var(--accent-support);
}

.dashboard-lane-chip.sage {
  border-color: rgba(106, 122, 86, 0.18);
  background: rgba(106, 122, 86, 0.1);
  color: var(--accent-success);
}

.dashboard-bar-track {
  height: 0.65rem;
  border-radius: 999px;
  background: #e7dccb;
  overflow: hidden;
}

.dashboard-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-strong));
}

.dashboard-bar-track.support span {
  background: linear-gradient(90deg, var(--accent-support), #6f8da2);
}

.dashboard-bar-track.sage span {
  background: linear-gradient(90deg, var(--accent-success), #94a182);
}

.dashboard-queue-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.92rem 0.98rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
}

.dashboard-queue-item.urgent {
  border-left: 4px solid var(--status-danger);
}

.dashboard-queue-item strong {
  display: block;
  font-size: 0.94rem;
}

.dashboard-queue-item span {
  display: block;
  margin-top: 0.18rem;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

.dashboard-queue-item b {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text-primary);
  line-height: 0.92;
}

.dashboard-detail-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf9;
}

.dashboard-detail-card.watch {
  border-left: 4px solid var(--accent-primary);
}

.dashboard-detail-card.neutral {
  border-left: 4px solid var(--accent-support);
}

.dashboard-detail-label {
  display: inline-flex;
  align-items: center;
  color: var(--accent-heritage);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-detail-card strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--text-primary);
}

.dashboard-detail-card p {
  margin: 0.35rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dashboard-drill-list span {
  display: block;
  padding: 0.78rem 0.88rem;
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.report-glance-list,
.report-cue-list {
  display: grid;
  gap: 0.75rem;
}

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

.report-glance-item,
.report-cue {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
}

.report-glance-item {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-primary);
  background: var(--surface-raised);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.report-glance-item strong,
.report-cue strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
}

.report-glance-item strong {
  color: var(--text-primary);
}

.report-glance-item p {
  color: var(--text-secondary);
}

.report-glance-item p,
.report-cue p {
  margin: 0;
  font-size: 0.94rem;
}

.report-cue {
  border: 1px solid var(--line);
  background: #fff8ef;
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.report-cue.positive {
  border-left: 4px solid var(--accent-success);
}

.report-cue.watch {
  border-left: 4px solid var(--accent-primary);
}

.report-cue.neutral {
  border-left: 4px solid var(--accent-support);
}

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

.report-metric {
  padding: 1.02rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent-support);
  border-radius: var(--radius-sm);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.report-metric span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-heritage);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.report-metric strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.report-metric:nth-child(2n) {
  border-top-color: var(--accent-primary);
}

@media (max-width: 1040px) {
  .hero,
  .feature-grid,
  .step-grid,
  .policy-grid,
  .policy-layout,
  .contact-grid,
  .lead-layout,
  .dashboard-stage,
  .dashboard-lower-grid {
    grid-template-columns: 1fr;
  }

  .hero-signal-grid,
  .operator-rail,
  .dashboard-kpi-grid {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }
}

@media (max-width: 780px) {
  body {
    background: linear-gradient(180deg, var(--page-bg), var(--page-bg-deep) 68%, var(--page-bg-edge));
  }

  .site-shell {
    width: 100%;
    padding: 0 0.55rem 2.4rem;
  }

  .footer-inner,
  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .signal-grid,
  .card-grid,
  .lead-grid,
  .roi-grid,
  .report-metric-grid,
  .report-glance-list {
    grid-template-columns: 1fr;
  }

  .report-preview-header {
    flex-direction: column;
  }

  .dashboard-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .report-preview-pills {
    justify-content: flex-start;
  }

  .report-preview-card {
    padding: 1.05rem;
  }

  .dashboard-panel-head,
  .dashboard-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-lane-head {
    grid-template-columns: 1fr;
  }

  .dashboard-queue-item {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    min-width: 5.6rem;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    background: var(--surface-overlay-strong);
    box-shadow: 0 24px 54px rgba(19, 37, 53, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.45rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .topbar.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.45rem;
  }

  .nav a {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: var(--surface-base);
    color: var(--text-primary);
  }

  .nav a.current {
    background: var(--surface-dark);
    border-color: var(--surface-dark);
    color: var(--text-inverse);
    font-weight: 700;
  }

  .nav-cta {
    background: var(--accent-primary-strong);
    color: var(--text-primary) !important;
  }

  .hero,
  .section,
  .footer,
  .topbar {
    padding: 1rem;
  }

  .topbar {
    top: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 26px;
    background: var(--surface-overlay-strong);
    backdrop-filter: blur(12px);
  }

  .brand {
    min-width: 0;
  }

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

  .hero {
    gap: 0.95rem;
    padding: 1.1rem;
    border-radius: 26px;
  }

  .section {
    padding: 1.35rem 0;
  }

  .section.panel.operator-panel {
    padding: 1.15rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 10vw, 3.8rem);
    line-height: 0.96;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-panel,
  .panel,
  .footer,
  .policy-layout {
    background: var(--surface-overlay-strong);
  }

  .signal,
  .card,
  .contact-card,
  .lead-form-card,
  .lead-side-card,
  .policy-sidebar {
    background: var(--surface-base);
  }

  .policy-layout {
    padding: 0.9rem;
  }

  .report-cue,
  .report-metric,
  .report-glance-item {
    padding: 0.9rem;
  }

  .report-metric strong {
    font-size: 1.55rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 0 0.4rem 2rem;
  }

  .topbar,
  .hero,
  .section,
  .footer,
  .policy-layout {
    padding: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .pill-row {
    gap: 0.45rem;
  }

  .pill {
    font-size: 0.79rem;
  }

  .operator-brief strong,
  .hero-signal strong {
    font-size: 1.18rem;
  }
}

.brand-footer-lockup {
  margin-bottom: 0.85rem;
}

.footer .footer-inner > div:first-child {
  min-width: 0;
}

.footer .brand {
  align-items: center;
}

.footer .brand-mark {
  width: 2.9rem;
  height: 2.9rem;
}

.footer .brand-name {
  color: var(--text-inverse);
}

.footer .brand-tag {
  color: var(--text-inverse-muted);
}

.footer .brand + .footer-meta {
  margin-top: 0;
}

.icon-asset-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.icon-asset-wrap img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.section-title-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.section-title-with-icon .icon-asset-wrap {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(19, 37, 53, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 239, 226, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 20px rgba(19, 37, 53, 0.06);
}

.section-title-with-icon .icon-asset-wrap img {
  width: 1.4rem;
  height: 1.4rem;
}

.hero-visual-stack {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.roi-shell {
  display: grid;
  gap: 1rem;
}

.roi-shell .section-title-with-icon .icon-asset-wrap {
  background: var(--surface-raised);
}

.feature-card .card-lead {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-art {
  display: block;
  width: clamp(6rem, 16vw, 7.5rem);
  height: auto;
}

.feature-card h3 {
  margin-top: 0.15rem;
}

.step-icon.icon-asset-wrap {
  padding: 0;
}

.step-icon-img {
  width: 1.2rem;
  height: 1.2rem;
}

.trust-band {
  gap: 1.1rem;
}

.trust-band-item {
  position: relative;
  padding-top: 1.2rem;
}

.trust-band-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.05rem;
  width: 3.2rem;
  height: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-heritage), var(--accent-primary));
}

.report-preview-intro .section-title-with-icon {
  margin-bottom: 0.55rem;
}

.report-preview-card .section-kicker {
  margin-bottom: 0.2rem;
}

.report-preview-card h3 {
  font-size: 1.9rem;
}

@media (max-width: 1024px) {
  .hero-visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-brand-panel {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

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

  .section-title-with-icon {
    flex-direction: column;
    gap: 0.7rem;
  }

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

@media (max-width: 560px) {
  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
  }

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

  .brand-tag {
    font-size: 0.63rem;
  }

  .feature-art {
    width: 5.4rem;
  }
}
