:root {
  --ink: #121417;
  --muted: #5f6672;
  --paper: #f6f3ee;
  --paper-2: #fffaf1;
  --line: #d9d2c6;
  --forest: #1f5b4d;
  --forest-2: #174238;
  --sky: #d8ecff;
  --coral: #e96d52;
  --gold: #c69b47;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 22, 24, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(246, 243, 238, 0.9);
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--paper-2);
  background: var(--forest);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(18, 20, 23, 0.78);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-2) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(86svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./assets/platform-preview.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.9) 0%, rgba(18, 20, 23, 0.68) 42%, rgba(18, 20, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 20, 23, 0.74) 0%, rgba(18, 20, 23, 0.08) 60%);
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 48px;
  color: var(--paper-2);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 10vw, 8.75rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 44px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--paper-2);
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-2);
}

.button-secondary {
  color: var(--paper-2);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(18, 20, 23, 0.44);
}

.hero-facts dt {
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.76rem;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.notice-band {
  padding: 22px 32px;
  color: var(--paper-2);
  background: var(--forest);
}

.notice-band p {
  width: min(1120px, 100%);
  margin: 0 auto;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

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

.process-grid,
.trust-grid,
.audience-grid {
  display: grid;
  gap: 16px;
}

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

.process-item,
.audience-panel,
.trust-grid article,
.pricing-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 1px 0 rgba(18, 20, 23, 0.04);
}

.process-item {
  min-height: 260px;
  padding: 24px;
}

.step-number {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 900;
}

.process-item p,
.trust-grid p,
.audience-panel li,
.pricing-copy p,
.contact-copy p,
.site-footer p,
.policy-page p,
.policy-page li {
  color: var(--muted);
}

.split-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: var(--paper-2);
}

.split-section .section-heading {
  width: min(760px, 100%);
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-panel {
  padding: 28px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--forest);
}

.trust-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: #e9efe9;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 240px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.pricing-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.pricing-panel {
  padding: 30px;
  background: var(--ink);
  color: var(--paper-2);
  box-shadow: var(--shadow);
}

.commission {
  display: block;
  font-size: clamp(4.6rem, 8vw, 7.5rem);
  line-height: 0.86;
  font-weight: 900;
  color: var(--coral);
}

.pricing-panel p,
.pricing-panel li {
  color: rgba(255, 250, 241, 0.78);
}

.compact {
  margin-top: 26px;
}

.pricing-panel .check-list li::before {
  background: var(--coral);
}

.policy-summary {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.policy-links a {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  font-weight: 800;
  text-decoration: none;
}

.contact-section {
  align-items: stretch;
}

address {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  font-style: normal;
}

address a {
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--paper-2);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 32px;
  align-items: start;
  padding: 46px 32px;
  color: var(--paper-2);
  background: var(--ink);
}

.footer-brand .brand-mark {
  background: var(--coral);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--paper-2);
  text-decoration: none;
}

.fine-print {
  text-align: right;
}

.policy-body {
  background: var(--paper-2);
}

.policy-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.policy-header .site-nav {
  position: static;
}

.policy-main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.policy-page h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
}

.policy-page h2 {
  margin-top: 46px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.policy-page ul {
  padding-left: 20px;
}

.policy-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
}

@media (max-width: 920px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .policy-header .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

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

  .process-grid,
  .trust-grid,
  .audience-grid,
  .pricing-section,
  .contact-section,
  .policy-links,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .process-item {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 32px;
  }

  .fine-print {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-inner {
    width: min(100% - 32px, 1120px);
    padding: 56px 0 34px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 68px 0;
  }
}
