@font-face {
  font-family: "FrauncesMF";
  src: url("/fonts/fraunces-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "FrauncesMF";
  src: url("/fonts/fraunces-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "InterMF";
  src: url("/fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "InterMF";
  src: url("/fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "InterMF";
  src: url("/fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "InterMF";
  src: url("/fonts/inter-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "InterMF";
  src: url("/fonts/inter-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #faf8f1;
  --surface: #ffffff;
  --surface-soft: #fbf7ef;
  --ink: #0b1f2e;
  --body: #1f2937;
  --muted: #5f6868;
  --line: #e7e2da;
  --line-strong: #ddd5ca;
  --green: #2f8a4b;
  --green-deep: #0f5f3b;
  --green-dark: #0b3d2f;
  --green-soft: #eef5e8;
  --cta: #df5f45;
  --cta-dark: #cb4c35;
  --paper: #f6efe3;
  --old-paper: #f5ead7;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 14px rgba(15, 46, 39, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 46, 39, 0.08);
  --shadow-lg: 0 20px 56px rgba(15, 46, 39, 0.1);
  --font-sans:
    "InterMF", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-display: "FrauncesMF", Georgia, "Times New Roman", serif;
  --page-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(47, 138, 75, 0.06), transparent 28rem),
    radial-gradient(circle at 74% 38%, rgba(223, 95, 69, 0.055), transparent 30rem),
    linear-gradient(180deg, #fbfaf6 0%, #f7f4ed 100%);
  color: var(--body);
  font-family: var(--font-sans);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

svg {
  display: block;
}

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

.site-shell {
  width: min(var(--page-max), calc(100vw - 32px));
  margin: 16px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 64px rgba(23, 31, 38, 0.08);
}

.topbar {
  position: relative;
  z-index: 30;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 0 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  flex: 0 0 auto;
}

.main-nav,
.top-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 46px;
  color: #101827;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.login-link,
.nav-cta {
  text-decoration: none;
}

.main-nav a,
.login-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: var(--green-deep);
  outline: none;
}

.top-actions {
  gap: 24px;
}

.login-link {
  color: #101827;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #e5674d 0%, var(--cta) 100%);
  color: white;
  box-shadow:
    0 12px 24px rgba(223, 95, 69, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 750;
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background: linear-gradient(180deg, #dc5d44 0%, var(--cta-dark) 100%);
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(223, 95, 69, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-cta span,
.primary-button span {
  font-size: 17px;
  line-height: 1;
}

.main-nav .mobile-nav-cta,
.main-nav .mobile-login-link,
.menu-button {
  display: none;
}

.menu-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #253341;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.topbar[data-menu-open="true"] .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar[data-menu-open="true"] .menu-button span:nth-child(2) {
  opacity: 0;
}

.topbar[data-menu-open="true"] .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding: 30px 36px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.36fr);
  gap: 44px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
  padding-top: 10px;
}

.hero-pill {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #f5efe6;
  color: #27372f;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 700;
}

.hero-pill span {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: var(--green-deep);
}

.hero-pill svg,
.tab svg,
.input-shell svg,
.optional-details summary svg,
.status svg,
.benefit-icon svg,
.step-icon svg,
.private-panel svg,
.trust-strip svg,
.compare-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1 {
  width: 100%;
  margin-top: 22px;
  max-width: 500px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 2.65vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.promise {
  margin-top: 18px;
  max-width: 520px;
  color: var(--green-deep);
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  font-weight: 780;
  line-height: 1.18;
}

.promise-delay {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 58%, rgba(223, 95, 69, 0.24) 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lede {
  margin-top: 18px;
  max-width: 475px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.58;
}

.request-card {
  width: min(100%, 430px);
  margin-top: 30px;
  scroll-margin-block: 96px 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
}

.request-card.is-called-out {
  animation: request-card-callout 900ms ease;
}

@keyframes request-card-callout {
  0% {
    box-shadow:
      var(--shadow-md),
      0 0 0 0 rgba(223, 95, 69, 0);
    transform: translateY(0);
  }

  34% {
    box-shadow:
      var(--shadow-lg),
      0 0 0 7px rgba(223, 95, 69, 0.18);
    transform: translateY(-2px);
  }

  100% {
    box-shadow:
      var(--shadow-md),
      0 0 0 0 rgba(223, 95, 69, 0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .request-card.is-called-out {
    animation: none;
    box-shadow:
      var(--shadow-md),
      0 0 0 3px rgba(223, 95, 69, 0.24);
  }
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: #fbf8f4;
}

.tab {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: #404b4b;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.15;
}

.tab + .tab {
  border-left: 1px solid var(--line);
}

.tab svg {
  width: 16px;
  height: 16px;
}

.tab.active {
  color: var(--green-deep);
  background: #ffffff;
}

.tab.active::after {
  content: "";
  position: absolute;
  right: 64px;
  bottom: 0;
  left: 64px;
  height: 2px;
  background: var(--green);
}

.form-body {
  display: grid;
  gap: 11px;
  padding: 18px 16px 17px;
}

label {
  display: grid;
  gap: 9px;
  color: #101827;
  font-size: 12px;
  font-weight: 760;
}

.input-shell {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 0 14px;
}

.input-shell.is-disabled {
  background: #f4f1ec;
  color: #78817d;
}

.input-shell svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #697270;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-size: 13px;
}

input {
  font-weight: 500;
}

input:disabled,
textarea:disabled {
  cursor: not-allowed;
  color: #78817d;
}

textarea {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.4;
}

input::placeholder,
textarea::placeholder {
  color: #8a908d;
}

.field-help {
  color: #5a6560;
  font-size: 12px;
  line-height: 1.45;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font-weight: 650;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.optional-details {
  border-bottom: 1px solid transparent;
}

.optional-details summary {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #263330;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
}

.optional-details summary::-webkit-details-marker {
  display: none;
}

.optional-details summary svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #283630;
  transition: transform 160ms ease;
}

.optional-details[open] summary svg {
  transform: rotate(180deg);
}

.optional-details label {
  margin-top: 4px;
}

.primary-button {
  min-height: 47px;
  width: 100%;
  padding: 0 18px;
  font-size: 14px;
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.request-card[data-mode="zero"] .primary-button:disabled {
  cursor: not-allowed;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d5755;
  font-size: 12px;
  line-height: 1.4;
}

.status svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #263330;
}

.status.error {
  color: #a33b28;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(11, 31, 46, 0.44);
  padding: 20px;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  width: min(390px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(11, 31, 46, 0.22);
  padding: 18px;
}

.modal-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
}

.modal-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
}

.modal-icon svg,
.modal-close svg {
  width: 17px;
  height: 17px;
}

.modal-icon path,
.modal-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.modal-header h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.modal-header p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.modal-close {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #3a4642;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--green);
  color: var(--green-deep);
  outline: none;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.waitlist-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 0 12px;
}

.waitlist-form input:focus {
  border-color: var(--green);
}

.modal-submit {
  min-height: 43px;
  border: 0;
  border-radius: 6px;
  background: var(--green-deep);
  color: #ffffff;
  font-weight: 750;
}

.modal-submit:hover,
.modal-submit:focus-visible {
  background: var(--green-dark);
  outline: none;
}

.modal-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.waitlist-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.waitlist-status.success {
  color: var(--green-deep);
}

.waitlist-status.error {
  color: #a33b28;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.86fr) minmax(390px, 1.42fr);
  gap: 26px;
  align-items: start;
  min-width: 0;
  padding-top: 5px;
}

.visual-label {
  color: #101827;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.old-label {
  grid-column: 1;
}

.new-label {
  grid-column: 2;
  color: var(--green-deep);
}

.new-label span {
  display: block;
  color: var(--green-deep);
}

.old-site-card,
.new-version-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.old-site-card {
  grid-column: 1;
  overflow: hidden;
  margin-top: 12px;
  background: var(--old-paper);
}

.window-dots {
  display: flex;
  gap: 8px;
  height: 28px;
  align-items: center;
  border-bottom: 1px solid #dfd2bf;
  background: #f0e4d3;
  padding: 0 13px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b1aca4;
}

.old-site-card header {
  border-bottom: 1px solid #ded2bf;
  background: #fbf4e8;
  padding: 14px 18px;
}

.old-site-card h2 {
  color: #1f2937;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.15;
}

.old-body {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 236px;
}

.old-body nav {
  display: grid;
  align-content: start;
  border-right: 1px solid #ded2bf;
  background: linear-gradient(180deg, #ddd0b6, #cfc3aa);
}

.old-body nav span {
  border-bottom: 1px solid rgba(116, 101, 79, 0.22);
  padding: 10px 10px;
  color: #1f2937;
  font-size: 8px;
  font-weight: 650;
}

.old-body section {
  padding: 16px 14px 10px;
}

.old-body h3 {
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
}

.old-body p {
  margin-top: 12px;
  max-width: 125px;
  color: #343d3f;
  font-size: 10px;
  line-height: 1.45;
}

.old-listing {
  margin-top: 18px;
  border: 1px solid #d4c8b7;
  border-radius: 5px;
  background: rgba(255, 250, 242, 0.74);
  padding: 10px;
}

.old-listing strong {
  display: block;
  color: #1f2937;
  font-size: 11px;
}

.old-listing div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.old-thumb {
  display: block;
  height: 50px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.old-thumb.one {
  background-image: url("/images/rental-house.jpg");
}

.old-thumb.two {
  background-image: url("/images/rental-apartment.jpg");
}

.old-listing small {
  display: inline-block;
  width: 49%;
  margin-top: 6px;
  color: #202829;
  font-size: 7.5px;
  font-weight: 650;
  line-height: 1.25;
  vertical-align: top;
}

.old-site-card footer {
  background: rgba(169, 153, 125, 0.35);
  color: #3b332b;
  padding: 10px;
  text-align: center;
  font-size: 9px;
}

.compare-arrow {
  position: absolute;
  z-index: 5;
  top: 266px;
  left: calc(34.4% - 20px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #2d8c4f 0%, #176b3f 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 96, 58, 0.25);
}

.compare-arrow svg {
  width: 22px;
  height: 22px;
}

.new-version-card {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  overflow: hidden;
  margin-top: 12px;
}

.public-panel,
.private-panel {
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
}

.public-panel {
  padding: 0 14px 22px;
}

.public-panel h2,
.private-panel h2 {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid var(--green);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.private-panel h2 {
  border-bottom-color: var(--line);
  color: #1f2937;
}

.private-panel h2 svg {
  width: 13px;
  height: 13px;
  color: var(--green-dark);
}

.public-photo {
  height: 120px;
  margin-top: 16px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 47, 39, 0.08)),
    url("/images/rental-house.jpg") center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.public-panel h3 {
  margin-top: 14px;
  max-width: 230px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.18;
}

.public-panel p {
  margin-top: 10px;
  max-width: 220px;
  color: #303b3a;
  font-size: 11px;
  line-height: 1.55;
}

.public-panel a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  border-radius: 5px;
  background: var(--green-deep);
  color: #fff;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.thumb-row span {
  height: 42px;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
}

.thumb-row span:nth-child(1) {
  background-image: url("/images/rental-house.jpg");
}

.thumb-row span:nth-child(2) {
  background-image: url("/images/rental-apartment.jpg");
}

.thumb-row span:nth-child(3) {
  background-image: url("/images/rental-homes-sheet.jpg");
}

.private-panel {
  border-left: 1px solid var(--line);
}

.private-panel button {
  display: block;
  width: max-content;
  max-width: calc(100% - 24px);
  min-height: 28px;
  margin: 17px 14px 16px auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #142522;
  padding: 0 11px;
  font-size: 9px;
  font-weight: 760;
}

.private-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.private-panel li {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(231, 226, 218, 0.78);
  padding: 11px 16px;
}

.private-panel li svg {
  width: 18px;
  height: 18px;
  color: var(--green-deep);
}

.private-panel li span {
  display: grid;
  gap: 2px;
  color: #3f4948;
  font-size: 8px;
  line-height: 1.25;
}

.private-panel li strong {
  color: #111827;
  font-size: 9px;
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(238, 245, 232, 0.88), rgba(250, 247, 239, 0.92)), #f8f4eb;
  box-shadow: inset 0 0 0 1px rgba(231, 226, 218, 0.7);
  padding: 17px 22px;
}

.trust-strip span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-deep);
  color: white;
}

.trust-strip svg {
  width: 24px;
  height: 24px;
}

.trust-strip p {
  color: #17212c;
  font-size: 15px;
  line-height: 1.46;
}

.trust-strip strong {
  display: block;
  font-weight: 750;
}

.included {
  padding: 26px 0 29px;
}

.included h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  text-align: center;
}

.method {
  border-top: 1px solid var(--line);
  padding: 30px 0 34px;
}

.method h2,
.pricing h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
}

.method h2 {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
}

.steps article {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0 26px;
  text-align: center;
}

.steps article + article {
  border-left: 1px solid var(--line);
}

.step-icon {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: #eef3e7;
  color: var(--green-deep);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-icon b {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--green-deep);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.steps h3 {
  color: #111827;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.steps p {
  color: #4d5755;
  font-size: 11.5px;
  line-height: 1.5;
}

.pricing {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr minmax(240px, 0.95fr);
  gap: 26px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.86), rgba(250, 247, 239, 0.92)),
    var(--surface-soft);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
}

.trial-illustration {
  position: relative;
  height: 86px;
}

.mug {
  position: absolute;
  top: 13px;
  left: 10px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(15, 95, 59, 0.18);
  border-radius: 8px 8px 14px 14px;
  background: #fff;
}

.mug::after {
  content: "";
  position: absolute;
  top: 11px;
  right: -13px;
  width: 14px;
  height: 18px;
  border: 2px solid rgba(15, 95, 59, 0.18);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.laptop {
  position: absolute;
  right: 0;
  bottom: 6px;
  display: grid;
  width: 76px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(15, 95, 59, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7f2e9);
  color: var(--green-deep);
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(15, 46, 39, 0.06);
}

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

.pricing li {
  position: relative;
  color: #263330;
  font-size: 13px;
  line-height: 1.35;
  padding-left: 22px;
}

.pricing li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 138, 75, 0.1);
}

.pricing p {
  color: #3a4643;
  font-size: 13px;
  line-height: 1.48;
}

.pricing strong {
  display: block;
  margin: 9px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.pricing em {
  color: var(--green-deep);
  font-style: normal;
  font-size: 34px;
  line-height: 1;
}

.pricing strong span {
  color: #53605d;
  font-size: 13px;
  font-weight: 600;
}

.house-line {
  position: absolute;
  right: 26px;
  bottom: 0;
  width: 132px;
  height: 46px;
  opacity: 0.14;
}

.house-line::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -19px;
  width: 116px;
  height: 84px;
  border: 3px solid var(--green-deep);
  border-top: 0;
  border-radius: 10px 10px 0 0;
  transform: skewX(-10deg);
}

.house-line::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 34px;
  width: 74px;
  height: 74px;
  border-top: 3px solid var(--green-deep);
  border-left: 3px solid var(--green-deep);
  transform: rotate(45deg);
}

.reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 24px 0 28px;
}

.reassurance article {
  display: grid;
  gap: 8px;
  padding: 0 22px;
}

.reassurance article + article {
  border-left: 1px solid var(--line);
}

.reassurance strong {
  color: #111827;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.reassurance span {
  color: #4d5755;
  font-size: 11.5px;
  line-height: 1.5;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
}

.benefit-row article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-content: start;
  min-height: 112px;
  padding: 0 25px 0 22px;
}

.benefit-row article + article {
  border-left: 1px solid var(--line);
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: #f0f0e6;
  color: var(--green-deep);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-row h3 {
  color: #111827;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.benefit-row p {
  grid-column: 2;
  margin-top: 12px;
  color: #374241;
  font-size: 11.5px;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  min-height: 82px;
  gap: 7px;
  place-items: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: #4e5856;
  font-size: 12px;
  padding: 14px 24px;
  text-align: center;
}

.site-footer strong {
  color: var(--green-deep);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  color: #7a8380;
  font-size: 10px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-deep);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1120px) {
  .topbar {
    padding: 0 28px;
  }

  .main-nav {
    gap: 28px;
  }

  main {
    padding: 30px 28px 0;
  }

  .hero {
    grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1fr);
    gap: 30px;
  }

  h1 {
    font-size: clamp(2.05rem, 3.2vw, 2.25rem);
  }

  .hero-visual {
    grid-template-columns: minmax(170px, 0.78fr) minmax(340px, 1.32fr);
    gap: 18px;
  }

  .new-version-card {
    grid-template-columns: minmax(0, 1fr) 148px;
  }

  .private-panel li {
    padding: 12px 13px;
  }

  .benefit-row article {
    grid-template-columns: 44px 1fr;
    padding: 0 14px;
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
  }

  .steps article {
    padding: 0 16px;
  }

  .pricing {
    grid-template-columns: 90px 1fr minmax(210px, 0.9fr);
    gap: 18px;
    padding: 22px;
  }
}

@media (max-width: 920px) {
  body {
    background: #f7f5ee;
  }

  .site-shell {
    width: min(100% - 28px, 420px);
    margin: 16px auto;
    border-radius: var(--radius-lg);
  }

  .topbar {
    min-height: 66px;
    padding: 0 20px;
  }

  .brand-logo {
    height: 29px;
  }

  .menu-button {
    display: grid;
  }

  .top-actions {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 8px;
  }

  .topbar[data-menu-open="true"] .main-nav {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    border-radius: var(--radius-sm);
    padding: 0 12px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--green-soft);
  }

  .main-nav .mobile-nav-cta,
  .main-nav .mobile-login-link {
    display: flex;
  }

  main {
    padding: 18px 18px 0;
  }

  .hero {
    display: block;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-pill {
    min-height: 21px;
    font-size: 9.5px;
    padding: 0 11px;
  }

  h1 {
    margin-top: 18px;
    width: 100%;
    font-size: 24px;
    line-height: 1.08;
  }

  .promise {
    margin-top: 10px;
    font-size: 15.5px;
    line-height: 1.16;
  }

  .lede {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.42;
  }

  .request-card {
    width: 100%;
    margin-top: 18px;
  }

  .tab {
    min-height: 38px;
    gap: 7px;
    font-size: 10px;
  }

  .tab.active::after {
    right: 43px;
    left: 43px;
  }

  .form-body {
    gap: 8px;
    padding: 12px;
  }

  label,
  .field-help,
  .status {
    font-size: 10.5px;
  }

  .input-shell {
    min-height: 36px;
  }

  .optional-details summary {
    min-height: 29px;
    font-size: 11px;
  }

  .primary-button {
    min-height: 39px;
    font-size: 12px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 22px;
  }

  .visual-label {
    font-size: 11px;
  }

  .old-label,
  .new-label,
  .old-site-card,
  .new-version-card,
  .trust-strip {
    grid-column: 1;
  }

  .old-label {
    order: 1;
  }

  .old-site-card {
    order: 2;
    width: min(100%, 245px);
    margin: 9px auto 0;
    box-shadow: var(--shadow-md);
  }

  .old-site-card header {
    padding: 12px 14px;
  }

  .old-site-card h2 {
    font-size: 14px;
  }

  .old-body {
    grid-template-columns: 58px 1fr;
    min-height: 104px;
  }

  .old-body nav span {
    padding: 6px 8px;
    font-size: 5.8px;
  }

  .old-body section {
    padding: 12px 10px;
  }

  .old-body h3,
  .old-body p {
    display: none;
  }

  .old-listing {
    display: grid;
    gap: 6px;
    margin-top: 0;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .old-listing strong,
  .old-listing div,
  .old-listing small {
    display: none;
  }

  .old-listing::before,
  .old-listing::after {
    content: "";
    display: block;
    width: 78%;
    height: 8px;
    border-radius: 999px;
    background: #ded7cb;
  }

  .old-listing::after {
    width: 62%;
  }

  .old-site-card footer {
    padding: 8px;
    font-size: 6.5px;
  }

  .compare-arrow {
    position: relative;
    top: auto;
    left: auto;
    order: 3;
    width: 36px;
    height: 36px;
    margin: -4px auto 12px;
    transform: rotate(90deg);
  }

  .new-label {
    order: 4;
    margin-bottom: 9px;
  }

  .new-version-card {
    order: 5;
    grid-template-columns: 1fr;
    margin-top: 0;
    box-shadow: var(--shadow-md);
  }

  .public-panel {
    padding: 0 12px 14px;
  }

  .public-panel h2,
  .private-panel h2 {
    min-height: 37px;
    font-size: 9.5px;
  }

  .public-photo {
    height: 82px;
    margin-top: 10px;
  }

  .public-panel h3 {
    margin-top: 12px;
    max-width: 220px;
    font-size: 15px;
  }

  .public-panel p {
    display: none;
  }

  .public-panel a {
    min-height: 30px;
    margin-top: 10px;
    font-size: 10px;
  }

  .thumb-row {
    display: none;
  }

  .private-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .private-panel button {
    display: none;
  }

  .private-panel ul {
    grid-template-columns: 1fr;
  }

  .private-panel li {
    min-height: 34px;
    grid-template-columns: 17px 1fr;
    padding: 8px 14px;
  }

  .private-panel li:nth-child(n + 4) {
    display: none;
  }

  .private-panel li svg {
    width: 15px;
    height: 15px;
  }

  .trust-strip {
    order: 6;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
  }

  .trust-strip span {
    width: 32px;
    height: 32px;
  }

  .trust-strip svg {
    width: 19px;
    height: 19px;
  }

  .trust-strip p {
    font-size: 10.5px;
    line-height: 1.42;
  }

  .included {
    padding: 28px 0 18px;
  }

  .included h2 {
    font-size: 20px;
  }

  .benefit-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin: 18px -18px 0;
    padding: 0 18px 6px;
    scroll-snap-type: x mandatory;
  }

  .benefit-row article {
    min-width: 142px;
    grid-template-columns: 1fr;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    padding: 14px;
    scroll-snap-align: start;
  }

  .benefit-row article + article {
    border-left: 1px solid var(--line);
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
  }

  .benefit-icon svg {
    width: 21px;
    height: 21px;
  }

  .benefit-row h3 {
    font-size: 11px;
  }

  .benefit-row p {
    grid-column: 1;
    margin-top: 4px;
    font-size: 10px;
  }

  .method {
    padding: 24px 0 20px;
  }

  .method h2,
  .pricing h2 {
    font-size: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .steps article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 4px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.76);
    padding: 12px;
    text-align: left;
  }

  .steps article + article {
    border-left: 1px solid var(--line);
  }

  .step-icon {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    justify-self: start;
  }

  .step-icon svg {
    width: 17px;
    height: 17px;
  }

  .step-icon b {
    right: -6px;
    bottom: -6px;
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .steps h3 {
    font-size: 11px;
  }

  .steps p {
    font-size: 10px;
  }

  .pricing {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .trial-illustration {
    display: none;
  }

  .pricing ul {
    gap: 7px;
    margin-top: 12px;
  }

  .pricing li,
  .pricing p {
    font-size: 11px;
  }

  .pricing strong {
    font-size: 13px;
  }

  .pricing em {
    font-size: 27px;
  }

  .house-line {
    display: none;
  }

  .reassurance {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0 22px;
  }

  .reassurance article {
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    padding: 12px;
  }

  .reassurance article + article {
    border-left: 1px solid var(--line);
  }

  .reassurance strong {
    font-size: 11px;
  }

  .reassurance span {
    font-size: 10px;
  }

  .site-footer {
    min-height: 76px;
    padding: 0 18px;
    text-align: center;
    font-size: 10.5px;
  }

  .footer-links {
    gap: 7px 10px;
    font-size: 9px;
  }
}

@media (max-width: 370px) {
  .site-shell {
    width: min(100% - 16px, 420px);
  }

  .topbar {
    padding: 0 14px;
  }

  main {
    padding: 16px 14px 0;
  }

  h1 {
    font-size: 23px;
  }

  .promise {
    font-size: 16px;
  }
}

.simple-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% 10%, rgba(47, 138, 75, 0.07), transparent 26rem),
    linear-gradient(180deg, #fbfaf6 0%, #f5f2eb 100%);
}

.simple-page .topbar {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.simple-page .brand-logo {
  height: 32px;
}

.simple-page .main-nav {
  gap: 32px;
}

.simple-main {
  flex: 1;
  width: min(1060px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 52px 0 76px;
}

.simple-kicker {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.simple-hero h1 {
  margin-top: 12px;
  max-width: 680px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.simple-hero p {
  margin-top: 18px;
  max-width: 610px;
  color: #3f4b49;
  font-size: 18px;
  line-height: 1.62;
}

.simple-hero a {
  color: var(--green-deep);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.simple-main.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 58px;
  align-items: start;
}

.contact-page .simple-hero {
  padding-top: 28px;
}

.contact-promise-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-promise-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #55605e;
  font-size: 14px;
  line-height: 1.5;
}

.contact-promise-list strong {
  color: #15212f;
  font-size: 14px;
  font-weight: 800;
}

.contact-layout-simple {
  min-width: 0;
}

.contact-card {
  width: 100%;
  margin-top: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 54px rgba(15, 46, 39, 0.1);
}

.contact-card .form-body {
  gap: 15px;
  padding: 22px;
}

.contact-card .input-shell > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-deep);
  font-weight: 800;
}

.contact-card textarea {
  min-height: 132px;
}

.privacy-note {
  color: #65706d;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--green-deep);
  font-weight: 750;
}

.simple-main.legal-page {
  width: min(920px, calc(100vw - 48px));
}

.legal-page .simple-hero h1 {
  max-width: 760px;
}

.legal-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-summary a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #293735;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.legal-summary a:hover,
.legal-summary a:focus-visible {
  border-color: rgba(47, 138, 75, 0.34);
  color: var(--green-deep);
  outline: none;
}

.legal-content {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.legal-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.legal-content section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-content h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.legal-content p {
  margin-top: 12px;
  color: #46514f;
  font-size: 15px;
  line-height: 1.68;
}

.simple-page .site-footer {
  flex: 0 0 auto;
}

.simple-page .analytics-consent {
  position: static;
  width: min(100% - 48px, 390px);
  max-width: none;
  margin: 0 auto 16px;
}

.admin-entry-page {
  min-height: 100vh;
}

.admin-entry-page .topbar {
  min-height: 72px;
}

.admin-entry {
  display: grid;
  min-height: calc(100svh - 180px);
  place-items: center;
  padding: 52px 0;
}

.admin-entry-hero {
  width: min(100%, 680px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.admin-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.admin-entry-actions .primary-button {
  min-height: 46px;
  width: auto;
  min-width: 190px;
  padding: 0 20px;
  text-decoration: none;
}

.admin-secondary-link {
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.admin-entry-footnote {
  max-width: 560px;
  margin-top: 22px;
  color: #65706d;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .simple-main,
  .simple-main.legal-page {
    width: min(100% - 32px, 560px);
    padding: 34px 0 54px;
  }

  .simple-main.contact-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-page .simple-hero {
    padding-top: 0;
  }

  .simple-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .simple-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .contact-promise-list {
    margin-top: 24px;
    padding-top: 20px;
  }

  .contact-card .form-body {
    padding: 16px;
  }

  .legal-summary {
    margin-top: 26px;
    padding-bottom: 20px;
  }

  .admin-entry {
    min-height: calc(100svh - 150px);
    padding: 32px 0 48px;
  }

  .admin-entry-hero {
    padding: 32px 0;
  }

  .admin-entry-actions .primary-button {
    width: 100%;
  }
}

.beta-page {
  min-height: 100vh;
  background: #f6f7f3;
  color: #0f1c2e;
}

.beta-page .beta-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 16px auto;
  overflow: hidden;
  border: 1px solid #d9e0d4;
  border-radius: 8px;
  background: #f6f7f3;
  box-shadow: 0 18px 52px rgba(15, 28, 46, 0.08);
}

.beta-page .topbar {
  border-bottom: 0;
  background: rgba(246, 247, 243, 0.86);
}

.beta-page .brand-logo {
  height: 34px;
}

.beta-page .main-nav {
  gap: 30px;
}

.beta-page .main-nav a,
.beta-page .login-link {
  color: #20324d;
}

.beta-page .main-nav a:hover,
.beta-page .main-nav a:focus-visible,
.beta-page .login-link:hover,
.beta-page .login-link:focus-visible {
  color: #2f7d45;
}

.beta-main {
  padding: 0;
}

.beta-hero {
  position: relative;
  min-height: clamp(520px, calc(100svh - 188px), 720px);
  overflow: hidden;
  margin: 0 16px;
  border-radius: 8px;
  isolation: isolate;
}

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

.beta-hero-image {
  z-index: -2;
  background-image: url("/images/apartment-living-room.jpg");
  background-position: center;
  background-size: cover;
}

.beta-hero-overlay {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgb(246 247 243 / 0.97) 0%,
    rgb(246 247 243 / 0.9) 43%,
    rgb(246 247 243 / 0.34) 100%
  );
}

.beta-copy {
  display: flex;
  min-height: inherit;
  width: min(100%, 640px);
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}

.beta-pill {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  border: 1px solid #cad6c4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #36553c;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.beta-pill span {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
}

.beta-pill svg,
.beta-input-shell svg,
.beta-signals svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.beta-copy h1 {
  max-width: 600px;
  margin-top: 20px;
  color: #0f1c2e;
  font-family: var(--font-sans);
  font-size: clamp(2.15rem, 7vw, 5.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.beta-copy h1 span {
  display: block;
}

.beta-lede {
  max-width: 560px;
  margin-top: 22px;
  color: #28374e;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.62;
}

.beta-waitlist-form {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 28px;
  border: 1px solid #d7ddcf;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgb(15 28 46 / 0.12);
  padding: 12px;
}

.beta-input-shell {
  display: flex;
  min-height: 44px;
  min-width: 0;
  align-items: center;
  gap: 12px;
  border: 1px solid #dfe5dc;
  border-radius: 6px;
  background: #ffffff;
  padding: 0 12px;
}

.beta-input-shell svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #587044;
}

.beta-input-shell input {
  min-width: 0;
  flex: 1;
  color: #0f1c2e;
  font-size: 14px;
  font-weight: 600;
}

.beta-input-shell input::placeholder {
  color: #6f7985;
}

.beta-submit {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 6px;
  background: #f35b2d;
  color: #ffffff;
  box-shadow: 0 12px 28px rgb(243 91 45 / 0.2);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.beta-submit:hover,
.beta-submit:focus-visible {
  background: #d94d24;
  outline: none;
  transform: translateY(-1px);
}

.beta-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.beta-waitlist-form .waitlist-status {
  min-height: 18px;
  grid-column: 1 / -1;
  color: #3d4a5d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.beta-waitlist-form .waitlist-status.success {
  color: #2f6a3c;
}

.beta-waitlist-form .waitlist-status.error {
  color: #a93822;
}

.beta-note {
  max-width: 520px;
  margin-top: 16px;
  color: #3d4a5d;
  font-size: 14px;
  line-height: 1.6;
}

.beta-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 34px 16px 38px;
}

.beta-signals article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: start;
  border-top: 1px solid #d9e0d4;
  padding-top: 18px;
}

.beta-signals article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: #e6efe2;
  color: #36553c;
}

.beta-signals svg {
  width: 19px;
  height: 19px;
}

.beta-signals h2 {
  color: #0f1c2e;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.beta-signals p {
  margin-top: 8px;
  color: #4c596a;
  font-size: 14px;
  line-height: 1.55;
}

.beta-page .site-footer {
  min-height: 74px;
  place-items: stretch;
  border-top: 1px solid #d9e0d4;
  background: #f6f7f3;
  color: #536055;
  padding: 18px 32px 20px;
  text-align: left;
}

.beta-page .footer-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.beta-page .footer-credit {
  color: #26374f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.beta-page .footer-links {
  justify-content: flex-end;
  gap: 10px 18px;
  color: #657163;
  font-size: 11px;
}

.beta-page .footer-links a {
  white-space: nowrap;
}

.beta-page .analytics-consent {
  position: static;
  width: min(100% - 32px, 390px);
  max-width: none;
  margin: 0 auto 16px;
}

@media (max-width: 920px) {
  .beta-page .beta-shell {
    width: min(100% - 24px, 560px);
    margin: 12px auto;
  }

  .beta-page .brand-logo {
    height: 29px;
  }

  .beta-page .main-nav {
    gap: 0;
  }

  .beta-main {
    padding: 0;
  }

  .beta-hero {
    min-height: auto;
    margin: 0 10px;
  }

  .beta-hero-image {
    background-position: 58% center;
  }

  .beta-hero-overlay {
    background: linear-gradient(
      180deg,
      rgb(246 247 243 / 0.98) 0%,
      rgb(246 247 243 / 0.94) 64%,
      rgb(246 247 243 / 0.72) 100%
    );
  }

  .beta-copy {
    width: 100%;
    min-height: min(650px, calc(100svh - 120px));
    padding: 40px 18px;
  }

  .beta-copy h1 {
    max-width: 330px;
    margin-top: 18px;
    font-size: clamp(2.05rem, 12vw, 3.15rem);
  }

  .beta-lede {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .beta-waitlist-form {
    max-width: 340px;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    padding: 10px;
  }

  .beta-submit {
    white-space: normal;
  }

  .beta-note {
    max-width: 335px;
    font-size: 13px;
  }

  .beta-signals {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 14px 30px;
  }

  .beta-signals article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding-top: 15px;
  }

  .beta-page .site-footer {
    padding: 18px 16px 20px;
  }

  .beta-page .footer-top {
    display: grid;
    gap: 13px;
  }

  .beta-page .footer-credit {
    font-size: 12px;
  }

  .beta-page .footer-links {
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 10px;
  }

  .beta-page .analytics-consent {
    width: min(100% - 24px, 390px);
    margin: 12px auto;
  }
}

@media (max-width: 370px) {
  .beta-copy {
    padding: 34px 14px;
  }

  .beta-copy h1 {
    font-size: 2rem;
  }
}

.analytics-consent {
  position: fixed;
  right: max(18px, calc((100vw - 1120px) / 2 + 18px));
  bottom: 18px;
  left: auto;
  z-index: 80;
  display: grid;
  gap: 10px;
  max-width: 390px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(38, 34, 28, 0.16);
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.analytics-consent div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.analytics-consent button {
  min-height: 36px;
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.analytics-consent-primary {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
}

@media (max-width: 760px) {
  .analytics-consent {
    position: static;
    width: min(100% - 24px, 390px);
    max-width: none;
    margin: 12px auto;
    padding: 12px;
  }

  .analytics-consent div {
    justify-content: flex-end;
  }

  .simple-page .analytics-consent {
    width: min(100% - 24px, 390px);
    margin: 12px auto;
  }
}
