:root {
  --c-ink: #090d12;
  --c-night: #0f141b;
  --c-panel: #171e27;
  --c-line: rgba(237, 241, 244, 0.14);
  --c-paper: #f4f0e8;
  --c-bone: #e7e0d4;
  --c-soft: #d8d0c2;
  --c-text: #111821;
  --c-muted: #64707d;
  --c-muted-dark: #aab4bd;
  --c-accent: #f06a3c;
  --c-accent-hi: #ff7d51;
  --c-cyan: #79d7cf;
  --c-green: #85d9a3;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Bricolage Grotesque", Inter, "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1240px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--c-ink);
  color: var(--c-paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 46px;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 34px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

main,
.footer {
  position: relative;
  z-index: 3;
}

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  pointer-events: none;
}

.page-grid {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 13px 32px;
  color: var(--c-paper);
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.92), rgba(9, 13, 18, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
  background: rgba(9, 13, 18, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 240, 232, 0.22);
  border-radius: var(--radius);
  background: var(--c-cyan);
  color: var(--c-ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 700;
}

.brand small {
  color: var(--c-muted-dark);
  font-family: var(--font-mono);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(244, 240, 232, 0.76);
  font-size: 14px;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--c-paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-weight: 700;
  line-height: 1;
  white-space: normal;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 4px;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-ink);
}

.btn-primary:hover {
  border-color: var(--c-accent-hi);
  background: var(--c-accent-hi);
}

.btn-secondary {
  border-color: rgba(244, 240, 232, 0.22);
  background: rgba(244, 240, 232, 0.04);
  color: var(--c-paper);
}

.btn-sm {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn-wide {
  width: 100%;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 96px 0 52px;
  background:
    linear-gradient(110deg, rgba(15, 20, 27, 0.98), rgba(9, 13, 18, 0.94) 58%, rgba(13, 24, 30, 0.98)),
    var(--c-ink);
  color: var(--c-paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  font-size: 50px;
}

.hero-lead,
.section-copy {
  max-width: 710px;
  color: var(--c-muted-dark);
  font-size: 17px;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hero-lead {
  margin-bottom: 22px;
}

.hero-cta {
  margin-bottom: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 730px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(244, 240, 232, 0.15);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.04);
  list-style: none;
}

.proof-strip li {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid rgba(244, 240, 232, 0.12);
}

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

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--c-paper);
  font-family: var(--font-mono);
  font-size: 13px;
}

.proof-strip span {
  margin-top: 6px;
  color: rgba(244, 240, 232, 0.66);
  font-size: 13px;
  line-height: 1.38;
}

.proof-section {
  border-top: 1px solid rgba(17, 24, 33, 0.08);
}

.trust-stack {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-top: 24px;
}

.trust-stack span {
  position: relative;
  display: block;
  padding: 12px 14px 12px 34px;
  border: 1px solid rgba(17, 24, 33, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  color: var(--c-text);
  font-size: 14px;
}

.trust-stack span::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  content: "";
}

.sample-table {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 33, 0.16);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(17, 24, 33, 0.08);
}

.sample-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(17, 24, 33, 0.12);
  background: var(--c-night);
  color: var(--c-paper);
}

.sample-head span,
.sample-head strong {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.sample-head span {
  color: var(--c-muted-dark);
  text-transform: uppercase;
}

.sample-head strong {
  color: var(--c-cyan);
}

.sample-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 1px;
  border-bottom: 1px solid rgba(17, 24, 33, 0.1);
}

.sample-row:last-child {
  border-bottom: 0;
}

.sample-row span {
  min-width: 0;
  padding: 15px 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.38;
  overflow-wrap: break-word;
}

.sample-row-head span {
  background: rgba(17, 24, 33, 0.05);
  color: var(--c-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(244, 240, 232, 0.08), rgba(244, 240, 232, 0.02));
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visual-status {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(9, 13, 18, 0.82);
  backdrop-filter: blur(10px);
}

.visual-status span,
.visual-status strong {
  min-width: 0;
  padding: 11px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  overflow-wrap: anywhere;
}

.visual-status span {
  color: var(--c-muted-dark);
}

.visual-status strong {
  color: var(--c-cyan);
  font-weight: 500;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-light {
  background: var(--c-paper);
  color: var(--c-text);
}

.section-dark {
  background: linear-gradient(180deg, var(--c-night), var(--c-ink));
  color: var(--c-paper);
}

.two-col,
.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.action-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--c-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--c-cyan);
}

.section-light .section-copy {
  color: var(--c-muted);
}

.wide-head {
  max-width: 940px;
  margin-bottom: 32px;
}

.loss-list {
  display: grid;
  border-top: 1px solid rgba(17, 24, 33, 0.16);
}

.loss-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 24, 33, 0.16);
}

.loss-list span,
.mechanic-grid span,
.deliverables span,
.agenda-card span {
  color: var(--c-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.loss-list h3,
.loss-list p {
  grid-column: 2;
}

.loss-list h3 {
  margin-bottom: 8px;
}

.loss-list p,
.deliverables p,
.fit-grid p {
  margin: 0;
  color: var(--c-muted);
  overflow-wrap: break-word;
}

.workflow-panel {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.04);
}

.workflow-panel img {
  width: 100%;
}

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

.mechanic-grid article,
.deliverables div,
.fit-grid article,
.agenda-card {
  min-width: 0;
  border-radius: var(--radius);
}

.mechanic-grid article {
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: rgba(244, 240, 232, 0.05);
}

.mechanic-grid h3 {
  margin-top: 42px;
}

.mechanic-grid p {
  margin: 0;
  color: var(--c-muted-dark);
}

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

.deliverables div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 33, 0.14);
  background: rgba(255, 255, 255, 0.38);
}

.deliverables p {
  margin-top: 28px;
  color: var(--c-text);
  font-size: 17px;
}

.fit-note {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(121, 215, 207, 0.34);
  border-radius: var(--radius);
  background: rgba(121, 215, 207, 0.08);
}

.fit-note strong {
  color: var(--c-paper);
}

.fit-note span {
  color: var(--c-muted-dark);
}

.calc-console {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: var(--radius);
  background: rgba(23, 30, 39, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
}

.range-row span {
  min-width: 0;
  color: var(--c-paper);
  font-weight: 700;
}

.range-row strong {
  min-width: 72px;
  color: var(--c-cyan);
  font-family: var(--font-mono);
  font-weight: 500;
  text-align: right;
}

.range-row input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--c-accent);
}

.calc-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
}

.calc-result div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(244, 240, 232, 0.12);
}

.calc-result div:last-child {
  border-right: 0;
}

.calc-result span {
  display: block;
  min-height: 38px;
  color: var(--c-muted-dark);
  font-size: 13px;
}

.calc-result strong {
  display: block;
  margin-top: 10px;
  color: var(--c-paper);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.06;
}

.calc-comment {
  margin: 0;
  padding: 20px 24px;
  color: var(--c-muted-dark);
  font-size: 14px;
}

.calc-console .btn {
  margin: 0 24px 24px;
  width: calc(100% - 48px);
}

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

.fit-grid article {
  padding: 24px;
  border: 1px solid rgba(17, 24, 33, 0.14);
  background: rgba(255, 255, 255, 0.36);
}

.fit-grid article.is-positive {
  border-color: rgba(16, 116, 99, 0.24);
  background: rgba(121, 215, 207, 0.13);
}

.fit-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: var(--c-muted);
}

.fit-grid li {
  padding-left: 4px;
}

.agenda-card {
  padding: 26px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  background: rgba(244, 240, 232, 0.05);
}

.agenda-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--c-cyan);
}

.agenda-card p {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
  color: var(--c-paper);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
  background: var(--c-ink);
  color: var(--c-muted-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, var(--container));
  margin-inline: auto;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  z-index: 55;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: var(--c-accent);
  color: var(--c-ink);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 18, 0.72);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  border: 1px solid rgba(244, 240, 232, 0.14);
  border-radius: var(--radius);
  background: var(--c-paper);
  color: var(--c-text);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-soft);
  border-radius: var(--radius);
  background: transparent;
  color: var(--c-text);
}

.modal-head {
  padding: 32px 32px 10px;
}

.modal-head h2 {
  margin-bottom: 14px;
  padding-right: 48px;
  font-size: 34px;
}

.modal-head p:not(.section-kicker) {
  max-width: 600px;
  color: var(--c-muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 32px 32px;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.lead-form fieldset {
  padding: 0;
  border: 0;
}

.lead-form legend,
.lead-form label > span {
  color: var(--c-text);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--c-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--c-text);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--c-accent);
  outline: 2px solid rgba(240, 106, 60, 0.16);
}

.span-2 {
  grid-column: 1 / -1;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.channel-choice {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  min-height: 48px;
  border: 1px solid var(--c-soft);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--c-text);
  font-size: 14px;
  font-weight: 700;
}

.channel-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.channel-choice svg {
  width: 18px;
  height: 18px;
}

.channel-choice:has(input:checked) {
  border-color: var(--c-accent);
  background: rgba(240, 106, 60, 0.12);
}

.form-note {
  margin: 0;
  color: var(--c-muted);
  font-size: 13px;
}

.form-note.is-error {
  color: #9d2f20;
}

.form-note.is-success {
  color: #246b4f;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1280px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .two-col,
  .action-grid {
    gap: 34px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .mechanic-grid {
    grid-template-columns: 1fr;
  }

  .mechanic-grid article {
    min-height: 0;
  }

  .mechanic-grid h3 {
    margin-top: 24px;
  }
}

@media (max-width: 820px) {
  .page-grid {
    width: min(100% - 36px, var(--container));
  }

  .site-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav,
  .site-header .btn {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 88px 0 44px;
  }

  .hero-copy h1,
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead,
  .section-copy {
    font-size: 16px;
  }

  .proof-strip,
  .deliverables,
  .fit-grid,
  .calc-result {
    grid-template-columns: 1fr;
  }

  .sample-row {
    grid-template-columns: 1fr;
  }

  .sample-row-head {
    display: none;
  }

  .sample-row span {
    padding: 13px 14px;
  }

  .proof-strip li,
  .calc-result div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.12);
  }

  .proof-strip li:last-child,
  .calc-result div:last-child {
    border-bottom: 0;
  }

  .visual-status {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .section {
    padding: 70px 0;
  }

  .loss-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .deliverables div {
    min-height: 0;
  }

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

  .lead-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .modal-head {
    padding: 26px 20px 8px;
  }

  .modal-head h2 {
    font-size: 29px;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-copy h1,
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

  .btn {
    width: 100%;
  }

  .range-row,
  .calc-result div,
  .calc-comment {
    padding-inline: 18px;
  }

  .calc-console .btn {
    margin-inline: 18px;
    width: calc(100% - 36px);
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .signal-canvas {
    display: none;
  }
}
