:root {
  --ink: #111717;
  --muted: #5b6562;
  --paper: #f7f5f0;
  --white: #ffffff;
  --forest: #143b35;
  --forest-deep: #0d2422;
  --teal: #22a697;
  --blue: #326fd1;
  --coral: #ef6547;
  --amber: #f0b44e;
  --line: rgba(17, 23, 23, 0.12);
  --shadow: 0 22px 55px rgba(16, 22, 22, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 36px;
  color: var(--white);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--forest);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: currentColor;
}

.desktop-nav a {
  opacity: 0.82;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta {
  padding: 0 16px;
  background: var(--white);
  color: var(--forest);
}

.site-header.is-scrolled .header-cta {
  background: var(--forest);
  color: var(--white);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  min-width: 188px;
  padding: 0 20px;
}

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(239, 101, 71, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  backdrop-filter: blur(14px);
}

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

.button:focus-visible,
.header-cta:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(34, 166, 151, 0.45);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px 36px 126px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 23, 22, 0.9) 0%, rgba(9, 23, 22, 0.72) 38%, rgba(9, 23, 22, 0.25) 72%, rgba(9, 23, 22, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 23, 22, 0.42) 0%, rgba(9, 23, 22, 0.08) 48%, rgba(9, 23, 22, 0.36) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 100%;
  font-size: 5.1rem;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.27rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-status {
  position: absolute;
  z-index: 1;
  left: 36px;
  right: 36px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-status div {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(13, 36, 34, 0.35);
}

.status-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-item {
  min-width: 0;
  min-height: 120px;
  padding: 28px 36px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 1.05rem;
}

.proof-item span {
  color: var(--muted);
}

.section {
  padding: 92px 36px;
}

.section > *,
.site-footer > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.split,
.section-heading,
.process-grid,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: start;
}

.section h2 {
  font-size: 3.25rem;
  max-width: 790px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p,
.lead-stack p,
.process-grid p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-stack {
  display: grid;
  gap: 18px;
}

.demo-section {
  background: var(--forest-deep);
  color: var(--white);
}

.demo-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.chat-panel,
.home-panel {
  min-height: 490px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.chat-panel {
  display: flex;
  flex-direction: column;
}

.chat-header,
.home-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.chat-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--muted);
}

.dot.online {
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(34, 166, 151, 0.14);
}

.chat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 166, 151, 0.16);
  color: #9ef0e7;
  font-size: 0.82rem;
  font-weight: 760;
}

.chat-log {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
}

.message {
  max-width: 76%;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--white);
}

.message.user {
  align-self: flex-end;
  background: var(--blue);
}

.message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-panel {
  padding-bottom: 20px;
}

.home-panel h3 {
  margin: 0;
  font-size: 1.1rem;
}

.home-panel-header span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.scenario-grid {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.scenario-button {
  min-height: 74px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.scenario-button span {
  font-weight: 760;
}

.scenario-button small {
  color: rgba(255, 255, 255, 0.58);
}

.scenario-button:hover,
.scenario-button.active {
  border-color: rgba(34, 166, 151, 0.72);
  background: rgba(34, 166, 151, 0.16);
}

.scenario-apply {
  width: calc(100% - 40px);
  min-width: 0;
  margin: 0 20px;
  border: 0;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.signal-list div {
  min-width: 0;
  padding: 15px 12px;
  background: rgba(255, 255, 255, 0.07);
}

.signal-list span,
.signal-list strong {
  display: block;
  text-align: center;
}

.signal-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.signal-list strong {
  margin-top: 3px;
  font-size: 1.02rem;
}

.sanity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(20, 59, 53, 0.96), rgba(20, 59, 53, 0.82)),
    var(--forest);
  color: var(--white);
}

.sanity-section > * {
  max-width: none;
}

.sanity-copy {
  max-width: 570px;
  justify-self: end;
}

.sanity-copy h2 {
  color: var(--white);
}

.sanity-copy p {
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.sanity-board {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.sanity-board article {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.sanity-board span,
.sanity-board strong,
.sanity-board p {
  display: block;
}

.sanity-board span {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.sanity-board strong {
  margin-top: 8px;
  color: var(--white);
  font-size: 1.16rem;
}

.sanity-board p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.home-fit-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.76fr) minmax(250px, 0.9fr) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.home-fit-panel h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(1.28rem, 2.4vw, 2rem);
}

.home-fit-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.12);
}

.home-fit-option {
  min-height: 42px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-weight: 820;
  text-align: left;
}

.home-fit-option:hover,
.home-fit-option:focus-visible,
.home-fit-option.active {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  outline: 0;
}

.home-fit-output {
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.home-fit-output strong {
  display: block;
  color: var(--amber);
  font-size: 1.1rem;
}

.home-fit-output p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.home-fit-apply {
  align-self: stretch;
  white-space: nowrap;
}

.access-boundary {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.access-boundary article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.access-boundary span,
.access-boundary strong,
.access-boundary p {
  display: block;
}

.access-boundary span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.access-boundary strong {
  margin-top: 8px;
  color: var(--white);
  line-height: 1.35;
}

.access-boundary p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.feature-grid,
.buyer-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.feature-card,
.buyer-grid article,
.price-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 300px;
  padding: 24px;
}

.feature-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--forest);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--white);
  border-radius: 4px;
}

.feature-icon.safety {
  background: var(--coral);
}

.feature-icon.routine {
  background: var(--blue);
}

.feature-icon.energy {
  background: var(--amber);
}

.feature-icon.care {
  background: var(--teal);
}

.feature-card h3,
.buyer-grid strong,
.price-card h3,
.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.16rem;
}

.feature-card p,
.buyer-grid p,
.price-card p,
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.operating-system {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.process-step span {
  color: var(--coral);
  font-weight: 820;
}

.rulebook-section {
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.rulebook-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.rulebook-lanes {
  display: grid;
  gap: 12px;
}

.rulebook-lanes article,
.rulebook-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 22, 22, 0.08);
}

.rulebook-lanes article {
  display: grid;
  grid-template-columns: 92px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 22px;
  background: var(--white);
}

.rulebook-lanes span,
.rulebook-card span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
}

.rulebook-lanes strong {
  color: var(--ink);
  line-height: 1.32;
}

.rulebook-lanes p,
.rulebook-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.rulebook-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(239, 101, 71, 0.18), rgba(34, 166, 151, 0.12)),
    var(--white);
}

.rulebook-card strong {
  color: var(--forest);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
}

.buyer-section {
  background: var(--forest);
  color: var(--white);
}

.buyer-section .section-kicker,
.buyer-section h2 {
  color: var(--white);
}

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

.buyer-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.buyer-grid strong {
  color: var(--white);
}

.buyer-grid p {
  color: rgba(255, 255, 255, 0.72);
}

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

.pricing-note {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border-left: 4px solid var(--coral);
  background: rgba(239, 101, 71, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.price-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(239, 101, 71, 0.5);
  box-shadow: var(--shadow);
}

.plan-badge {
  align-self: flex-start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(239, 101, 71, 0.12);
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 820;
}

.price {
  margin: 22px 0 0;
  color: var(--forest);
  font-size: 3rem;
  font-weight: 820;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  font-weight: 760;
}

.cta-section {
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.cta-section > * {
  max-width: none;
}

.cta-copy,
.signup-form {
  max-width: 560px;
}

.cta-copy {
  justify-self: end;
}

.cta-section h2 {
  color: var(--white);
}

.cta-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.signup-form {
  display: grid;
  gap: 14px;
  width: 100%;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 720;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.signup-form select option {
  color: var(--ink);
}

.signup-form textarea {
  resize: vertical;
  min-height: 118px;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 34px 36px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand .brand-mark {
  background: var(--forest);
  color: var(--white);
}

.site-footer p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 720;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 22px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding: 110px 22px 118px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-copy {
    font-size: 1.14rem;
    max-width: 100%;
  }

  .hero-status {
    left: 22px;
    right: 22px;
  }

  .proof-band,
  .split,
  .section-heading,
  .process-grid,
  .cta-section,
  .demo-shell,
  .sanity-section,
  .feature-grid,
  .rulebook-grid,
  .rulebook-lanes article,
  .buyer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-fit-panel {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 22px;
  }

  .section h2 {
    font-size: 2.45rem;
  }

  .chat-panel,
  .home-panel {
    min-height: auto;
  }

  .chat-log {
    min-height: 360px;
  }

  .feature-card {
    min-height: 230px;
  }

  .cta-copy {
    justify-self: start;
  }

  .sanity-copy {
    justify-self: start;
    max-width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    min-height: 82svh;
    padding-top: 98px;
    padding-bottom: 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 23, 22, 0.9), rgba(9, 23, 22, 0.58)),
      linear-gradient(0deg, rgba(9, 23, 22, 0.52), rgba(9, 23, 22, 0.1));
  }

  .hero h1 {
    font-size: 2.22rem;
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-content,
  .hero-copy {
    width: min(100%, 346px);
    max-width: 346px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-status {
    display: none;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .proof-band {
    max-width: 100vw;
    overflow: hidden;
  }

  .proof-item {
    padding-left: 22px;
    padding-right: 22px;
  }

  .proof-item span {
    display: block;
    max-width: calc(100vw - 44px);
  }

  .message {
    max-width: 92%;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .home-fit-apply {
    white-space: normal;
  }

  .section h2 {
    font-size: 2rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2rem;
    white-space: normal;
  }
}

/* === Phase 2+ upgrade: sticky mobile CTA (self-contained, namespaced) === */
.mcta{position:fixed;left:0;right:0;bottom:0;z-index:9000;display:none;gap:10px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0px));
  background:rgba(13,16,22,.93);border-top:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transform:translateY(120%);transition:transform 220ms ease;font-family:inherit}
.mcta.visible{transform:translateY(0)}
.mcta a{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:50px;border-radius:10px;font-weight:700;font-size:.95rem;text-decoration:none;line-height:1}
.mcta .mcta-call{flex:0 0 112px;color:#fff;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.26)}
.mcta .mcta-go{flex:1;color:#0c0f14;background:#fff;border:1px solid #fff}
.mcta svg{flex:none}
@media(max-width:768px){.mcta{display:flex}}
@media(prefers-reduced-motion:reduce){.mcta{transition:none}}
