:root {
  --bg: #f6f0e7;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #13203b;
  --muted: #5d6880;
  --line: rgba(19, 32, 59, 0.12);
  --accent: #1d5fff;
  --accent-deep: #1038a9;
  --accent-soft: rgba(29, 95, 255, 0.12);
  --accent-2: #ef7e56;
  --accent-3: #1a9c8f;
  --shadow: 0 24px 60px rgba(18, 35, 73, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(29, 95, 255, 0.08), transparent 25%),
    radial-gradient(circle at 70% 70%, rgba(239, 126, 86, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(24px);
}

body::before {
  width: 360px;
  height: 360px;
  top: -90px;
  right: -80px;
  background: rgba(29, 95, 255, 0.08);
}

body::after {
  width: 300px;
  height: 300px;
  bottom: 6%;
  left: -80px;
  background: rgba(239, 126, 86, 0.1);
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -52px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.8);
  border-bottom: 1px solid rgba(19, 32, 59, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  padding: 10px 14px;
  cursor: pointer;
}

main {
  padding: 34px 0 72px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 28px;
  align-items: end;
  padding: 18px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.page-hero h1 {
  max-width: 11ch;
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 9vw, 6.1rem);
  line-height: 0.95;
}

.page-hero p {
  max-width: 62ch;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--text);
  font-weight: 500;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

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

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(29, 95, 255, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
}

.hero-card,
.card,
.quote-card,
.cta-band,
.detail-panel,
.plan,
.form-panel,
.office-card {
  background: var(--surface);
  border: 1px solid rgba(29, 95, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(211, 230, 255, 0.88), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.hero-card h2,
.section-head h2,
.cta-band h2,
.detail-panel h2,
.form-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.hero-card h3,
.card h3,
.quote-card h3,
.plan h3,
.office-card h3,
.form-panel h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.hero-card p,
.card p,
.quote-card p,
.detail-panel p,
.plan p,
.office-card p,
.form-panel p {
  margin: 0;
  color: var(--muted);
}

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

.check-list li,
.plain-list li {
  position: relative;
  color: var(--muted);
}

.check-list li {
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.stat-row,
.mini-stats {
  display: grid;
  gap: 16px;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
}

.stat,
.mini-stat {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.stat strong,
.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  line-height: 1;
}

.stat strong {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.mini-stat strong {
  font-size: 1.8rem;
}

.stat span,
.mini-stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

.ops-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.ops-cell {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 95, 255, 0.12);
}

.ops-cell strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.88rem;
}

.ops-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section {
  padding: 20px 0 60px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
}

.card-grid,
.quote-grid,
.pricing-grid,
.office-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card,
.quote-card,
.plan,
.office-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card .tag,
.plan .tag,
.office-card .tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(19, 32, 59, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.detail-panel,
.cta-band,
.form-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.detail-panel {
  background: rgba(255, 255, 255, 0.8);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  padding: 18px 18px 18px 22px;
  border-radius: 0 24px 24px 0;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.74);
}

.timeline-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.timeline-item p,
.timeline-item strong {
  margin: 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.metric {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 95, 255, 0.1);
  color: var(--accent-deep);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.quote-card blockquote {
  margin: 0 0 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.quote-card footer {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(19, 32, 59, 0.96), rgba(29, 95, 255, 0.84)),
    var(--surface);
  color: #fff;
}

.cta-band p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.76);
}

.cta-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.plan {
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(29, 95, 255, 0.08);
}

.plan-price {
  display: block;
  margin: 18px 0 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 0.9;
}

.plan small {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
}

.plan.is-featured {
  background:
    linear-gradient(180deg, rgba(29, 95, 255, 0.96), rgba(16, 56, 169, 0.96)),
    var(--surface);
  color: #fff;
}

.plan.is-featured p,
.plan.is-featured small,
.plan.is-featured .plain-list li {
  color: rgba(255, 255, 255, 0.82);
}

.plan.is-featured .tag {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.role-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(19, 32, 59, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
}

.leadership-name {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 700;
}

.leadership-role {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

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

.field label {
  font-size: 0.88rem;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(19, 32, 59, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(29, 95, 255, 0.38);
  box-shadow: 0 0 0 4px rgba(29, 95, 255, 0.08);
}

.form-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  background: #11213e;
  color: rgba(255, 255, 255, 0.78);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.footer-shell p {
  margin: 0;
  font-size: 0.9rem;
}

.home-page main {
  padding-top: 0;
}

.home-hero {
  margin-bottom: 0;
  padding: 76px 0 86px;
  background:
    linear-gradient(135deg, rgba(17, 33, 62, 0.98), rgba(31, 74, 94, 0.94) 58%, rgba(32, 92, 83, 0.94)),
    #11213e;
  color: #fff;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.home-copy {
  max-width: 760px;
}

.home-kicker,
.home-section-title span,
.command-copy > span,
.proof-intro > span,
.home-cta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #2c8d80;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-kicker {
  color: #9de4d8;
}

.home-kicker::before,
.home-section-title span::before,
.command-copy > span::before,
.proof-intro > span::before,
.home-cta span::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.home-copy h1 {
  max-width: 12ch;
  margin: 0 0 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4.4rem, 10vw, 8.4rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.home-copy p {
  max-width: 68ch;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.home-hero .button.primary {
  background: #f0b95a;
  border-color: #f0b95a;
  color: #11213e;
  box-shadow: 0 18px 34px rgba(240, 185, 90, 0.22);
}

.home-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.approval-console {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.console-topbar,
.console-request,
.console-audit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.console-topbar {
  min-height: 54px;
  padding: 0 18px;
}

.console-topbar span,
.console-request span,
.console-audit span {
  color: var(--muted);
  font-size: 0.85rem;
}

.console-request {
  align-items: flex-start;
  padding: 18px;
  border-left: 4px solid #2c8d80;
}

.console-request.is-urgent {
  border-left-color: #f0b95a;
}

.console-request strong,
.console-request span {
  display: block;
}

.console-request strong {
  margin-bottom: 4px;
  line-height: 1.25;
}

.console-request b {
  flex-shrink: 0;
  min-width: 72px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(44, 141, 128, 0.12);
  color: #1e6f65;
  font-size: 0.78rem;
  text-align: center;
}

.console-audit {
  min-height: 86px;
  padding: 16px 18px;
  background: #f0b95a;
}

.console-audit strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
}

.home-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: -46px;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 59, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.home-metrics div {
  padding: 24px 28px;
}

.home-metrics div + div {
  border-left: 1px solid rgba(19, 32, 59, 0.1);
}

.home-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.home-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-section {
  padding: 72px 0 0;
}

.home-section-title {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.home-section-title h2,
.command-copy h2,
.proof-intro h2,
.home-cta h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.approval-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.approval-lanes article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(19, 32, 59, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(18, 35, 73, 0.08);
}

.approval-lanes article:nth-child(even) {
  margin-top: 42px;
}

.approval-lanes span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #2c8d80;
  font-weight: 700;
}

.approval-lanes h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.approval-lanes p {
  margin: 0;
  color: var(--muted);
}

.finance-command {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.command-copy,
.command-steps {
  border-radius: 28px;
  padding: 34px;
}

.command-copy {
  background: #11213e;
  color: #fff;
}

.command-copy p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

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

.command-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.command-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f0b95a;
}

.command-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 32, 59, 0.1);
}

.command-steps div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.command-steps span {
  display: block;
  margin-bottom: 8px;
  color: #2c8d80;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.command-steps strong {
  display: block;
  margin-bottom: 8px;
}

.command-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.proof-intro,
.proof-grid article {
  border-radius: 24px;
  padding: 28px;
}

.proof-intro {
  background: rgba(240, 185, 90, 0.18);
  border: 1px solid rgba(240, 185, 90, 0.36);
}

.proof-intro p {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.proof-grid article {
  background: #fff;
  border: 1px solid rgba(19, 32, 59, 0.1);
  box-shadow: 0 18px 38px rgba(18, 35, 73, 0.08);
}

.proof-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 0.82;
}

.proof-grid h3 {
  margin: 0 0 10px;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.quote-rail {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 14px;
}

.quote-rail blockquote {
  margin: 0;
  padding: 28px;
  border-top: 3px solid #2c8d80;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(18, 35, 73, 0.08);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.quote-rail footer {
  margin-top: 18px;
  color: var(--muted);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
  padding: 34px;
  border-radius: 28px;
  background: #f0b95a;
  color: #11213e;
}

.home-cta p {
  margin: 0;
  color: rgba(17, 33, 62, 0.76);
}

.home-cta .button.secondary {
  border-color: rgba(17, 33, 62, 0.48);
  background: rgba(255, 255, 255, 0.42);
}

@media (max-width: 1040px) {
  .page-hero,
  .split-section,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid,
  .quote-grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    max-width: 13ch;
  }

  .home-hero-grid,
  .home-section-title,
  .finance-command,
  .proof-panel,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .approval-lanes,
  .proof-grid,
  .quote-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approval-lanes article:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(19, 32, 59, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(29, 95, 255, 0.08);
  }

  .page-hero {
    padding-top: 8px;
  }

  .stat-row,
  .ops-board,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
  }

  .home-hero {
    padding: 44px 0 74px;
  }

  .home-copy h1 {
    max-width: 9ch;
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

  .home-metrics,
  .approval-lanes,
  .command-steps,
  .proof-grid,
  .quote-rail {
    grid-template-columns: 1fr;
  }

  .home-metrics div + div {
    border-top: 1px solid rgba(19, 32, 59, 0.1);
    border-left: 0;
  }

  .home-section {
    padding-top: 56px;
  }

  .console-request {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .detail-panel,
  .cta-band,
  .form-panel,
  .hero-card,
  .card,
  .quote-card,
  .plan,
    .office-card {
    padding: 22px;
  }

  .approval-console,
  .command-copy,
  .command-steps,
  .proof-intro,
  .proof-grid article,
  .quote-rail blockquote,
  .home-cta {
    padding: 22px;
  }

  .home-cta {
    margin-bottom: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
