:root {
  --ink: #18223f;
  --muted: #6f7175;
  --paper: #fff9ef;
  --surface: #ffffff;
  --line: #e5e2dd;
  --brand-blue: #2f4aa0;
  --brand-blue-dark: #213678;
  --brand-orange: #f9a11b;
  --brand-orange-dark: #df8500;
  --brand-grey: #7b7d80;
  --soft-blue: #eef3ff;
  --soft-orange: #fff1d9;
  --shadow: 0 22px 60px rgba(47, 74, 160, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 249, 239, 0.9);
  border-bottom: 1px solid rgba(230, 222, 208, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 210px;
  height: 52px;
  object-fit: contain;
}

.nav-links {
  gap: clamp(18px, 3vw, 34px);
  color: #4d556d;
  font-size: 0.94rem;
  font-weight: 600;
}

.header-cta,
.primary-button,
.secondary-button,
.join-button,
.vendor-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: white;
  background: var(--brand-blue);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding: 148px clamp(20px, 6vw, 88px) 72px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.98) 0%, rgba(255, 249, 239, 0.92) 29%, rgba(255, 249, 239, 0.54) 54%, rgba(255, 249, 239, 0.08) 82%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.88) 0%, rgba(255, 249, 239, 0.16) 40%, rgba(255, 249, 239, 0.76) 100%);
}

.hero-content {
  max-width: 690px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: #4d556d;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.primary-button {
  color: white;
  background: var(--brand-blue);
  box-shadow: 0 14px 32px rgba(47, 74, 160, 0.24);
}

.secondary-button {
  color: var(--brand-blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 74, 160, 0.25);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.hero-stats div {
  width: min(186px, 100%);
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 222, 208, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(24, 33, 31, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: 28px clamp(20px, 3vw, 34px);
  background: white;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1rem;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 88px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  background: var(--surface);
}

.section-copy h2,
.section-heading h2,
.categories-section h2,
.join-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.join-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.insight-panel {
  display: grid;
  gap: 14px;
}

.insight-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  color: white;
  background: var(--brand-blue-dark);
  border-radius: 8px;
}

.insight-item:nth-child(2) {
  background: var(--brand-orange-dark);
}

.insight-item:nth-child(3) {
  background: var(--brand-grey);
}

.insight-item span {
  display: grid;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--brand-blue);
  border-radius: 8px;
  font-weight: 800;
  place-items: center;
}

.insight-item p {
  margin: 0;
  font-weight: 700;
}

.benefits-section {
  background: var(--soft-orange);
}

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

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

.benefit-card {
  min-height: 278px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(131, 63, 47, 0.08);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  color: white;
  background: var(--brand-blue);
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  place-items: center;
}

.benefit-card:nth-child(2) .card-icon {
  background: var(--brand-orange-dark);
}

.benefit-card:nth-child(3) .card-icon {
  background: var(--brand-grey);
}

.benefit-card:nth-child(4) .card-icon {
  background: var(--brand-blue-dark);
}

.benefit-card:nth-child(5) .card-icon {
  background: var(--brand-orange-dark);
}

.benefit-card:nth-child(6) .card-icon {
  background: var(--brand-blue);
}

.benefit-card:nth-child(7) .card-icon {
  background: var(--brand-grey);
}

.benefit-card:nth-child(8) .card-icon {
  background: var(--brand-orange-dark);
}

.benefit-card h3,
.steps h3 {
  margin: 0;
  font-size: 1.16rem;
}

.benefit-card p,
.steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.categories-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: center;
  background: var(--brand-blue-dark);
  color: white;
}

.categories-section .eyebrow {
  color: var(--brand-orange);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #10201d;
  background: #fff5e5;
  border-radius: 8px;
  font-weight: 800;
}

.steps-section {
  background: var(--surface);
}

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

.steps article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  color: white;
  background: var(--brand-blue);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 88px);
  color: white;
  background:
    linear-gradient(135deg, rgba(47, 74, 160, 0.97), rgba(33, 54, 120, 0.98)),
    var(--brand-blue-dark);
}

.join-section .eyebrow,
.join-copy p {
  color: #ffe3b5;
}

.join-button {
  justify-self: end;
  width: min(100%, 260px);
  min-height: 54px;
  color: #332000;
  background: var(--brand-orange);
}

.vendor-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-form {
  margin-top: 4px;
}

.form-heading {
  margin-bottom: 2px;
}

.form-heading h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.form-heading p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vendor-form label {
  display: grid;
  gap: 8px;
  color: #46524e;
  font-size: 0.9rem;
  font-weight: 800;
}

.vendor-form input,
.vendor-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff9ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.vendor-form textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.vendor-form button {
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  color: white;
  cursor: pointer;
  background: var(--brand-blue);
  border: 0;
  font: inherit;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.86rem;
}

.form-note {
  color: var(--muted);
}

.form-status {
  min-height: 22px;
  color: var(--brand-blue);
  font-weight: 800;
}

.faq-section {
  background: var(--soft-blue);
}

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

.faq-list details {
  padding: 22px 24px;
  background: white;
  border: 1px solid #dbe3fa;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(47, 74, 160, 0.08);
}

.faq-list summary {
  color: var(--brand-blue-dark);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.6fr) minmax(240px, 0.8fr);
  gap: 32px;
  padding: 42px clamp(20px, 6vw, 88px);
  color: white;
  background: #1d2438;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 22px;
  color: #aeb7cc;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-logo {
  display: block;
  width: 230px;
  height: 58px;
  object-fit: contain;
}

.footer-brand p,
.footer-contact span {
  max-width: 430px;
  margin: 16px 0 0;
  color: #c9cfde;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: #eef3ff;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  align-content: start;
}

.footer-contact strong {
  color: var(--brand-orange);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .split-section,
  .categories-section,
  .join-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-form {
    max-width: 560px;
  }

  .join-button {
    justify-self: start;
  }

  .benefit-grid,
  .steps,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 249, 239, 0.98) 0%, rgba(255, 249, 239, 0.9) 50%, rgba(255, 249, 239, 0.64) 100%),
      linear-gradient(90deg, rgba(255, 249, 239, 0.95), rgba(255, 249, 239, 0.42));
  }

  .hero-image {
    object-position: 64% center;
  }

  h1 {
    font-size: clamp(2.72rem, 14vw, 4rem);
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-stats div {
    width: 100%;
    min-height: 78px;
  }

  .hero-form {
    max-width: none;
    padding: 20px;
  }

  .section,
  .join-section {
    padding: 56px 18px;
  }

  .trust-strip,
  .benefit-grid,
  .steps,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .steps article {
    min-height: auto;
  }
}
