:root {
  color-scheme: light;
  --ink: #201b17;
  --muted: #695f56;
  --line: #e1d8ce;
  --paper: #fbf7ed;
  --panel: #ffffff;
  --red: #e64636;
  --gold: #f4b63d;
  --blue: #3d79e8;
  --teal: #29a79b;
  --violet: #7760e8;
  --shadow: 0 24px 70px rgba(40, 31, 21, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 0%, rgba(61, 121, 232, 0.2), transparent 30rem),
    linear-gradient(180deg, rgba(244, 182, 61, 0.2), transparent 420px),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(225, 216, 206, 0.88);
  background: rgba(251, 247, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-canvas {
  display: block;
  width: 48px;
  height: 48px;
}

.top-nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.top-nav a {
  border-radius: 999px;
  padding: 8px 12px;
}

.top-nav a:hover {
  background: #f0eadf;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 85px);
  padding: clamp(54px, 8vw, 100px) clamp(18px, 4vw, 54px) 42px;
}

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

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

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

h1 {
  max-width: 1080px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.7vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 800px;
  margin-bottom: 30px;
  color: #443b33;
  font-size: clamp(1.06rem, 1.55vw, 1.3rem);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 850;
}

.primary-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(32, 27, 23, 0.2);
}

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

.secondary-button {
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.panel-topline,
.stat-stack {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.panel-topline {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.bundle-canvas {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d9cec2;
  border-radius: 6px;
  background: #fffaf0;
}

.stat-stack {
  flex-wrap: wrap;
  margin-top: 14px;
}

.stat-stack div {
  flex: 1 1 132px;
  min-width: 0;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.stat-stack span,
.stat-stack strong {
  display: block;
}

.stat-stack span {
  color: var(--muted);
  font-size: 0.75rem;
}

.stat-stack strong {
  margin-top: 4px;
  font-size: 0.95rem;
}

.source-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.source-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.76);
  color: #443b33;
  font-weight: 850;
  text-align: center;
}

.section,
.expansion-section,
.details-section,
.collector-section,
.faq-section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 54px);
}

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

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

.feature-card,
.collector-grid article {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-card:nth-child(2) {
  background: #eff6ff;
}

.feature-card:nth-child(3) {
  background: #fff3dc;
}

.card-index {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.expansion-copy p,
.expansion-item p,
.doc-grid p,
.collector-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.expansion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  background: #201b17;
  color: #fffaf0;
}

.expansion-section .eyebrow {
  color: var(--gold);
}

.expansion-copy {
  max-width: 780px;
}

.expansion-copy p {
  color: #eadfd2;
  font-size: 1.08rem;
}

.expansion-list {
  display: grid;
  gap: 12px;
}

.expansion-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.expansion-item span {
  color: var(--gold);
  font-weight: 900;
}

.expansion-item p {
  margin-bottom: 0;
  color: #eadfd2;
}

.details-section {
  background:
    linear-gradient(90deg, rgba(61, 121, 232, 0.11), rgba(230, 70, 54, 0.11)),
    #ffffff;
}

.details-document {
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.doc-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.doc-header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.doc-header span {
  align-self: start;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

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

.doc-grid div {
  border-left: 4px solid var(--red);
  padding: 4px 0 4px 16px;
}

.collector-section {
  background: #f1eee6;
}

.collector-grid article {
  min-height: 220px;
  background: #ffffff;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 950px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  max-width: 560px;
  margin: 6px 0 0;
}

.site-footer a {
  font-weight: 850;
}

@media (max-width: 1080px) {
  .hero,
  .expansion-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .hero-panel {
    padding: 12px;
  }

  .panel-topline,
  .doc-header,
  .site-footer {
    flex-direction: column;
  }

  .source-strip,
  .feature-grid,
  .collector-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .expansion-item {
    grid-template-columns: 1fr;
  }

  .source-strip span {
    min-height: 52px;
  }
}
