:root {
  --navy-950: #04101c;
  --navy-900: #071827;
  --navy-850: #0a2034;
  --navy-800: #0e2942;
  --navy-700: #173a58;
  --orange-600: #e95616;
  --orange-500: #f26522;
  --orange-400: #ff7b3b;
  --cream: #fffaf6;
  --paper: #ffffff;
  --mist: #f2f6fa;
  --ink: #0b1724;
  --slate: #536273;
  --line: #dfe7ee;
  --line-dark: rgba(255, 255, 255, 0.13);
  --green: #138765;
  --red: #bc3c3c;
  --max: 1180px;
  --shadow-sm: 0 8px 24px rgba(4, 16, 28, 0.08);
  --shadow-lg: 0 30px 90px rgba(4, 16, 28, 0.24);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Black", Inter, ui-sans-serif, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
a:hover { text-decoration-thickness: 2px; }
p, ul, ol { margin-top: 0; }
h1, h2, h3 { color: inherit; margin-top: 0; text-wrap: balance; }
h1, h2 { font-family: var(--font-display); letter-spacing: -0.045em; line-height: 1.02; }
h3 { line-height: 1.18; }
:focus-visible { outline: 3px solid #ff9a69; outline-offset: 3px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(790px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-sm { padding: 54px 0; }
.section-dark { background: var(--navy-950); color: white; }
.section-mist { background: var(--mist); }
.section-cream { background: var(--cream); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.display { font-size: clamp(2.65rem, 6.7vw, 5.75rem); margin-bottom: 20px; }
.title { font-size: clamp(2rem, 4.4vw, 3.55rem); margin-bottom: 16px; }
.lede { color: var(--slate); font-size: clamp(1.02rem, 1.5vw, 1.17rem); max-width: 730px; }
.section-dark .lede, .section-dark .muted { color: #b9c8d7; }
.muted { color: var(--slate); }
.orange { color: var(--orange-500); }
.kicker { font-weight: 800; }
.fine-print { color: var(--slate); font-size: 0.82rem; line-height: 1.55; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }
.mt-32 { margin-top: 32px; }
.hero .eyebrow, .page-hero .eyebrow, .section-dark .eyebrow, .form-shell.dark .eyebrow { color: var(--orange-400); }

.status-bar {
  background: var(--orange-500);
  color: var(--navy-950);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-align: center;
}
.status-bar .container { padding: 8px 0; }
.status-bar a { text-underline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(4, 16, 28, 0.94);
  border-bottom: 1px solid var(--line-dark);
  color: white;
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 10px; }
.brand-word { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -0.03em; }
.brand-word span { color: var(--orange-500); }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav > a:not(.btn) { color: #d8e2ed; font-size: 0.9rem; font-weight: 800; text-decoration: none; }
.desktop-nav > a:not(.btn):hover { color: white; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 109px 0 auto;
  z-index: 80;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
  padding: 22px 20px 28px;
}
.mobile-menu a { display: block; padding: 12px 2px; color: white; font-weight: 800; text-decoration: none; }
.mobile-menu .btn { margin-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); color: var(--navy-950); box-shadow: 0 13px 30px rgba(242, 101, 34, 0.26); }
.btn-primary:hover { box-shadow: 0 17px 36px rgba(242, 101, 34, 0.35); }
.btn-secondary { background: white; border-color: var(--line); color: var(--ink); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.26); color: white; }
.btn-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 12%, rgba(242, 101, 34, 0.18), transparent 27%),
    linear-gradient(145deg, var(--navy-950), #0b2944 72%, var(--navy-950));
  color: white;
}
.hero::before, .page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(115deg, transparent 0 64%, rgba(255, 255, 255, 0.028) 64% 70%, transparent 70%),
    radial-gradient(circle at 14% 74%, rgba(242, 101, 34, 0.12), transparent 23%);
}
.hero-grid { display: grid; grid-template-columns: 1.07fr 0.93fr; gap: clamp(36px, 6vw, 82px); align-items: center; min-height: 690px; padding: 70px 0 64px; }
.hero-copy { max-width: 650px; color: #d3dfeb; font-size: clamp(1.04rem, 1.6vw, 1.2rem); margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero-meta span { border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px; background: rgba(255, 255, 255, 0.05); color: #c8d6e4; padding: 6px 11px; font-size: 0.79rem; font-weight: 750; }
.hero-panel { position: relative; }
.phone {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(165deg, rgba(16, 42, 67, 0.96), rgba(5, 17, 29, 0.98));
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.4);
  padding: 20px;
}
.phone::before { content: ""; display: block; width: 70px; height: 5px; border-radius: 99px; background: rgba(255, 255, 255, 0.15); margin: 0 auto 24px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.phone-head img { width: 56px; height: 56px; border-radius: 12px; }
.phone-head .pill { border-radius: 999px; background: rgba(242, 101, 34, 0.14); color: #ff9b6d; padding: 6px 10px; font-size: 0.72rem; font-weight: 900; }
.phone h2 { font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 8px; }
.phone > p { color: #aebfd0; font-size: 0.9rem; }
.job-list { display: grid; gap: 10px; margin-top: 20px; }
.job-row { display: flex; align-items: center; gap: 13px; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 15px; background: rgba(255, 255, 255, 0.045); padding: 14px; }
.job-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: rgba(242, 101, 34, 0.14); color: var(--orange-400); }
.job-icon svg { width: 22px; height: 22px; }
.job-row strong { display: block; font-size: 0.91rem; }
.job-row span { color: #9eb0c2; font-size: 0.77rem; }
.float-card { position: absolute; right: -24px; bottom: -25px; width: 220px; border: 1px solid rgba(255, 255, 255, 0.19); border-radius: 16px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); padding: 16px; }
.float-card strong { display: block; }
.float-card span { color: var(--slate); font-size: 0.78rem; }

.assurance { background: #061523; color: white; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.assurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.assurance-item { display: flex; align-items: flex-start; gap: 12px; padding: 23px 20px; border-right: 1px solid var(--line-dark); }
.assurance-item:last-child { border-right: 0; }
.assurance-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; background: rgba(242, 101, 34, 0.12); color: var(--orange-400); }
.assurance-icon svg { width: 20px; height: 20px; }
.assurance-item strong { display: block; font-size: 0.88rem; }
.assurance-item span { display: block; color: #9eb0c2; font-size: 0.74rem; line-height: 1.45; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: #fff0e8; color: var(--orange-600); margin-bottom: 18px; }
.card-icon svg { width: 25px; height: 25px; }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 0.92rem; }
.card-link { color: var(--orange-600); font-size: 0.88rem; font-weight: 900; text-underline-offset: 4px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: white;
  padding: clamp(28px, 4vw, 44px);
}
.feature::after { position: absolute; right: -70px; bottom: -100px; content: ""; width: 280px; height: 280px; border-radius: 50%; background: rgba(242, 101, 34, 0.13); }
.feature > * { position: relative; z-index: 1; }
.feature h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.feature p, .feature li { color: #c3d1de; }
.check-list { padding: 0; list-style: none; margin: 24px 0; }
.check-list li { position: relative; padding-left: 27px; margin: 10px 0; }
.check-list li::before { position: absolute; left: 0; top: 1px; content: "✓"; color: var(--orange-400); font-weight: 900; }
.marketplace-value-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); gap: 26px; align-items: start; }
.jobsite-value, .trukker-value {
  min-width: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  padding: clamp(26px, 4vw, 42px);
}
.jobsite-value h2, .trukker-value h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); }
.jobsite-value > p, .trukker-value > p, .jobsite-value li, .trukker-value li { color: #c3d1de; }
.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: #fff0e8;
  color: #ad3f0e;
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.labor-calculator {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
  padding: clamp(20px, 3vw, 28px);
}
.calc-intro h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); margin: 13px 0 8px; }
.calc-intro p { color: var(--slate); font-size: 0.9rem; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.calc-field label { display: block; color: var(--ink); font-size: 0.78rem; font-weight: 850; line-height: 1.35; margin-bottom: 7px; }
.calc-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd6df;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
}
.calc-field input:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.13); outline: 0; }
.input-prefix { position: relative; }
.input-prefix > span { position: absolute; left: 13px; top: 50%; z-index: 1; color: var(--slate); font-weight: 850; transform: translateY(-50%); }
.input-prefix input { padding-left: 29px; }
.calc-result { display: grid; grid-template-columns: minmax(150px, 0.75fr) 1.25fr; gap: 18px; align-items: center; border-radius: 13px; background: var(--navy-950); color: white; margin-top: 18px; padding: 17px 18px; }
.calc-result span { display: block; color: #aebed0; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.calc-result strong { display: block; color: var(--orange-400); font-family: var(--font-display); font-size: 1.85rem; margin-top: 2px; }
.calc-result p { color: #c2d0dc; font-size: 0.82rem; line-height: 1.5; margin: 0; }
.micro-disclaimer { color: var(--slate); font-size: 0.73rem; line-height: 1.55; margin: 14px 0 0; }
.payout-demo {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 30px);
}
.payout-demo.compact { margin: 26px 0 22px; padding: 22px; }
.payout-demo-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.payout-demo-amount { text-align: right; }
.payout-demo-amount span { display: block; color: var(--slate); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.payout-demo-amount strong { display: block; color: var(--orange-600); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; margin-top: 4px; }
.payout-demo h3 { font-size: 1.13rem; margin-bottom: 16px; }
.payout-lines { display: grid; gap: 0; border-top: 1px solid var(--line); }
.payout-line { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); padding: 10px 0; font-size: 0.8rem; }
.payout-line span { color: var(--slate); }
.payout-line strong { text-align: right; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.workflow-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); padding: 24px; }
.workflow-card > span { display: block; color: var(--orange-500); font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 24px; }
.workflow-card h3 { font-size: 1.02rem; }
.workflow-card p { color: var(--slate); font-size: 0.86rem; line-height: 1.6; margin: 0; }
.number-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { counter-increment: step; border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 28px; }
.step::before { content: "0" counter(step); display: inline-block; color: var(--orange-500); font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 28px; }
.step h3 { font-size: 1.08rem; }
.step p { color: var(--slate); font-size: 0.92rem; }
.area-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.place-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.place { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-dark); border-radius: 12px; background: rgba(255, 255, 255, 0.045); color: white; padding: 13px 15px; font-size: 0.88rem; font-weight: 850; }
.place svg { width: 17px; height: 17px; color: var(--orange-400); }
.section-cream .place { border-color: var(--line); background: white; color: var(--ink); box-shadow: var(--shadow-sm); }
.boundary { border-left: 4px solid var(--orange-500); border-radius: 0 var(--radius) var(--radius) 0; background: #fff5ef; color: var(--ink); padding: 24px 26px; }
.boundary h3 { margin-bottom: 8px; }
.boundary p:last-child { margin-bottom: 0; }
.relationship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.relationship-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 28px; }
.relationship-card .tag { display: inline-flex; border-radius: 999px; background: var(--mist); color: var(--slate); padding: 5px 9px; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }

.form-shell { border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 40px); }
.form-shell.dark { border-color: var(--line-dark); background: rgba(6, 21, 35, 0.8); color: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 15px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; font-size: 0.8rem; font-weight: 850; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd6df;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  padding: 11px 13px;
}
.field textarea { min-height: 112px; resize: vertical; }
.dark .field input, .dark .field select, .dark .field textarea { border-color: rgba(255, 255, 255, 0.18); background: var(--navy-950); color: white; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.13); outline: 0; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; border-radius: 12px; background: var(--mist); padding: 13px; margin: 8px 0 16px; }
.dark .consent { background: rgba(255, 255, 255, 0.05); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange-500); }
.consent label { color: var(--slate); font-size: 0.78rem; line-height: 1.5; }
.dark .consent label { color: #bccbd9; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { display: none; border-radius: 10px; padding: 12px 14px; margin-top: 14px; font-size: 0.9rem; font-weight: 800; }
.form-message.is-visible { display: block; }
.form-message.success { border: 1px solid #63bd9f; background: #eaf8f3; color: #116849; }
.form-message.error { border: 1px solid #e09a9a; background: #fff0f0; color: #8f2828; }
.dark .form-message.success { background: rgba(19, 135, 101, 0.16); color: #80e0c0; }
.dark .form-message.error { background: rgba(188, 60, 60, 0.17); color: #ffaaaa; }
.form-note { color: var(--slate); font-size: 0.78rem; margin-top: 12px; text-align: center; }
.dark .form-note { color: #94a7b8; }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: white; padding: 0 20px; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 0; font-weight: 850; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange-500); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--slate); padding: 0 0 20px; margin: 0; }

.page-hero { position: relative; isolation: isolate; overflow: hidden; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); color: white; padding: 70px 0 76px; }
.page-hero .lede { color: #c8d6e3; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: #aebed0; font-size: 0.78rem; font-weight: 700; margin-bottom: 28px; }
.breadcrumb a { color: white; }
.content { font-size: 1.02rem; }
.content h2 { font-size: clamp(1.65rem, 3vw, 2.45rem); margin-top: 48px; }
.content h3 { margin-top: 30px; }
.content p, .content li { color: #35475a; }
.content a { color: #c84b13; }
.content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.content th, .content td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.content th { background: var(--mist); }
.source-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); padding: 22px; margin: 28px 0; }
.source-card p:last-child { margin-bottom: 0; }
.cta-band { background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); color: var(--navy-950); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-grid h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); margin-bottom: 9px; }
.cta-grid p { margin: 0; color: var(--navy-850); }

.site-footer { background: var(--navy-950); color: white; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand img { width: 84px; height: 84px; border-radius: 14px; margin-bottom: 16px; }
.footer-brand p { color: #9fb0c0; max-width: 310px; font-size: 0.88rem; }
.site-footer h3 { color: white; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 15px; }
.footer-links a { display: block; color: #aebdcb; font-size: 0.86rem; margin: 9px 0; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line-dark); color: #8195a8; font-size: 0.76rem; margin-top: 38px; padding-top: 20px; }
.footer-bottom button { border: 0; background: transparent; color: #b6c5d4; text-decoration: underline; cursor: pointer; padding: 0; }
.legal-note { border: 1px solid var(--line-dark); border-radius: 12px; color: #a7b8c8; font-size: 0.74rem; line-height: 1.5; margin-top: 26px; padding: 13px; }

.toast { position: fixed; right: 18px; bottom: 18px; z-index: 120; max-width: 340px; border-radius: 12px; background: white; color: var(--ink); box-shadow: var(--shadow-lg); padding: 14px 16px; font-size: 0.88rem; font-weight: 750; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-grid, .area-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-grid { padding: 64px 0 84px; }
  .hero-copy { max-width: 760px; }
  .hero-panel { width: min(620px, 100%); margin-inline: auto; }
  .assurance-grid { grid-template-columns: 1fr 1fr; }
  .assurance-item:nth-child(2) { border-right: 0; }
  .assurance-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .marketplace-value-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 30px, var(--max)); }
  .status-bar { font-size: 0.72rem; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 50px; height: 50px; }
  .mobile-menu { inset-block-start: 99px; }
  .hero-grid { padding: 48px 0 70px; }
  .display { font-size: clamp(2.5rem, 15vw, 4rem); }
  .button-row .btn { width: 100%; }
  .float-card { position: static; width: 100%; margin-top: 12px; }
  .assurance-grid, .card-grid, .feature-grid, .number-grid, .relationship-grid, .workflow-grid, .footer-grid { grid-template-columns: 1fr; }
  .assurance-item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .assurance-item:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .calc-grid, .calc-result { grid-template-columns: 1fr; }
  .payout-demo-head { display: block; }
  .payout-demo-amount { text-align: left; margin-top: 14px; }
  .payout-line { display: block; }
  .payout-line strong { display: block; text-align: left; margin-top: 3px; }
  .field-full { grid-column: auto; }
  .place-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-grid .btn { width: 100%; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom > * { display: block; margin: 8px 0; }
  .content table { display: block; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
