:root {
  --canvas: #ffffff;
  --surface: #e8ebe6;
  --pale: #f7f9f6;
  --mint: #e2f6d5;
  --forest: #163300;
  --ink: #0e0f0c;
  --body: #555b54;
  --line: #d0d4cd;
  --green: #9fe870;
  --sold: #cf2929;
  --muted: #a9b4ad;
  --footer-rule: #254d00;
  --pad: 80px;
  --page: 1280px;
  --gutter: max(var(--pad), calc((100% - var(--page)) / 2));
  --radius-card: 24px;
  --radius-pill: 9999px;
  --font-display: "Archivo Black", sans-serif;
  --font-ui: Inter, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--forest);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--forest);
  border-radius: var(--radius-pill);
  font-weight: 700;
  white-space: nowrap;
}

.pill:hover {
  filter: brightness(0.96);
}

.pill-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.pill-nav {
  padding: 10px 20px;
  font-size: 14px;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-position: from-font;
  color: var(--ink);
  white-space: nowrap;
}

.link-row.is-light {
  color: #fff;
}

.eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--forest);
}

.lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  text-align: center;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.section-head .display {
  font-size: 48px;
  max-width: 900px;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -1px;
  color: var(--forest);
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 32px;
}

.menu a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555b54;
  text-decoration: none;
  white-space: nowrap;
}

.menu a::before,
.menu a::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
}

.menu a::before {
  width: 1px;
}

.menu a::after {
  border-radius: 4px 4px 0 0;
  background: transparent;
}

.menu a.menu-active,
.menu a.is-on {
  font-weight: 700;
  color: var(--forest);
}

.menu a.menu-active::after,
.menu a.is-on::after {
  background: var(--green);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.nav-login .icon {
  flex-shrink: 0;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 96px var(--gutter);
  background: #fff;
}

.hero-left,
.hero-right {
  flex: 1 1 0;
  min-width: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero-left .display {
  font-size: 64px;
  letter-spacing: -2.5px;
  line-height: 1;
}

.hero-copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
}

.hero-trust p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-card {
  width: 480px;
  max-width: 100%;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 16px 16px rgba(14, 15, 12, 0.06);
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notif-header h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
}

.notif-header p {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--body);
}

.badge-mint {
  background: var(--mint);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.apart-photo {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.apart-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-row strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}

.chip-dark {
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.loc-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}

.listing-details .blurb {
  margin: 0;
  font-size: 13px;
  color: var(--body);
}

.card-actions {
  display: flex;
  gap: 12px;
}

.btn-open {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
}

.btn-save {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

/* URGENCY */
.urgency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--gutter);
  background: var(--mint);
}

.urg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--forest);
  white-space: nowrap;
}

.urg-div {
  display: flex;
  width: 0;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.urg-div img {
  width: 24px;
  height: 2px;
  transform: rotate(90deg);
}

/* SOLD */
.sold-section,
.how-section,
.db-section,
.compare-section,
.pricing-section,
.quotes-section,
.faq-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sold-section {
  gap: 40px;
  padding: 120px var(--gutter);
  background: #fff;
}

.sold-cards {
  display: flex;
  gap: 32px;
  width: 100%;
}

.sold-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 15, 12, 0.06);
}

.sold-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sold-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sold-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.sold-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.sold-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
}

.sold-meta .spec {
  margin: 0;
  font-size: 13px;
  color: var(--body);
}

.sold-meta .when {
  margin: 0;
  font-size: 12px;
  color: var(--body);
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cta-row p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
  text-align: center;
}

/* HOW */
.how-section {
  gap: 64px;
  padding: 120px var(--gutter);
  background: var(--surface);
}

.steps {
  display: flex;
  gap: 32px;
  width: 100%;
}

.step-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 8px 10px rgba(14, 15, 12, 0.06);
  transform: rotate(0deg);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.step-card:hover {
  transform: rotate(2deg);
  box-shadow: 0 14px 22px rgba(14, 15, 12, 0.1);
}

.step-card:nth-child(even):hover {
  transform: rotate(-2deg);
}

.step-icon .icon {
  overflow: visible;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0;
  color: #163300;
  opacity: 0.15;
  white-space: nowrap;
}

.step-card p.step-num {
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0;
  color: #163300;
}

.step-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.step-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
}

.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

@media (prefers-reduced-motion: reduce) {
  .step-card,
  .step-card:hover,
  .step-card:nth-child(even):hover,
  .quote,
  .quote:hover,
  .quote:nth-child(even):hover {
    transition: none;
    transform: none;
  }
}

/* FOMO */
.fomo,
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 120px var(--gutter);
  background: var(--forest);
  text-align: center;
}

.fomo-copy,
.final-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
}

.fomo .eyebrow {
  color: var(--green);
}

.fomo .display,
.final-cta .display {
  color: #fff;
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 0.95;
}

.fomo .lead,
.final-cta .lead {
  color: var(--mint);
  font-size: 18px;
  max-width: 720px;
}

.fomo-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* DATABASE */
.db-section {
  gap: 64px;
  padding: 120px var(--gutter);
  background: #fff;
}

.browser {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(14, 15, 12, 0.06);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.url-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 600px;
  max-width: 100%;
  background: var(--surface);
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--body);
}

.filter-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 24px;
  background: #fff;
}

.filter-field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-field label,
.filter-search .ghost {
  font-size: 11px;
  font-weight: 700;
  color: var(--body);
}

.filter-search .ghost {
  color: transparent;
  user-select: none;
}

.select-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  background: #fff;
}

.filter-search {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  width: 100%;
  background: var(--forest);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  animation: search-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-btn:hover {
  transform: translateY(-2px) scale(1.03);
  animation: none;
  box-shadow: 0 10px 18px rgba(22, 51, 0, 0.22);
}

.search-btn:active {
  transform: translateY(0) scale(0.98);
}

@keyframes search-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(159, 232, 112, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(159, 232, 112, 0);
  }
}

.db-input,
.db-disp-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  background: #fff;
  font-family: inherit;
}

.db-input {
  outline: none;
}

.db-input:focus,
.db-disp-btn:focus-visible {
  border-color: var(--forest);
}

.filter-field {
  position: relative;
}

.db-suggest,
.db-disp-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 8;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(14, 15, 12, 0.08);
  max-height: 220px;
  overflow: auto;
  padding: 6px;
}

.db-suggest button,
.db-disp-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--forest);
}

.db-suggest button:hover,
.db-disp-menu button:hover,
.db-disp-menu button.on {
  background: var(--mint);
}

.mock-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mock-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(14, 15, 12, 0.1);
}

.landing-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 15, 12, 0.72);
  display: grid;
  place-items: center;
  padding: 28px 16px;
  z-index: 80;
}

.landing-modal[hidden] {
  display: none !important;
}

.landing-modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
}

.landing-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  line-height: 1;
  color: var(--forest);
}

.landing-modal img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}

.landing-modal h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  color: var(--forest);
}

.landing-modal .meta {
  margin: 0 0 12px;
  color: var(--body);
  font-size: 14px;
}

body.landing-modal-open {
  overflow: hidden;
}

.db-stage {
  position: relative;
}

.db-stage.is-locked .browser {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.db-gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  z-index: 6;
  background: rgba(255, 255, 255, 0.22);
}

.db-gate[hidden] {
  display: none !important;
}

.db-gate-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(14, 15, 12, 0.18);
  text-align: center;
}

.db-gate-card h3 {
  margin: 8px 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: var(--forest);
}

.db-gate-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.db-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.db-gate-plans {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
}

.db-gate-plans a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.results {
  display: flex;
  gap: 20px;
  padding: 24px;
}

.mock-card .thumb {
  height: 150px;
}

.mock-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.source {
  background: var(--mint);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.mock-top strong {
  font-size: 14px;
  color: var(--forest);
}

.mock-body h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-body p {
  margin: 0;
  font-size: 12px;
  color: var(--body);
}

/* COMPARE */
.compare-section {
  gap: 64px;
  padding: 120px var(--gutter);
  background: var(--surface);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.cmp {
  width: 100%;
  min-width: 980px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.cmp-row {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

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

.cmp-head {
  background: var(--forest);
  color: #fff;
  border-bottom: 0;
}

.cmp-head .col {
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.cmp-head .feat {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
}

.feat {
  width: 300px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--forest);
}

.col {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  color: var(--body);
}

.col.is-us {
  font-weight: 700;
  color: var(--forest);
}

.col.is-us.xl {
  font-weight: 800;
}

.ba-pill {
  display: inline-flex;
  background: var(--green);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.cmp-row.hi {
  background: var(--mint);
}

.table-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 24px;
  background: var(--mint);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
}

.table-summary p {
  margin: 0;
}

/* PRICING */
.pricing-section {
  gap: 64px;
  padding: 120px var(--gutter);
  background: #fff;
}

.pricing-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  align-items: stretch;
}

.tier {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.tier-pro {
  background: var(--forest);
  box-shadow: 0 16px 16px rgba(14, 15, 12, 0.06);
}

.pop {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--green);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.tier-name {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
}

.tier-pro .tier-name {
  color: var(--green);
}

.tier-price {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--forest);
  line-height: 1;
}

.tier-pro .tier-price {
  color: #fff;
}

.tier-price span {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
}

.tier-desc {
  margin: 0;
  font-size: 13px;
  color: var(--body);
}

.tier-pro .tier-desc,
.tier-pro .tier-price span {
  color: var(--mint);
}

.hr {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 0;
  background: transparent;
}

.hr img {
  width: 100%;
  height: 2px;
  object-fit: cover;
}

.feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--forest);
}

.feat-row.off {
  color: var(--body);
}

.tier-pro .feat-row {
  color: #fff;
}

.tier-cta {
  padding-top: 16px;
  margin-top: auto;
}

.btn-outline,
.btn-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.btn-outline {
  padding: 12px;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  font-size: 14px;
}

.btn-fill {
  padding: 14px 28px;
  background: var(--green);
  color: var(--forest);
  font-size: 16px;
}

/* QUOTES */
.quotes-section {
  gap: 64px;
  padding: 120px var(--gutter);
  background: var(--surface);
}

.quotes {
  display: flex;
  gap: 32px;
  width: 100%;
}

.quote {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 12px rgba(14, 15, 12, 0.06);
  transform: rotate(0deg);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.quote:hover {
  transform: rotate(2deg);
  box-shadow: 0 14px 22px rgba(14, 15, 12, 0.1);
}

.quote:nth-child(even):hover {
  transform: rotate(-2deg);
}

.stars {
  display: flex;
  gap: 4px;
}

.stars .icon {
  overflow: visible;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.quote-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.quote-avatars .quote-avatar + .quote-avatar {
  margin-left: -10px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--mint);
}

.quote-avatar.is-green {
  background: var(--green);
}

.quote-avatar.is-forest {
  background: var(--forest);
  box-shadow: 0 0 0 2px #fff;
}

.quote-avatar .icon {
  overflow: visible;
}

.quote blockquote {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--forest);
}

.quote strong {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: var(--forest);
}

.quote .who {
  margin: 2px 0 0;
  font-size: 12px;
  font-style: normal;
  color: var(--body);
}

/* FAQ */
.faq-section {
  gap: 64px;
  padding: 120px var(--gutter);
  background: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  text-align: left;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.faq-q span {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
}

.faq-item .chev {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .chev {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-a {
  display: block;
  margin: 0;
  padding-top: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.28s ease 0.06s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-a {
  padding-top: 12px;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-a,
  .faq-item .chev {
    transition: none;
  }
}

.final-note {
  margin: 0;
  font-size: 12px;
  color: var(--mint);
}

.final-cta .lead {
  max-width: 680px;
}

/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 80px var(--gutter) 40px;
  background: var(--ink);
}

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

.footer-brand {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -1px;
  color: #fff;
}

.bell-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-green {
  color: var(--green);
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--footer-rule);
}

.footer-bot p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.soc {
  display: flex;
  gap: 16px;
}

.menu-toggle {
  display: none;
}

@media (max-width: 1200px) {
  :root {
    --pad: 40px;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-left .display {
    font-size: 48px;
  }

  .faq-section {
    padding: 120px 40px;
  }

  .sold-cards,
  .steps,
  .pricing-grid,
  .quotes,
  .results,
  .filter-row {
    flex-wrap: wrap;
  }

  .sold-card,
  .step-card,
  .tier,
  .quote,
  .mock-card {
    flex: 1 1 280px;
  }

  .filter-search {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .menu {
    display: none;
  }

  .navbar {
    height: auto;
    min-height: 80px;
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .urg-div {
    display: none;
  }

  .footer-top,
  .footer-bot,
  .fomo-actions,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-brand {
    width: 100%;
  }

  .display,
  .hero-left .display,
  .fomo .display,
  .final-cta .display,
  .contact-hero .display {
    font-size: 36px;
  }

  .contact-cols {
    flex-direction: column;
  }

  .contact-faq {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

/* CONTACT — Figma 1440×3122, node 44:4 */
.contact-page .nav-cta {
  gap: 24px;
}

.contact-page .footer-bot p {
  font-size: 13px;
}

.contact-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 96px var(--gutter) 64px;
  text-align: center;
  background: #fff;
}

.contact-hero .display {
  font-size: 64px;
  letter-spacing: -2.5px;
  line-height: 1;
  white-space: nowrap;
}

.contact-hero .lead {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
}

.contact-cols {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  padding: 20px var(--gutter) 96px;
  background: #fff;
}

.form-panel,
.info-panel {
  flex: 1 1 0;
  min-width: 0;
}

.form-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--surface);
  border-radius: var(--radius-card);
  filter: drop-shadow(0 16px 16px rgba(14, 15, 12, 0.06));
}

.form-panel h2,
.info-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  color: var(--forest);
  white-space: nowrap;
}

.fields-stack,
.info-panel,
.info-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fields-stack {
  gap: 20px;
}

.info-panel {
  gap: 24px;
}

.info-cards {
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.field-label {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: var(--forest);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input,
.form-field select {
  height: 48px;
}

.form-field textarea {
  height: 120px;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--body);
  opacity: 1;
}

.form-field select:invalid {
  color: var(--body);
}

.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
}

.select-wrap .icon {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.form-submit {
  width: 100%;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 24px;
  background: #f7f9f6;
  border: 1px solid var(--surface);
  border-radius: 16px;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrap .icon {
  width: 22px;
  height: 22px;
}

.info-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  line-height: normal;
}

.info-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body);
}

.info-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
}

.info-note {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--body);
}

.contact-faq {
  gap: 48px;
  padding: 96px max(160px, calc((100% - 1120px) / 2)) 120px;
  border-top: 1px solid var(--surface);
  background: #fff;
}

.contact-faq .section-head .display {
  font-size: 40px;
  letter-spacing: -1.5px;
  line-height: normal;
}

.contact-faq .faq-item {
  background: #f7f9f6;
}

.contact-faq .faq-a {
  display: block;
  opacity: 1;
  transform: none;
  padding-top: 12px;
}

.contact-faq .faq-item .chev,
.contact-faq .faq-item.open .chev {
  transform: none;
}

.contact-cta {
  gap: 32px;
  padding: 96px var(--gutter);
}

.contact-cta .eyebrow {
  color: var(--green);
}

.contact-cta .display {
  font-size: 48px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  max-width: 900px;
}

.contact-cta .lead {
  max-width: 680px;
  font-size: 18px;
  color: var(--mint);
}

.contact-cta .final-copy {
  gap: 16px;
  max-width: 900px;
}

@media (max-width: 860px) {
  .contact-hero .display {
    font-size: clamp(28px, 8vw, 48px);
    white-space: normal;
    letter-spacing: -1.5px;
  }

  .contact-cta .display {
    font-size: 32px;
  }

  .form-panel {
    padding: 24px;
  }

  .form-panel h2,
  .info-panel h2 {
    white-space: normal;
  }
}

/* SUCCESS STORIES — Figma 1440, node 18:4 */
.stories-page .nav-cta {
  gap: 24px;
}

.stories-page .pill-nav {
  padding: 12px 24px;
}

.stories-page .footer-bot p {
  font-size: 13px;
}

.stories-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 96px var(--gutter);
  background: var(--forest);
  text-align: center;
}

.stories-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  width: 100%;
}

.stories-hero .display {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
}

.stories-hero .lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--surface);
  text-align: center;
}

.hero-stat-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 40px;
  background: var(--mint);
  border-radius: 16px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

.hero-stat .icon {
  width: 20px;
  height: 20px;
}

.hero-stat-div {
  display: flex;
  width: 0;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.hero-stat-div img {
  width: 24px;
  height: 1px;
  transform: rotate(90deg);
}

.featured-story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 120px var(--gutter) 60px;
  background: #fff;
}

.section-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
}

.featured-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 1280px;
  background: #fff;
  border: 1px solid var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(14, 15, 12, 0.06);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.featured-photo {
  flex: 1 1 0;
  min-width: 0;
  height: 500px;
}

.featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
}

.featured-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 48px;
}

.featured-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.featured-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--forest);
}

.featured-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.meta-row.wrap {
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.tag-dark {
  background: var(--forest);
  color: #fff;
}

.quote-box {
  margin: 0;
  width: 100%;
  padding: 0 0 0 16px;
  border-left: 4px solid var(--green);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  color: var(--forest);
}

.stories-grid-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 80px var(--gutter) 120px;
  background: #fff;
}

.stories-grid-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.stories-grid-head .display {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.stories-grid-head .lead {
  font-size: 16px;
  white-space: nowrap;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: center;
  width: 100%;
}

.story-card {
  display: flex;
  flex-direction: column;
  width: 400px;
  background: #fff;
  border: 1px solid var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 15, 12, 0.06);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.story-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  width: 100%;
}

.story-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.story-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--forest);
}

.story-top p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

.story-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-top: 12px;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
}

.read-more .icon {
  width: 14px;
  height: 14px;
}

.stories-stats {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px var(--gutter);
  background: var(--forest);
  text-align: center;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 260px;
}

.metric-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -1.5px;
  color: var(--green);
}

.metric-label {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.stories-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 120px var(--gutter);
  background: #fff;
  text-align: center;
}

.stories-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  width: 100%;
}

.stories-cta .display {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.stories-cta .lead {
  font-size: 18px;
}

.stories-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stories-cta-pill {
  padding: 16px 32px;
  font-size: 16px;
}

.stories-cta-actions p {
  margin: 0;
  font-size: 13px;
  color: var(--body);
}

@media (max-width: 1200px) {
  .stories-grid-head .lead {
    white-space: normal;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-photo {
    width: 100%;
    height: 320px;
  }
}

@media (max-width: 860px) {
  .stories-hero .display {
    font-size: 36px;
  }

  .stories-cta .display,
  .featured-header h2 {
    font-size: 28px;
  }

  .hero-stat-banner,
  .stories-stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-stat-div {
    display: none;
  }

  .hero-stat {
    white-space: normal;
  }

  .story-card {
    width: 100%;
    max-width: 400px;
  }
}

/* ARTICLE — Figma node 59:4 */
html.article-pending .article-crumbs,
html.article-pending .article-hero,
html.article-pending .article-summary-wrap,
html.article-pending .article-body-wrap {
  visibility: hidden;
}

.article-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px var(--gutter) 0;
  font-size: 14px;
  color: var(--body);
  white-space: nowrap;
}

.article-crumbs a {
  color: var(--body);
}

.article-crumbs strong {
  font-weight: 600;
  color: var(--forest);
}

.article-hero {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 48px var(--gutter) 64px;
}

.article-photo {
  flex: 1 1 0;
  min-width: 0;
  height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.article-hero-copy .display {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.article-lede {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--forest);
}

.article-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-author strong {
  font-size: 16px;
  color: var(--forest);
}

.article-author span {
  font-size: 14px;
  color: var(--body);
}

.article-summary-wrap {
  padding: 0 var(--gutter) 64px;
}

.article-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 32px;
  background: var(--mint);
  border-radius: var(--radius-card);
}

.article-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--forest);
}

.article-stat p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
}

.article-stat strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  white-space: nowrap;
}

.article-stat-div {
  display: flex;
  width: 0;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-stat-div img {
  width: 48px;
  height: 1px;
  transform: rotate(90deg);
}

.article-body-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 96px;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 720px;
  max-width: calc(100% - 2 * var(--gutter));
}

.article-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--forest);
}

.article-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.article-pull {
  margin: 0;
  width: 100%;
  padding: 8px 0 8px 24px;
  font-size: 20px;
  font-style: normal;
  line-height: 1.5;
  color: var(--forest);
}

.apt-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  filter: drop-shadow(0 8px 12px rgba(14, 15, 12, 0.06));
}

.apt-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--forest);
}

.apt-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.apt-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apt-grid p {
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: var(--body);
  white-space: nowrap;
}

.apt-grid strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.article-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 96px var(--gutter);
  background: var(--forest);
  text-align: center;
}

.article-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  width: 100%;
}

.article-cta .display {
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -2px;
  color: #fff;
}

.article-cta .lead {
  max-width: 680px;
  font-size: 18px;
  color: var(--mint);
}

.article-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.article-cta-pill {
  padding: 16px 32px;
  font-size: 16px;
}

.article-back {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-position: from-font;
}

.article-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 32px;
  overflow: auto;
}

.article-popup[hidden] {
  display: none;
}

.article-popup-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.article-popup-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 560px;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 24px rgba(14, 15, 12, 0.17);
}

.article-popup-close-row {
  display: flex;
  justify-content: flex-end;
  margin: -8px -8px -12px 0;
}

.article-popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pale);
  cursor: pointer;
}

.article-popup-close .icon {
  width: 18px;
  height: 18px;
}

.article-popup-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.article-popup-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.article-popup-head p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
}

.article-popup-cta {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
}

.article-popup-or {
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-popup-or span {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.article-popup-or em {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}

.article-popup-form-title {
  margin: -8px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--forest);
}

.article-popup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-popup-form textarea {
  height: 100px;
}

.article-popup-send {
  width: 100%;
  padding: 16px 32px;
  border: 2px solid var(--forest);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.article-popup-legal {
  margin: -8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: var(--body);
}

body.article-popup-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .article-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .article-photo {
    width: 100%;
    height: 320px;
  }

  .article-summary {
    flex-wrap: wrap;
    gap: 24px;
  }

  .article-stat {
    flex: 1 1 140px;
  }

  .article-stat strong {
    white-space: normal;
  }

  .article-stat-div {
    display: none;
  }

  .apt-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .article-hero-copy .display,
  .article-cta .display {
    font-size: 32px;
  }

  .article-crumbs {
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* LEGAL PAGES */
.legal-page .nav-cta {
  gap: 24px;
}

.legal-page .footer-bot p {
  font-size: 13px;
}

.legal-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 48px var(--gutter) 0;
  font-size: 14px;
  white-space: nowrap;
  color: var(--body);
}

.privacy-page .legal-crumbs {
  padding-top: 40px;
  font-size: 13px;
}

.legal-crumbs a,
.legal-crumbs span {
  font-weight: 500;
  color: var(--body);
}

.legal-crumbs strong {
  font-weight: 600;
  color: var(--forest);
}

.legal-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px var(--gutter) 64px;
}

.legal-header .display {
  font-size: 64px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--mint);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.legal-meta p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}

.legal-cols {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  padding: 0 var(--gutter) 120px;
}

.privacy-page .legal-cols {
  padding-top: 20px;
}

.legal-toc {
  position: sticky;
  top: 24px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--surface);
  border-radius: var(--radius-card);
  background: var(--pale);
}

.legal-toc h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
}

.legal-toc nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-toc a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}

.legal-toc a .toc-bar {
  display: none;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.legal-toc a.is-active {
  font-weight: 700;
  color: var(--forest);
}

.legal-toc a.is-active .toc-bar {
  display: block;
}

.legal-toc hr {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--surface);
}

.legal-toc-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc-note p {
  margin: 0;
  font-size: 12px;
  color: var(--body);
}

.legal-toc-note a {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
}

.legal-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-page .legal-body {
  gap: 56px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--surface);
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--forest);
}

.legal-section p,
.privacy-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.legal-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 96px var(--gutter);
  background: var(--forest);
  text-align: center;
}

.legal-cta .eyebrow {
  color: var(--green);
}

.legal-cta .display {
  color: #fff;
  font-size: 48px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 900px;
}

.legal-cta .lead {
  color: var(--mint);
  font-size: 18px;
  max-width: 680px;
}

.footer-col a.is-current {
  color: var(--green);
  font-weight: 600;
}

/* PRIVACY */
.privacy-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 56px var(--gutter) 64px;
  text-align: center;
}

.privacy-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--mint);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.privacy-hero .display {
  font-size: 64px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.privacy-hero p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--body);
}

.privacy-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.privacy-block.is-cards {
  gap: 32px;
}

.privacy-h {
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--mint);
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--forest);
}

.privacy-h h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
}

.privacy-copy {
  font-size: 15px;
}

.privacy-copy strong,
.privacy-id strong,
.privacy-dpo p strong {
  font-weight: 700;
  color: var(--forest);
}

.privacy-id {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--surface);
  border-radius: 16px;
  background: var(--pale);
}

.privacy-id h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--body);
}

.privacy-id-row {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--body);
}

.data-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.data-row {
  display: flex;
  gap: 20px;
}

.data-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--surface);
  border-radius: 16px;
  background: var(--pale);
}

.data-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.data-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--mint);
  flex-shrink: 0;
}

.data-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
}

.data-card > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

.data-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.data-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body);
}

.data-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.purpose-list,
.partner-list,
.rights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.purpose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.purpose-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
}

.purpose-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purpose-item strong {
  font-size: 15px;
  color: var(--forest);
}

.purpose-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

.partner-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--surface);
  border-radius: 12px;
  background: var(--pale);
}

.partner-row strong {
  width: 240px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--forest);
}

.partner-row span {
  font-size: 14px;
  color: var(--body);
}

.rights-list {
  gap: 16px;
}

.right-card {
  padding: 24px;
  border: 1px solid var(--surface);
  border-left: 4px solid var(--green);
  border-radius: 4px 16px 16px 4px;
  background: #fff;
}

.right-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--forest);
}

.right-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

.privacy-dpo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: var(--mint);
}

.privacy-dpo strong {
  font-size: 16px;
  color: var(--forest);
}

.privacy-dpo p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

/* COOKIES */
.cookies-page {
  --cookie-gutter: max(160px, calc((100% - 1120px) / 2));
}

.cookies-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px var(--gutter) 48px;
  text-align: center;
}

.cookies-hero .legal-crumbs {
  padding: 0;
}

.cookies-hero .display {
  font-size: 64px;
  letter-spacing: -2.5px;
  line-height: 1;
}

.cookies-hero h2 {
  margin: 0;
  max-width: 760px;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
}

.cookies-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.cookies-prefs {
  --cookie-gutter: max(160px, calc((100% - 1120px) / 2));
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px var(--cookie-gutter) 80px;
}

.cookie-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--surface);
  border-radius: 16px;
  background: #fff;
}

.cookie-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
}

.cookie-always {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forest);
}

.cookie-card > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  flex-shrink: 0;
}

.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(14, 15, 12, 0.12);
  transition: left 0.15s ease;
}

.cookie-toggle.is-off {
  background: var(--surface);
}

.cookie-toggle.is-off::after {
  left: 2px;
}

.cookie-toggle:disabled,
.cookie-toggle.is-locked {
  cursor: default;
}

.cookie-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--surface);
  border-radius: 8px;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--surface);
}

.cookie-table th {
  padding: 8px 12px;
  background: var(--pale);
  font-size: 11px;
  font-weight: 700;
  color: var(--forest);
}

.cookie-table td:first-child {
  width: 160px;
  font-weight: 600;
  color: var(--forest);
}

.cookie-table td:last-child,
.cookie-table th:last-child {
  width: 120px;
  text-align: right;
}

.cookie-table td {
  color: var(--body);
}

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

.cookie-empty td {
  font-weight: 400;
  text-align: left;
  color: var(--body);
}

.cookie-actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}

.cookie-actions .pill,
.cookie-actions .pill-outline {
  flex: 1;
  padding: 16px 32px;
  font-size: 16px;
}

.pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--forest);
  font-weight: 700;
  white-space: nowrap;
}

.cookie-saved {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}

.cookies-guide {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px var(--cookie-gutter, max(160px, calc((100% - 1120px) / 2))) 120px;
  border-top: 1px solid var(--surface);
  background: var(--pale);
}

.cookies-guide-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookies-guide-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--forest);
}

.cookies-guide-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.browser-grid {
  display: flex;
  gap: 24px;
}

.browser-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--surface);
  border-radius: 16px;
  background: #fff;
}

.browser-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--mint);
  flex-shrink: 0;
}

.browser-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
}

.browser-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

@media (max-width: 1100px) {
  .legal-cols,
  .data-row,
  .cookie-actions,
  .browser-grid,
  .privacy-id-row,
  .partner-row {
    flex-direction: column;
  }

  .legal-toc {
    position: static;
    width: 100%;
  }

  .partner-row strong {
    width: auto;
  }

  .cookies-prefs,
  .cookies-guide {
    --cookie-gutter: var(--gutter);
  }
}

@media (max-width: 860px) {
  .legal-header .display,
  .privacy-hero .display,
  .cookies-hero .display,
  .legal-cta .display {
    font-size: 36px;
  }

  .legal-crumbs,
  .cookies-hero .legal-crumbs {
    flex-wrap: wrap;
    white-space: normal;
  }
}

.site-toasts {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.site-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 16px;
  box-shadow: 0 16px 24px rgba(14, 15, 12, 0.12);
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.site-toast p {
  margin: 0;
}

.site-toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.site-toast-error {
  border-color: var(--sold);
}

.site-toast-error .site-toast-dot {
  background: var(--sold);
}

/* Marketing games */
.game-page .navbar .menu a[href="/hry"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.game-hero,
.game-board,
.game-hub {
  padding: 48px var(--gutter) 80px;
}

.game-hero {
  display: grid;
  gap: 20px;
  max-width: var(--page);
  margin: 0 auto;
}

.game-hero .display {
  max-width: 18ch;
}

.game-hero .lead {
  max-width: 640px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.5;
}

.game-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-pill {
  display: inline-flex;
  align-items: center;
  background: var(--mint);
  color: var(--forest);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.game-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--page);
  margin: 0 auto 80px;
}

.game-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 40px rgba(14, 15, 12, 0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-card h2 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}

.game-card p {
  margin: 0;
  color: var(--body);
  line-height: 1.5;
}

.game-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: var(--page);
  margin: 0 auto;
}

.flat-card {
  background: var(--canvas);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 40px rgba(14, 15, 12, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 2px solid transparent;
  min-width: 0;
}

.flat-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface);
}

.flat-card .meta {
  padding: 20px 22px 24px;
  display: grid;
  gap: 8px;
}

.flat-card .loc {
  font-weight: 700;
  color: var(--ink);
}

.flat-card .spec,
.flat-card .portal {
  color: var(--body);
  font-size: 14px;
}

.flat-card .price {
  font-variant-numeric: tabular-nums;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
}

.flat-card.pickable {
  cursor: pointer;
}

.flat-card.pickable:hover,
.flat-card.pickable:focus-visible {
  border-color: var(--green);
}

.flat-card.win {
  border-color: var(--green);
  background: var(--mint);
}

.flat-card.lose {
  opacity: 0.72;
}

.vs-mark {
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.game-status {
  max-width: var(--page);
  margin: 28px auto 0;
  display: grid;
  gap: 16px;
}

.game-status .fomo {
  background: var(--mint);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--forest);
}

.game-scoreline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
}

.rent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--page);
  margin: 0 auto;
}

.rent-card {
  background: var(--canvas);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 28px rgba(14, 15, 12, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rent-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--surface);
}

.rent-card .meta {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.rent-card label {
  font-size: 12px;
  color: var(--body);
}

.rent-card input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 0;
  outline: none;
}

.rent-card input:focus {
  border-color: var(--forest);
}

.game-form {
  max-width: var(--page);
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.game-form input[type="text"] {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  min-width: 220px;
}

.game-result {
  max-width: var(--page);
  margin: 24px auto 0;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 24px;
}

@media (max-width: 900px) {
  .game-hub,
  .game-pair,
  .rent-grid {
    grid-template-columns: 1fr;
  }
  .vs-mark {
    display: none;
  }
  .game-hero .display {
    font-size: 42px;
    line-height: 0.9;
  }
  .flat-card img {
    height: 180px;
  }
}

