:root {
  --black: #0d0d0d;
  --black-soft: #161616;
  --orange: #f97316;
  --orange-dark: #c9510c;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --grey: #3d3d3d;
  --line: #d8d8d8;
  --dark-line: #292929;
  --max: 1160px;
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 5.2rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.4rem;
}

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

p {
  color: var(--grey);
}

.dark-section p,
.hero p,
.page-hero p,
.site-footer p {
  color: rgba(255, 255, 255, 0.74);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 40px, 820px);
}

.section {
  padding: 88px 0;
}

.light-section {
  background: var(--off-white);
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.split-section {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.top-align {
  align-items: start;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 12px;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  transition: top var(--ease);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: min(100% - 32px, 1240px);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  padding: 9px 11px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}

.primary-nav a:hover,
.primary-nav a.active {
  background: rgba(249, 115, 22, 0.16);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.72;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.84) 43%, rgba(13, 13, 13, 0.35) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.84), rgba(13, 13, 13, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 68px 0 110px;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  font-size: 1.2rem;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 13, 13, 0.82);
}

.hero-ticker span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-ticker span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

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

.button.primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.button.primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.ghost:hover {
  border-color: var(--orange);
}

.page-hero {
  padding: 86px 0;
  overflow: hidden;
}

.page-hero h1 {
  font-size: 4.6rem;
}

.hero-proof {
  min-height: 290px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 36px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.23), rgba(255, 255, 255, 0.04)),
    var(--black-soft);
}

.hero-proof strong {
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 6rem;
  line-height: 0.9;
}

.hero-proof span {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.stats-band {
  background: var(--black);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 28px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid strong {
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 3.2rem;
  line-height: 0.9;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step,
.product-card,
.info-panel,
.faq details,
.agreement-grid article,
.reason-grid article,
.feature-grid article,
.value-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step {
  min-height: 300px;
  padding: 26px;
  display: grid;
  align-content: start;
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--black);
  color: var(--orange);
  border-radius: 8px;
}

.icon {
  width: 24px;
  height: 24px;
}

.step span {
  color: var(--orange);
  font-weight: 900;
}

.step p,
.product-card p {
  margin-bottom: 0;
}

.calculator {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--off-white);
  box-shadow: 0 24px 60px rgba(13, 13, 13, 0.08);
}

.calc-control {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.calc-control label {
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.calc-control output {
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.calc-results div {
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
}

.calc-results span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calc-results strong {
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.fine-print {
  font-size: 0.9rem;
}

.earnings-table {
  display: grid;
  gap: 8px;
}

.earnings-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.brand-strip span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--black-soft);
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product-card {
  min-height: 230px;
  padding: 20px;
}

.dark-section .product-card,
.dark-section .step,
.dark-section .info-panel,
.dark-section .faq details,
.dark-section .agreement-grid article,
.dark-section .reason-grid article,
.dark-section .feature-grid article,
.dark-section .value-grid article {
  border-color: var(--dark-line);
  background: var(--black-soft);
  color: var(--white);
}

.product-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 1.05rem;
}

.dark-section .product-card strong {
  color: var(--white);
}

.statement-section {
  background: var(--orange);
  color: var(--black);
  text-align: center;
}

.statement-section .eyebrow,
.statement-section p {
  color: var(--black);
}

.statement-section h2 {
  margin-bottom: 0;
  font-size: 4rem;
}

.final-cta {
  text-align: center;
}

.final-cta .button-row,
.final-cta .button {
  margin-inline: auto;
}

.final-cta h2 {
  color: var(--orange);
}

.two-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-panel {
  padding: 28px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list .icon {
  color: var(--orange);
}

.machine-overview .machine-figure {
  justify-self: center;
}

.machine-figure {
  position: relative;
  margin: 0;
  max-width: 500px;
}

.machine-figure img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dark-section .table-wrap {
  border-color: var(--dark-line);
  background: var(--black-soft);
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.dark-section th,
.dark-section td {
  border-bottom-color: var(--dark-line);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.dark-section th {
  color: var(--white);
}

td {
  color: var(--grey);
}

.dark-section td {
  color: rgba(255, 255, 255, 0.74);
}

.agreement-section {
  background: var(--white);
}

.agreement-grid,
.reason-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.agreement-grid article,
.reason-grid article,
.value-grid article {
  min-height: 165px;
  padding: 22px;
}

.agreement-grid strong,
.reason-grid strong,
.value-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.agreement-grid span,
.reason-grid span,
.value-grid span {
  color: var(--grey);
}

.dark-section .reason-grid span,
.dark-section .value-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0;
}

.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.faq summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.4rem;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  padding: 0 20px 20px;
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-grid article {
  min-height: 164px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 22px;
}

.feature-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--orange);
  border-radius: 8px;
}

.feature-grid strong {
  font-weight: 900;
  text-transform: uppercase;
}

.copy-block {
  max-width: 680px;
}

.map-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 46px 46px;
}

.map-pin {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 10px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--white);
}

.map-panel strong,
.map-panel span {
  position: relative;
}

.map-panel strong {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.area-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.area-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.founder-section .split {
  grid-template-columns: 260px minmax(0, 1fr);
}

.founder-mark {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--black-soft);
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 800;
}

.lead-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
}

.dark-section .lead-form {
  border-color: var(--dark-line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid label span {
  color: var(--orange);
}

.form-grid .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  background: var(--off-white);
  color: var(--black);
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(249, 115, 22, 0.24);
  border-color: var(--orange);
}

.form-note {
  margin: 14px 0 0;
  color: var(--grey);
  font-size: 0.88rem;
}

.form-note.is-error {
  color: #9b2f00;
  font-weight: 800;
}

.contact-promise {
  max-width: 260px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-promise strong {
  display: block;
  color: var(--orange);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.contact-promise span {
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 52px 0 28px;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--dark-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-grid .brand {
  flex-basis: 80px;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.footer-grid .brand-logo {
  width: 100%;
  height: 100%;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.error-page {
  min-height: 70svh;
  display: grid;
  align-items: center;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.3rem;
  }

  h2,
  .statement-section h2 {
    font-size: 3rem;
  }

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

  .feature-grid,
  .agreement-grid,
  .reason-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid var(--dark-line);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 14px 10px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .split,
  .founder-section .split,
  .two-panels {
    grid-template-columns: 1fr;
  }

  .steps,
  .stats-grid,
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:last-child {
    min-height: 96px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding-top: 56px;
    padding-bottom: 180px;
  }

  .hero-ticker {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ticker span:nth-child(3) {
    border-left: 0;
  }

  .page-hero h1 {
    font-size: 3.7rem;
  }
}

@media (max-width: 680px) {
  .container,
  .container.narrow {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    gap: 14px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .brand {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .footer-grid .brand {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

  h1 {
    font-size: 3.2rem;
  }

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

  h3 {
    font-size: 1.45rem;
  }

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

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 13, 13, 0.97), rgba(13, 13, 13, 0.72)),
      linear-gradient(0deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.2));
  }

  .hero-ticker span {
    min-height: 50px;
    font-size: 0.78rem;
  }

  .button {
    width: 100%;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .product-grid,
  .feature-grid,
  .agreement-grid,
  .reason-grid,
  .value-grid,
  .calc-results,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .step,
  .feature-grid article {
    min-height: auto;
  }

  .earnings-table div,
  .footer-legal {
    display: grid;
  }

  .lead-form,
  .calculator,
  .info-panel {
    padding: 20px;
  }

  .map-panel {
    min-height: 330px;
  }

  .founder-mark {
    width: 160px;
    height: 160px;
    font-size: 4rem;
  }
}
