:root {
  --bg: #F7F8F6;
  --surface: #FFFFFF;
  --surface-soft: #EAF7EF;
  --surface-blue: #EDF3F8;
  --ink: #0F2747;
  --muted: #536273;
  --brand: #0F2747;
  --accent: #18A957;
  --accent-dark: #118344;
  --accent-soft: #E7F8EE;
  --line: #D9E6DF;
  --focus: #18A957;
  --shadow: 0 18px 48px rgba(15, 39, 71, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: 5.35rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 230, 223, 0.95);
  backdrop-filter: blur(14px);
}

.header-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  display: block;
  width: 196px;
  height: auto;
  object-fit: contain;
}

.beta-badge,
.product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 5px 9px;
  background: var(--accent-soft);
  border: 1px solid rgba(24, 169, 87, 0.22);
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.nav-cta {
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta:hover {
  color: var(--brand);
}

.section-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section-pad {
  padding: 76px 0;
}

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-start;
  padding: 14px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(24, 169, 87, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 39, 71, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.sample-hero {
  padding: 78px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(24, 169, 87, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 39, 71, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.sample-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.hero-copy {
  max-width: 760px;
}

.sample-hero-copy {
  max-width: 820px;
}

.sample-hero h1 {
  max-width: 11ch;
}

.eyebrow,
.panel-label {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1.25;
}

.hero-support {
  max-width: 580px;
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.trust-line {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 700;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 39, 71, 0.18);
}

.button-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(680px, calc(100% - 36px));
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-settings-button {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 29;
  min-height: 36px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 39, 71, 0.1);
}

.cookie-settings-button:hover {
  color: var(--accent-dark);
}

.beta-panel {
  margin-top: 70px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sample-panel {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.beta-panel .product-badge,
.report .product-badge {
  margin-bottom: 16px;
}

.beta-panel h2,
.sample-panel h2 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.beta-panel p:last-child,
.sample-panel p:last-child,
.info-block p:last-child,
.card p:last-child,
.footer-inner p:last-child {
  margin-bottom: 0;
}

.narrow {
  max-width: 840px;
}

.narrow p,
.report p,
.register p {
  font-size: 1.05rem;
}

.two-column,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 72px);
}

.stack {
  display: grid;
  gap: 16px;
}

.info-block,
.card,
.interest-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-block,
.card {
  border-top: 3px solid rgba(24, 169, 87, 0.55);
}

.info-block {
  padding: 24px;
}

.price-block {
  background: var(--surface-soft);
}

.price {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.details {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

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

.card {
  padding: 26px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.example {
  background: var(--bg);
}

.example .section-inner {
  width: min(1480px, calc(100% - 44px));
}

.example-table-wrap {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.example-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.example-col-property {
  width: 17%;
}

.example-col-wide {
  width: 12%;
}

.example-col-rent {
  width: 11%;
}

.example-col-percent {
  width: 8%;
}

.example-table th,
.example-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.example-table thead th {
  background: var(--brand);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.example-table tbody th {
  color: var(--ink);
  font-weight: 800;
}

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

.example-note {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.register {
  background: var(--bg);
}

.contact-copy {
  margin-bottom: 20px;
}

.interest-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.sample-form-layout {
  align-items: start;
}

.form-shell {
  display: grid;
}

.disclaimer-box,
.success-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.disclaimer-box {
  margin-top: 24px;
  padding: 22px;
  border-left: 4px solid var(--accent);
}

.disclaimer-box h3 {
  margin-bottom: 8px;
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.success-panel {
  padding: clamp(24px, 4vw, 36px);
  border-top: 4px solid var(--accent);
}

.success-panel h2 {
  max-width: 12ch;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(24, 169, 87, 0.55);
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--brand) 50%), linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 42px;
}

textarea {
  resize: vertical;
}

.checkbox-field {
  gap: 8px;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.field-note {
  margin: 0 0 0 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.field:not(.checkbox-field) .field-note {
  margin: 0;
}

.optional-label {
  color: var(--muted);
  font-weight: 650;
}

.field-error {
  min-height: 1.25em;
  margin: 0;
  color: #B3261E;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 750;
}

.form-status-error {
  display: block;
  background: #FFF1EE;
  border: 1px solid rgba(179, 38, 30, 0.22);
  color: #8C1D18;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #B3261E;
}

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

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

.site-footer {
  padding: 36px 0 44px;
  background: var(--brand);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  max-width: 820px;
  margin-bottom: 0;
  color: #FFFFFF;
  font-size: 0.92rem;
}

.footer-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 18px;
}

.footer-inner a {
  color: #ffffff;
}

.thank-you-page {
  min-height: 100svh;
  background: var(--bg);
}

.thanks-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-brand {
  display: flex;
  width: fit-content;
  margin-bottom: 22px;
}

.thanks-card h1 {
  max-width: 13ch;
  font-size: 3.95rem;
}

.thanks-card p {
  max-width: 620px;
  font-size: 1.05rem;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .cookie-banner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-settings-button {
    left: 12px;
    bottom: 12px;
  }

  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .section-pad {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 42px;
  }

  .hero-grid,
  .sample-hero-grid,
  .two-column,
  .form-layout,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .sample-hero-grid {
    gap: 30px;
  }

  .beta-panel,
  .sample-panel {
    margin-top: 0;
  }

  .sample-hero {
    padding: 58px 0 48px;
  }

  h1 {
    max-width: 9ch;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-lede {
    font-size: 1.45rem;
  }

  .thanks-card h1 {
    font-size: 3.2rem;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 760px) {
  .example .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .example-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .example-table,
  .example-table tbody,
  .example-table tr,
  .example-table th,
  .example-table td {
    display: block;
    width: 100%;
  }

  .example-table colgroup,
  .example-table thead {
    display: none;
  }

  .example-table tbody {
    display: grid;
    gap: 14px;
  }

  .example-table tr {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .example-table tbody th {
    padding: 16px;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
  }

  .example-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    text-align: right;
  }

  .example-table td::before {
    content: attr(data-label);
    color: var(--brand);
    font-weight: 800;
    text-align: left;
  }
}

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

  .site-header {
    padding-inline: 16px;
  }

  .header-identity {
    gap: 10px;
  }

  .brand-logo {
    width: 156px;
  }

  .beta-badge {
    display: none;
  }

  .nav-cta {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lede {
    font-size: 1.3rem;
  }

  .thanks-card h1 {
    font-size: 2.4rem;
  }

  .section-inner {
    width: calc(100% - 28px);
  }

  .button {
    width: 100%;
  }

  .beta-panel,
  .sample-panel,
  .info-block,
  .card,
  .interest-form,
  .disclaimer-box,
  .success-panel {
    padding: 20px;
  }
}
