:root {
  --paper: #e6dbcc;
  --paper-soft: #f8f4ed;
  --sand: #d6c5b1;
  --clay: #c9ad98;
  --ink: #222321;
  --muted: #5f615d;
  --pine: #171b19;
  --pine-2: #202622;
  --pine-3: #34473e;
  --copper: #a75f3b;
  --copper-dark: #8c4d31;
  --sage: #718a78;
  --line: #a99f94;
  --line-dark: rgba(230, 219, 204, 0.28);
  --white: #f8f4ed;
  --good: #547b5e;
  --warn: #a8653f;
  --danger: #a14e44;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --serif: "Lora", Georgia, serif;
  --sans: "Archivo", "Segoe UI", sans-serif;
  --page: 1380px;
  --gutter: clamp(20px, 3.3vw, 52px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body,
button,
input,
textarea {
  font-family: var(--sans);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 86px;
}

.site-wrap {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(230, 219, 204, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: block;
  width: 158px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--copper);
}

.nav-action {
  justify-self: end;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--copper);
  border-radius: 1px;
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.button:active {
  transform: translateY(1px);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--copper);
}

.button-outline:hover {
  color: #fff;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 600;
}

.arrow-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 160ms ease;
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
  grid-template-rows: auto auto;
  column-gap: clamp(36px, 5vw, 72px);
  padding-block: clamp(34px, 4.2vw, 58px) clamp(34px, 4vw, 54px);
}

.hero-title {
  align-self: start;
  margin: 0;
  max-width: 1070px;
  font-family: var(--display);
  font-size: clamp(76px, 7.7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-product-index {
  align-self: end;
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
}

.hero-product-index a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: color 160ms ease, padding 160ms ease;
}

.hero-product-index a:hover {
  padding-left: 5px;
  color: var(--copper);
}

.hero-bottom {
  align-self: end;
  max-width: 520px;
  padding-top: 22px;
}

.hero-copy {
  max-width: 50ch;
  margin: 0 0 24px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dark-band {
  background: var(--pine);
  color: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.section-head h2,
.editorial-title,
.proof-copy h3,
.closing-title {
  font-family: var(--serif);
  font-weight: 480;
  letter-spacing: -0.025em;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.1;
}

.section-head p {
  max-width: 47ch;
  margin: 0;
  color: rgba(238, 231, 222, 0.68);
  font-size: 13px;
}

.products {
  padding-block: clamp(48px, 5vw, 70px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.product-heading {
  min-height: 94px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.product-number,
.proof-number {
  color: var(--copper);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.product-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 480;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: uppercase;
}

.product-screen {
  min-height: 266px;
  margin: 4px 0 20px;
  overflow: hidden;
  background: var(--white);
  color: #20302a;
  border: 1px solid rgba(238, 231, 222, 0.36);
  font-family: var(--sans);
  font-size: 9px;
}

.product-card > p {
  min-height: 70px;
  margin: 0 0 18px;
  color: rgba(238, 231, 222, 0.8);
  font-size: 13px;
}

.mini-app {
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
}

.mini-sidebar {
  padding: 16px 10px;
  background: var(--pine-2);
  color: rgba(255, 255, 255, 0.58);
}

.mini-sidebar b {
  display: block;
  margin-bottom: 19px;
  color: #fff;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 560;
}

.mini-sidebar span {
  display: block;
  margin: 0 -10px;
  padding: 6px 10px;
}

.mini-sidebar .active {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.mini-main {
  padding: 15px;
  background: #faf8f3;
}

.mini-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #ddd9d0;
}

.mini-topline strong {
  font-size: 11px;
}

.mini-tabs {
  display: flex;
  gap: 10px;
  color: #6b6e69;
  font-size: 7px;
}

.mini-tabs b {
  color: #22342d;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--copper);
}

.mini-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e4e0d8;
}

.mini-row strong,
.mini-row small {
  display: block;
}

.mini-row strong {
  font-size: 8px;
}

.mini-row small {
  color: #767a74;
  font-size: 6.5px;
}

.status {
  padding: 3px 5px;
  color: var(--copper-dark);
  border: 1px solid #ddc2b1;
  font-size: 6px;
}

.status.good {
  color: var(--good);
  border-color: #b9cbbd;
}

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mini-metric {
  padding: 9px;
  border: 1px solid #ddd9d0;
}

.mini-metric span,
.mini-metric strong {
  display: block;
}

.mini-metric span {
  color: #747771;
  font-size: 6.5px;
}

.mini-metric strong {
  margin: 2px 0 8px;
  font-family: var(--serif);
  font-size: 14px;
}

.spark {
  height: 28px;
  display: flex;
  align-items: end;
  gap: 2px;
}

.spark i {
  flex: 1;
  height: var(--h);
  background: var(--sage);
}

.owner-mini {
  min-height: inherit;
  display: grid;
  grid-template-rows: 82px 1fr;
  background: #faf8f3;
}

.owner-mini-head {
  padding: 14px 15px;
  color: #fff;
  background: var(--pine-3);
}

.owner-mini-brand {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.owner-mini-head strong {
  display: block;
  margin-top: 15px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 480;
}

.owner-mini-head small {
  color: rgba(255, 255, 255, 0.66);
}

.owner-mini-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.owner-tile {
  min-width: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid #e1ddd5;
}

.owner-tile span,
.owner-tile strong,
.owner-tile small {
  display: block;
}

.owner-tile span {
  color: #737772;
  font-size: 6.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.owner-tile strong {
  margin: 5px 0 3px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 560;
}

.owner-tile small {
  color: #72756f;
}

.fairness-mini {
  min-height: inherit;
  padding: 15px;
  background: #faf8f3;
}

.fair-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 7px;
}

.fair-table th,
.fair-table td {
  padding: 7px 5px;
  border-bottom: 1px solid #dedad1;
  text-align: left;
  white-space: nowrap;
}

.fair-table th {
  color: #777a74;
  font-weight: 500;
}

.fair-table td:first-child {
  color: var(--copper);
  font-family: var(--display);
  font-size: 10px;
}

.fair-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 9px;
  border: 1px solid #cfd9d1;
  color: var(--good);
}

.fair-summary b {
  display: block;
  font-size: 8px;
}

.fair-summary span {
  color: #71756f;
  font-size: 6.5px;
}

.fair-summary a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.product-preview {
  position: relative;
  height: 266px;
  background: #ece4d9;
  border-color: rgba(238, 231, 222, 0.52);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.preview-window-bar {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: #f8f5ef;
  color: #74766f;
  border-bottom: 1px solid #dcd5ca;
  font-size: 7px;
  letter-spacing: 0.02em;
}

.preview-window-brand {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
}

.association-shell {
  min-height: 234px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  background: #f8f5ef;
}

.preview-sidebar {
  padding: 14px 9px;
  background: #1f2a25;
  color: rgba(255, 255, 255, 0.57);
  font-size: 6.5px;
}

.preview-sidebar strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--serif);
  font-size: 9px;
}

.preview-sidebar span {
  display: block;
  margin-inline: -9px;
  padding: 5px 9px;
}

.preview-sidebar .active {
  background: #35463e;
  color: #fff;
}

.association-preview-main {
  min-width: 0;
  padding: 13px;
}

.preview-title-row,
.fairness-window-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.preview-title-row > span:first-child,
.fairness-window-head > span:first-child {
  display: grid;
  gap: 2px;
}

.preview-title-row strong,
.fairness-window-head strong {
  color: #1f2a25;
  font-size: 10px;
}

.preview-title-row small,
.fairness-window-head small {
  color: #777970;
  font-size: 6.5px;
}

.preview-control {
  padding: 4px 6px;
  color: #525750;
  border: 1px solid #d6d0c6;
  background: #fff;
  font-size: 6px;
  white-space: nowrap;
}

.association-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 12px 0 7px;
}

.association-stats > span {
  display: grid;
  gap: 2px;
  padding: 7px;
  background: #fff;
  border: 1px solid #e0dad0;
}

.association-stats small {
  color: #777970;
  font-size: 5.5px;
}

.association-stats strong {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 14px;
}

.association-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  padding: 7px 2px;
  border-bottom: 1px solid #ded8ce;
}

.association-request > span:first-child {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.association-request strong {
  color: #26322d;
  font-size: 7px;
}

.association-request small {
  overflow: hidden;
  color: #7d7e77;
  font-size: 5.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-status {
  padding: 3px 5px;
  color: #486456;
  background: #eef3ee;
  border: 1px solid #bcccbf;
  font-size: 5.5px;
}

.preview-status.amber {
  color: #9a5635;
  background: #f8eee8;
  border-color: #e1c4b4;
}

.preview-status.green {
  color: #486456;
}

.portal-composition {
  position: relative;
  height: 100%;
  min-height: inherit;
  padding: 15px 57px 15px 14px;
  background: #d9cfc1;
}

.portal-window {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  overflow: hidden;
  background: #f8f5ef;
  border: 1px solid #7a7c73;
  box-shadow: 0 12px 26px rgba(22, 29, 26, 0.17);
}

.portal-sidebar {
  padding: 12px 7px;
  background: #1f2925;
  color: rgba(255, 255, 255, 0.58);
  font-size: 5.5px;
}

.portal-sidebar strong {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 8px;
}

.portal-sidebar span {
  display: block;
  margin-inline: -7px;
  padding: 5px 7px;
}

.portal-sidebar .active {
  color: #fff;
  background: #35463e;
}

.portal-canvas {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(86px, 1fr) auto;
  background: #f8f5ef;
}

.portal-welcome {
  display: grid;
  gap: 2px;
  padding: 10px 12px 8px;
}

.portal-welcome span,
.portal-welcome small {
  color: #7a7c74;
  font-size: 5.5px;
}

.portal-welcome span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-welcome strong {
  color: #20302a;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 540;
}

.portal-hero-image {
  position: relative;
  min-height: 86px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: url("/canyon-house-hero.webp") 38% 54% / cover no-repeat;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.74);
}

.portal-hero-image span {
  font-family: var(--serif);
  font-size: 10px;
}

.portal-hero-image small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 5.5px;
}

.portal-quick-grid,
.portal-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd7cd;
  border-top: 1px solid #ddd7cd;
}

.portal-quick-grid > span,
.portal-detail-grid > div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 8px;
  background: #fff;
}

.portal-quick-grid small,
.portal-detail-grid small {
  color: #85877f;
  font-size: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portal-quick-grid strong,
.portal-detail-grid strong {
  overflow: hidden;
  color: #27342f;
  font-family: var(--serif);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-phone {
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 72px;
  height: 205px;
  overflow: hidden;
  padding: 13px 7px 8px;
  background: #fbf9f4;
  color: #27342f;
  border: 3px solid #25302b;
  border-radius: 15px;
  box-shadow: 0 14px 25px rgba(22, 29, 26, 0.28);
  font-size: 5px;
}

.phone-speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #25302b;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-brand {
  padding-bottom: 6px;
  color: #6d756e;
  border-bottom: 1px solid #ded9d0;
  font-family: var(--serif);
  font-size: 5px;
  letter-spacing: 0.06em;
}

.portal-phone > strong {
  display: block;
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 9px;
}

.phone-balance,
.phone-stay {
  display: grid;
  gap: 2px;
  margin-bottom: 7px;
  padding: 6px;
  background: #fff;
  border: 1px solid #ded9d0;
}

.phone-balance small,
.phone-stay small {
  color: #85877f;
  text-transform: uppercase;
}

.phone-balance b,
.phone-stay b {
  font-family: var(--serif);
  font-size: 8px;
}

.phone-balance span,
.phone-stay span {
  color: #70736d;
}

.phone-action {
  padding: 5px;
  color: #fff;
  background: #23322c;
  text-align: center;
}

.phone-nav {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  display: flex;
  justify-content: space-around;
  padding-top: 5px;
  border-top: 1px solid #ded9d0;
}

.phone-nav i {
  width: 5px;
  height: 5px;
  background: #8b918a;
  border-radius: 50%;
}

.phone-nav i:first-child {
  background: var(--pine-3);
}

.fairness-window {
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 14px;
  background: #f8f5ef;
  color: #28342f;
}

.fairness-window-head {
  padding-bottom: 9px;
  border-bottom: 1px solid #dcd6cc;
}

.fairness-window-body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 102px;
  border-bottom: 1px solid #ddd7cd;
}

.fairness-list {
  min-width: 0;
  padding-right: 10px;
}

.fairness-list-head,
.fairness-list-row {
  display: grid;
  grid-template-columns: 34px 1fr 1.1fr;
  align-items: center;
}

.fairness-list-head {
  padding: 8px 3px 6px;
  color: #83857d;
  font-size: 5.5px;
}

.fairness-list-row {
  min-height: 31px;
  padding: 4px 3px;
  border-top: 1px solid #e0dbd2;
  font-size: 6px;
}

.fairness-list-row b {
  color: var(--copper);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
}

.fairness-list-row strong {
  color: #2f3934;
  font-size: 6px;
  font-weight: 600;
}

.fairness-list-row.is-muted {
  color: #92948d;
  background: #f1ede6;
}

.fairness-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 11px 8px;
  border-left: 1px solid #ddd7cd;
  font-size: 6px;
}

.fairness-rail > strong {
  color: #26342e;
  font-size: 7px;
  line-height: 1.3;
}

.fairness-rail > small {
  color: #81847c;
  line-height: 1.35;
}

.fairness-check {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #67836e;
  border-radius: 50%;
  font-size: 8px;
}

.fairness-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: #5f675f;
}

.fairness-legend i,
.fairness-rule-set i {
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

.fairness-tabs {
  display: flex;
  gap: 16px;
  padding: 10px 0 0;
  color: #7a7d75;
  font-size: 8px;
}

.fairness-tabs strong {
  padding-bottom: 6px;
  color: #26342e;
  border-bottom: 2px solid var(--copper);
}

.fairness-window-large {
  height: 380px;
  min-height: 380px;
  padding: 24px;
}

.fairness-window-large .fairness-window-head strong {
  font-size: 16px;
}

.fairness-window-large .fairness-window-head small {
  font-size: 9px;
}

.fairness-window-large .preview-control {
  padding: 7px 9px;
  font-size: 8px;
}

.fairness-window-large .fairness-window-body {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.fairness-window-large .fairness-list {
  padding-right: 18px;
}

.fairness-window-large .fairness-list-head,
.fairness-window-large .fairness-list-row {
  grid-template-columns: 42px 0.9fr 1fr 1.1fr 0.9fr;
}

.fairness-window-large .fairness-list-head {
  padding-block: 14px 8px;
  font-size: 8px;
}

.fairness-window-large .fairness-list-row {
  min-height: 43px;
  padding-inline: 4px;
  font-size: 9px;
}

.fairness-window-large .fairness-list-row b {
  font-size: 12px;
}

.fairness-window-large .fairness-list-row strong {
  font-size: 9px;
}

.fairness-window-large .fairness-rail {
  gap: 8px;
  padding: 18px 16px;
  font-size: 8px;
}

.fairness-window-large .fairness-rail > strong {
  font-size: 11px;
}

.fairness-window-large .fairness-rail > a {
  margin-top: 3px;
  color: var(--copper-dark);
  border-bottom: 1px solid currentColor;
}

.fairness-rule-set {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #ddd7cd;
}

.fairness-rule-set b {
  color: #2c3933;
}

.fairness-rule-set span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6f736d;
}

.fairness-rule-set i {
  display: inline-block;
  flex: 0 0 auto;
  background: #c7a06e;
}

.fairness-rule-set i.green {
  background: #6f8f76;
}

.rule-link {
  color: var(--copper-dark);
  font-weight: 600;
}

.portal-composition-large {
  height: 380px;
  min-height: 380px;
  padding: 24px 126px 24px 22px;
}

.portal-composition-large .portal-window {
  grid-template-columns: 108px minmax(0, 1fr);
}

.portal-composition-large .portal-sidebar {
  padding: 24px 14px;
  font-size: 9px;
}

.portal-composition-large .portal-sidebar strong {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  font-size: 11px;
}

.portal-composition-large .portal-sidebar span {
  margin-inline: -14px;
  padding: 8px 14px;
}

.portal-composition-large .portal-welcome {
  padding: 17px 20px 13px;
}

.portal-composition-large .portal-welcome span,
.portal-composition-large .portal-welcome small {
  font-size: 8px;
}

.portal-composition-large .portal-welcome strong {
  font-size: 19px;
}

.portal-composition-large .portal-hero-image {
  min-height: 146px;
  padding: 14px 18px;
}

.portal-composition-large .portal-hero-image span {
  font-size: 16px;
}

.portal-composition-large .portal-hero-image small {
  font-size: 8px;
}

.portal-detail-grid > div {
  gap: 5px;
  padding: 13px;
}

.portal-detail-grid small {
  font-size: 7px;
}

.portal-detail-grid strong {
  font-size: 12px;
}

.portal-detail-grid span {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  color: #6e726b;
  font-size: 7px;
}

.portal-detail-grid b {
  color: var(--copper);
}

.portal-composition-large .portal-phone {
  right: 22px;
  bottom: 22px;
  width: 112px;
  height: 318px;
  padding: 20px 10px 10px;
  border-width: 4px;
  border-radius: 22px;
  font-size: 7px;
}

.portal-composition-large .phone-speaker {
  top: 8px;
  width: 25px;
}

.portal-composition-large .phone-brand {
  padding-bottom: 9px;
  font-size: 7px;
}

.portal-composition-large .portal-phone > strong {
  margin: 13px 0;
  font-size: 13px;
}

.portal-composition-large .phone-balance,
.portal-composition-large .phone-stay {
  gap: 4px;
  margin-bottom: 10px;
  padding: 9px;
}

.portal-composition-large .phone-balance b,
.portal-composition-large .phone-stay b {
  font-size: 11px;
}

.portal-composition-large .phone-action {
  padding: 7px;
}

.platform {
  padding-block: clamp(58px, 6vw, 84px);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: start;
}

.editorial-title {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 0.96;
}

.platform-copy {
  max-width: 38ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.relationship {
  padding-top: 12px;
}

.relationship-label {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.foundation-item {
  position: relative;
  padding: 12px 8px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.foundation-item:last-child {
  border-right: 0;
}

.foundation-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 34px 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.context {
  min-height: 174px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.context:last-child {
  border-right: 0;
}

.context h3 {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.context span {
  display: block;
  padding: 5px 0;
  border-top: 1px solid rgba(185, 177, 167, 0.58);
  font-size: 11px;
}

.product-proofs {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.proof-row {
  --proof-bg: var(--paper);
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  padding-block: clamp(50px, 5.4vw, 74px);
  background: var(--proof-bg);
  border-top: 1px solid var(--line);
  box-shadow: 0 0 0 100vmax var(--proof-bg);
  clip-path: inset(0 -100vmax);
}

.proof-row:first-child {
  border-top: 0;
}

.proof-row.reverse {
  grid-template-columns: minmax(0, 1.32fr) minmax(220px, 0.68fr);
}

.proof-row.reverse .proof-copy {
  order: 2;
}

.proof-row.reverse .proof-media {
  order: 1;
}

.proof-association {
  --proof-bg: var(--paper);
}

.proof-owner {
  --proof-bg: var(--pine);
  color: var(--paper-soft);
  border-top-color: var(--line-dark);
}

.proof-owner .proof-copy p {
  color: rgba(248, 244, 237, 0.72);
}

.proof-owner .proof-media {
  border-color: rgba(248, 244, 237, 0.4);
}

.proof-fairness {
  --proof-bg: var(--clay);
}

.proof-copy h3 {
  max-width: 10ch;
  margin: 14px 0 19px;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 0.98;
}

.proof-copy p {
  max-width: 38ch;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.proof-media {
  min-width: 0;
  border: 1px solid #6b6e68;
  background: var(--white);
  overflow: hidden;
}

.proof-media .mini-app,
.proof-media .owner-mini,
.proof-media .fairness-mini {
  min-height: 350px;
}

.proof-media .mini-app {
  grid-template-columns: 128px minmax(0, 1fr);
}

.proof-media .mini-sidebar {
  padding: 25px 16px;
  font-size: 11px;
}

.proof-media .mini-sidebar span {
  margin: 0 -16px;
  padding: 9px 16px;
}

.proof-media .mini-main,
.proof-media .fairness-mini {
  padding: 28px;
}

.proof-media .mini-topline strong {
  font-size: 15px;
}

.proof-media .mini-tabs {
  font-size: 9px;
}

.proof-media .mini-row {
  padding: 11px 0;
}

.proof-media .mini-row strong {
  font-size: 10px;
}

.proof-media .mini-row small,
.proof-media .status {
  font-size: 8px;
}

.proof-media .mini-metric span,
.proof-media .owner-tile span {
  font-size: 8px;
}

.proof-media .mini-metric strong,
.proof-media .owner-tile strong {
  font-size: 19px;
}

.proof-media .owner-mini {
  grid-template-rows: 112px 1fr;
}

.proof-media .owner-mini-head {
  padding: 22px 26px;
}

.proof-media .owner-mini-brand {
  font-size: 13px;
}

.proof-media .owner-mini-head strong {
  margin-top: 25px;
  font-size: 22px;
}

.proof-media .owner-mini-body {
  gap: 14px;
  padding: 22px;
}

.proof-media .owner-tile {
  padding: 17px;
}

.proof-media .fair-table {
  font-size: 10px;
}

.proof-media .fair-table th,
.proof-media .fair-table td {
  padding: 12px 9px;
}

.proof-media .fair-table td:first-child {
  font-size: 13px;
}

.proof-media .fair-summary {
  margin-top: 18px;
  padding: 13px;
}

.proof-media .fair-summary b {
  font-size: 11px;
}

.proof-media .fair-summary span {
  font-size: 9px;
}

.fairness-proof {
  padding-block: clamp(50px, 5.6vw, 76px);
}

.fairness-proof-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.fairness-proof-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 480;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.fairness-proof-copy > p {
  max-width: 34ch;
  margin: 20px 0 0;
  color: rgba(238, 231, 222, 0.72);
  font-size: 13px;
}

.modeled-note {
  display: block;
  margin-top: 18px;
  color: rgba(238, 231, 222, 0.47);
  font-size: 9px;
}

.spread-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line-dark);
}

.spread-card span {
  display: block;
  color: rgba(238, 231, 222, 0.62);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.spread-card strong {
  display: block;
  margin: 5px 0 4px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 480;
}

.spread-card.after strong {
  color: #87a88d;
}

.spread-card small {
  color: rgba(238, 231, 222, 0.64);
}

.bar-chart {
  height: 91px;
  display: flex;
  align-items: end;
  gap: 3px;
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-dark);
}

.bar-chart i {
  flex: 1;
  height: var(--h);
  background: var(--copper);
}

.spread-card.after .bar-chart i {
  background: var(--sage);
}

.proof-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.proof-arrow svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
}

.audiences {
  padding-block: clamp(44px, 5vw, 64px);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.audiences h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 480;
  letter-spacing: -0.02em;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience {
  min-height: 166px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.audience:last-child {
  border-right: 0;
}

.audience h3 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.15;
  text-transform: uppercase;
}

.audience p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.faq-section {
  padding-block: clamp(56px, 7vw, 92px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.faq-intro > p:last-child {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-intro a,
.faq-list a {
  color: var(--copper-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 560;
  line-height: 1.25;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--copper-dark);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 690px;
  margin: -4px 48px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.closing {
  padding-block: clamp(48px, 5.5vw, 74px);
  background: var(--sand);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
}

.closing-title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.93;
}

.closing p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.closing .button {
  min-width: 190px;
  min-height: 54px;
}

.site-footer {
  padding-block: 30px;
  background: var(--pine);
  color: rgba(238, 231, 222, 0.7);
  font-size: 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-legal {
  max-width: 390px;
  color: rgba(238, 231, 222, 0.88);
  line-height: 1.45;
}

.footer-brand img {
  width: 132px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

dialog {
  width: min(92vw, 540px);
  max-height: 90vh;
  overflow: auto;
  padding: 32px;
  border: 1px solid var(--ink);
  border-radius: 1px;
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(20, 35, 31, 0.22);
}

dialog::backdrop {
  background: rgba(20, 35, 31, 0.76);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

dialog h2 {
  max-width: 10ch;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 480;
  line-height: 1;
}

dialog > p {
  margin: 0 40px 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.demo-form textarea {
  min-height: 92px;
  resize: vertical;
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  min-height: 1px;
  margin: 0;
  color: var(--danger);
  font-size: 12px;
}

.form-fallback {
  color: var(--copper-dark);
  font-size: 12px;
  text-decoration: underline;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-note a {
  text-decoration: underline;
}

.demo-success {
  padding: 24px 0 6px;
}

.demo-success strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 560;
}

.demo-success p {
  color: var(--muted);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .hero-title {
    font-size: clamp(70px, 8.8vw, 94px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 26px;
  }

  .product-heading,
  .product-card > p,
  .product-card > .arrow-link {
    grid-column: 1;
  }

  .product-heading {
    min-height: 0;
  }

  .product-card > p {
    min-height: 0;
  }

  .product-screen {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 100%;
    margin: 0;
  }

  .fairness-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fairness-proof-copy {
    grid-column: 1 / -1;
  }

  .proof-arrow {
    display: none;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience:nth-child(3) {
    border-right: 0;
  }

  .audience:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 132px;
  }

  .nav-links {
    display: none;
  }

  .nav-action .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-block: 34px 44px;
  }

  .hero-title {
    font-size: clamp(54px, 16.5vw, 82px);
    line-height: 0.86;
  }

  .hero-product-index {
    display: none;
  }

  .hero-bottom {
    max-width: none;
    padding-top: 24px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .product-grid {
    display: block;
    border-top: 1px solid var(--line-dark);
  }

  .product-card {
    display: flex;
    padding: 24px 18px 30px;
    border-left: 1px solid var(--line-dark);
  }

  .product-heading {
    width: 100%;
    min-height: 76px;
  }

  .product-screen {
    width: 100%;
    min-height: 230px;
    margin: 2px 0 20px;
  }

  .product-preview {
    height: 280px;
  }

  .product-card > p {
    min-height: 0;
  }

  .platform-grid,
  .proof-row,
  .proof-row.reverse,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .platform-copy {
    max-width: 50ch;
  }

  .foundation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foundation-item:nth-child(2) {
    border-right: 0;
  }

  .foundation-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .context-grid {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .context {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .context:last-child {
    border-bottom: 0;
  }

  .proof-row.reverse .proof-copy,
  .proof-row.reverse .proof-media {
    order: initial;
  }

  .proof-copy h3 {
    max-width: 12ch;
  }

  .portal-composition-large {
    height: 440px;
    min-height: 440px;
    padding: 16px;
  }

  .portal-composition-large .portal-window {
    height: 294px;
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .portal-composition-large .portal-sidebar {
    padding: 18px 10px;
    font-size: 7px;
  }

  .portal-composition-large .portal-sidebar span {
    margin-inline: -10px;
    padding: 7px 10px;
  }

  .portal-composition-large .portal-welcome strong {
    font-size: 15px;
  }

  .portal-composition-large .portal-hero-image {
    min-height: 116px;
  }

  .portal-composition-large .portal-phone {
    right: 17px;
    bottom: 15px;
    width: 104px;
    height: 268px;
  }

  .portal-composition-large .portal-detail-grid > div:nth-child(2) {
    display: none;
  }

  .portal-composition-large .portal-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fairness-window-large {
    height: auto;
    min-height: 530px;
    padding: 18px;
  }

  .fairness-window-large .fairness-window-body {
    grid-template-columns: 1fr;
  }

  .fairness-window-large .fairness-rail {
    min-height: 150px;
    border-top: 1px solid #ddd7cd;
    border-left: 0;
  }

  .fairness-window-large .fairness-list-head,
  .fairness-window-large .fairness-list-row {
    grid-template-columns: 38px 1fr 1.1fr 0.9fr;
  }

  .fairness-window-large .fairness-list-head span:nth-child(3),
  .fairness-window-large .fairness-list-row > span:nth-child(3) {
    display: none;
  }

  .fairness-rule-set {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .fairness-rule-set b {
    grid-column: 1 / -1;
  }

  .proof-media .mini-app,
  .proof-media .owner-mini,
  .proof-media .fairness-mini {
    min-height: 330px;
  }

  .proof-media .mini-app {
    grid-template-columns: 95px minmax(0, 1fr);
  }

  .proof-media .mini-sidebar {
    padding: 20px 12px;
    font-size: 9px;
  }

  .proof-media .mini-sidebar span {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .proof-media .mini-main,
  .proof-media .fairness-mini {
    padding: 18px;
  }

  .proof-media .fair-table th:nth-child(3),
  .proof-media .fair-table td:nth-child(3) {
    display: none;
  }

  .fairness-proof-grid {
    grid-template-columns: 1fr;
  }

  .spread-card {
    min-height: 210px;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience,
  .audience:nth-child(3) {
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .audience:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .audience:first-child,
  .audience:nth-child(2) {
    border-top: 0;
  }

  .audience:nth-child(even) {
    border-right: 0;
  }

  .audience:last-child {
    grid-column: 1 / -1;
    border-right: 1px solid var(--line);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-intro {
    position: static;
  }

  .closing-grid {
    align-items: start;
  }

  .closing .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .hero-title {
    font-size: clamp(49px, 15.8vw, 65px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .mini-app {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .mini-sidebar {
    padding-inline: 7px;
  }

  .mini-sidebar span {
    margin-inline: -7px;
    padding-inline: 7px;
  }

  .owner-mini-body {
    grid-template-columns: 1fr;
  }

  .owner-tile:nth-child(n + 3) {
    display: none;
  }

  .fair-table th:nth-child(4),
  .fair-table td:nth-child(4) {
    display: none;
  }

  .proof-media .mini-app {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .proof-media .mini-metrics {
    grid-template-columns: 1fr;
  }

  .proof-media .owner-mini-body {
    grid-template-columns: 1fr;
  }

  .proof-media .owner-tile:nth-child(n + 3) {
    display: none;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience,
  .audience:nth-child(odd),
  .audience:nth-child(even),
  .audience:last-child {
    grid-column: auto;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .audience:first-child {
    border-top: 0;
  }

  dialog {
    padding: 26px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
