:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #68717a;
  --line: #dde2e6;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --charcoal: #15181b;
  --gold: #f4c24c;
  --green: #209f5c;
  --amber: #b7791f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 12px;
}

nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 36px 0 54px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #15120a;
}

.button.secondary {
  background: #fff;
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f5f0;
}

.trust-list {
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.proof-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid #252b31;
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: 0 28px 80px rgba(18, 20, 22, 0.22);
}

.proof-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  object-position: top right;
}

.proof-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(244, 194, 76, 0.28);
  border-radius: 10px;
  background: rgba(21, 24, 27, 0.9);
  color: #f3f5f0;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
}

.proof-caption strong,
.proof-caption span {
  display: block;
}

.proof-caption span {
  margin-top: 5px;
  color: #bac2c8;
  font-size: 13px;
  line-height: 1.45;
}

.workflow,
.proof-flow,
.checkout,
.delivery,
.sample,
.batch,
.download,
.request {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
  padding: 16px 0 44px;
}

.checkout-copy,
.price-card,
.batch {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.checkout-copy {
  padding: 28px;
}

.checkout-copy span,
.price-card span,
.batch span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout h2,
.batch h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.checkout p,
.batch p {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-copy > p {
  max-width: 760px;
  font-size: 17px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  padding: 10px 11px;
  border: 1px solid #d8e4dc;
  border-radius: 8px;
  background: #f5fbf6;
  color: #24563a;
  font-size: 13px;
  font-weight: 850;
}

.beta-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: #15181b;
  color: #f3f5f0;
}

.price-card strong {
  display: block;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
}

.price-card p {
  margin: 0 0 8px;
  color: #b7c0c6;
}

.price-card small {
  display: block;
  margin-top: 6px;
  color: #8e989f;
  font-size: 12px;
  line-height: 1.45;
}

.price-card .button.secondary {
  color: #15181b;
}

.delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid #d8e4dc;
  border-radius: 12px;
  background: #f5fbf6;
}

.delivery span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.04;
  letter-spacing: 0;
}

.delivery p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.55;
}

.delivery ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid #cfe8d8;
  border-radius: 10px;
  background: #ffffff;
}

.delivery li strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--gold);
}

.delivery li span {
  color: #24563a;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.proof-flow {
  padding: 34px 0 52px;
}

.section-copy {
  max-width: 740px;
  margin-bottom: 18px;
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.proof-steps article {
  min-height: 370px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.proof-steps span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-steps h3 {
  margin: 12px 0 16px;
  font-size: 25px;
}

.proof-steps p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.folder-list,
.analysis-list,
.sample-files {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.folder-list li,
.analysis-list li,
.sample-files li {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.folder-list.messy li {
  border-color: #ead7b0;
  background: #fff9e7;
}

.folder-list.clean li,
.analysis-list li {
  border-color: #cfe8d8;
  background: #f4fbf6;
}

.analysis-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

.analysis-list strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--charcoal);
  color: var(--gold);
}

.sample-files {
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 8px;
  margin-top: 16px;
}

.sample-files li {
  min-height: 0;
  padding: 7px 9px;
  background: #f8faf8;
  font-size: 12px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 0 76px;
}

.workflow article,
.sample,
.download,
.request {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.workflow article {
  padding: 22px;
}

.workflow span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 900;
}

.workflow h2,
.sample h2,
.download h2,
.request h2 {
  margin: 18px 0 0;
  font-size: 24px;
}

.workflow p,
.sample p,
.download p,
.request p {
  color: var(--muted);
  line-height: 1.55;
}

.sample,
.download,
.request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 28px;
}

.batch {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 28px;
}

.batch h2 {
  font-size: clamp(28px, 3.5vw, 40px);
}

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

.batch-steps article {
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfbf8;
}

.batch-steps strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--gold);
}

.batch-steps p {
  margin: 14px 0 0;
  font-size: 13px;
}

.download {
  margin-bottom: 56px;
  background: var(--charcoal);
  color: #f3f5f0;
}

.download p {
  color: #aeb6bc;
}

.request {
  margin-bottom: 56px;
  border-color: #d3c397;
  background: #fff9e7;
}

.request span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request h2 {
  max-width: 560px;
}

.request p {
  max-width: 690px;
}

.request-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 220px;
}

.request-actions p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-page section {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 34px;
}

.legal-page span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-page h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-page a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.thanks-panel {
  box-shadow: 0 22px 70px rgba(18, 20, 22, 0.08);
}

.delivery-queue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.delivery-queue article {
  padding: 16px;
  border: 1px solid #d8e4dc;
  border-radius: 10px;
  background: #f5fbf6;
}

.delivery-queue strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--gold);
}

.delivery-queue h2 {
  margin-top: 16px;
  font-size: 18px;
}

.delivery-queue p {
  font-size: 14px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

  .hero,
  .checkout,
  .delivery,
  .workflow,
  .proof-steps,
  .batch {
    grid-template-columns: 1fr;
  }

  .sample,
  .download,
  .request {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-actions {
    justify-items: start;
    min-width: 0;
  }

  .batch-steps {
    grid-template-columns: 1fr;
  }

  .delivery-queue {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .hero,
  .proof-flow,
  .workflow,
  .checkout,
  .delivery,
  .sample,
  .batch,
  .download,
  .request,
  .legal-page {
    width: min(100% - 28px, 1180px);
  }

  .legal-page section {
    padding: 24px;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding: 24px 0 40px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 0.98;
  }

  .hero-copy p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .trust-list li {
    padding: 7px 8px;
    font-size: 12px;
  }

  .proof-shot img {
    aspect-ratio: 0.78 / 1;
    object-position: top right;
  }

  .proof-caption {
    position: static;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  .proof-steps article {
    min-height: 0;
  }

  .sample-files {
    grid-template-columns: 1fr;
  }
}
