:root {
  --ink:#111827;
  --muted:#52606d;
  --paper:#f7f7f2;
  --card:#fff;
  --line:#d8ddd8;
  --accent:#f2542d;
  --accent-dark:#c93616;
  --night:#102a2e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header, footer {
  max-width: 1180px;
  margin: auto;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 31px;
  height: 25px;
  display: inline-block;
  background: repeating-linear-gradient(90deg, var(--night) 0 2px, transparent 2px 4px, var(--night) 4px 8px, transparent 8px 11px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav .header-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 999px;
  background: var(--night);
}

main {
  overflow: hidden;
}

.barcode-page, .home-hero, .format-list {
  max-width: 1180px;
  margin: auto;
  padding: 72px 28px;
}

.hero {
  max-width: 900px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-hero {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: center;
  gap: 60px;
  min-height: 700px;
  padding-top: 80px;
  padding-bottom: 110px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  display: inline-block;
  margin: 0 10px 3px 0;
  background: currentColor;
}

h1, h2 {
  margin: 0;
  color: var(--night);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 950px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.home-hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.7rem);
}

.home-hero h1 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lede {
  max-width: 750px;
  margin: 28px 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.primary, .secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--night);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.primary {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 5px 5px 0 var(--night);
}

.primary:hover {
  background: var(--accent-dark);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--night);
}

.secondary {
  background: transparent;
}

.text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--night);
  font-weight: 850;
  text-underline-offset: 5px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.hero-proof span {
  color: var(--accent-dark);
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 440px;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: 10px;
  left: 20px;
  border-radius: 50%;
  background: #dbe7df;
  z-index: -2;
}

.hero-art::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  top: 55px;
  left: 65px;
  border: 1px dashed #739187;
  border-radius: 50%;
  z-index: -1;
  animation: slow-spin 36s linear infinite;
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}
.file-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 18px 24px 50px rgba(16, 42, 46, 0.16);
}

.file-card-back {
  width: 250px;
  height: 145px;
  top: 44px;
  left: 12px;
  padding: 28px;
  transform: rotate(-10deg);
  background: #f0bd41;
}

.file-card-back span {
  font-size: 0.84rem;
  font-weight: 850;
}

.file-card-back b {
  margin-top: auto;
  color: #533e0d;
  font-size: 1.35rem;
}

.file-card-front {
  width: 330px;
  height: 245px;
  right: 0;
  bottom: 38px;
  justify-content: center;
  align-items: center;
  transform: rotate(4deg);
}

.mini-label {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.barcode-graphic {
  width: 235px;
  height: 88px;
  margin-bottom: 14px;
  background: repeating-linear-gradient(90deg, var(--night) 0 2px, transparent 2px 5px, var(--night) 5px 11px, transparent 11px 14px, var(--night) 14px 17px, transparent 17px 21px);
}

.file-card-front strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.zip-badge {
  position: absolute;
  right: 3px;
  top: 35px;
  width: 110px;
  height: 110px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 8px 10px 0 var(--night);
  transform: rotate(8deg);
}

.zip-badge span {
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
}

.zip-badge strong {
  margin-top: 5px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.trust {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.93rem;
}

.format-card, .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 30px 0 100px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 12px 12px 0 #d9e2dc;
}

.format-card dl {
  margin: 0;
}

.format-card dl div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.format-card dt {
  color: var(--muted);
  font-weight: 700;
}

.format-card dd {
  margin: 0;
  font-weight: 750;
}

code {
  padding: 3px 7px;
  background: #e9eeeb;
  border-radius: 4px;
}

.workflow {
  margin: 120px 0;
}

.workflow h2 {
  max-width: 800px;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.workflow li {
  min-height: 190px;
  padding: 30px;
  border-top: 5px solid var(--accent);
  background: var(--card);
  counter-increment: steps;
}

.workflow li::before {
  content: "0" counter(steps);
  display: block;
  color: var(--accent-dark);
  font-weight: 900;
}

.workflow strong, .workflow span {
  display: block;
  margin-top: 14px;
}

.workflow span, .content-grid p {
  color: var(--muted);
}

.content-grid ul {
  margin: 0;
  padding-left: 22px;
}

.content-grid li {
  margin-bottom: 14px;
}

.final-cta {
  margin: 120px 0 40px;
  padding: 70px;
  color: #fff;
  border-radius: 20px;
  background: var(--night);
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin-bottom: 28px;
  color: #d7e3df;
}

.format-list {
  padding-top: 120px;
  padding-bottom: 120px;
}

.format-list h2 {
  max-width: 780px;
}

.section-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.format-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.format-links a {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 125px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.format-links a:hover {
  border-color: var(--accent);
  box-shadow: 8px 8px 0 #f3c2b4;
  transform: translate(-3px, -3px);
}

.format-links .format-code {
  grid-row: 1/span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--accent-dark);
  border-radius: 14px;
  background: #fff0eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 900;
}

.format-links strong {
  align-self: end;
  font-size: 1.25rem;
}

.format-links span {
  color: var(--muted);
}

footer {
  max-width: none;
  margin-top: 70px;
  padding: 50px max(28px, (100vw - 1124px) / 2);
  color: #c8d7d2;
  background: var(--night);
}

footer div {
  display: grid;
}

footer strong {
  color: #fff;
}

footer nav {
  display: flex;
  gap: 24px;
}

footer nav a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px;
  }
  .header-cta {
    display: none;
  }
  .barcode-page, .home-hero, .format-list {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero, .home-hero {
    padding-top: 64px;
  }
  .format-card, .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }
  .workflow ol, .format-links {
    grid-template-columns: 1fr;
  }
  .format-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .final-cta {
    padding: 38px 26px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Embedded Generator Styles */
button, input, select {
  font: inherit;
}

.generator-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 100px 28px;
  text-align: left;
}

.generator-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 720px;
  margin-top: -100px;
  background: var(--night);
  z-index: -1;
}

.generator-container .section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.generator-container .section-heading h2 {
  color: #fff;
}

.generator-container .section-heading > p:last-child {
  color: #b9ccc6;
}

.panel {
  overflow: hidden;
  padding: 0 38px 38px;
  border: 1px solid #cbd7d0;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 16px 18px 0 #061e21;
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 -38px 30px;
  padding: 18px 38px;
  border-bottom: 1px solid var(--line);
  background: #eef3ef;
}

.panel-topline > div {
  display: grid;
}

.panel-topline > div span {
  color: var(--muted);
  font-size: 0.78rem;
}

.step-pill {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--night);
  font-size: 0.75rem;
  font-weight: 900;
}

.privacy-pill {
  margin-left: auto;
  padding: 7px 11px;
  color: #23664e;
  border-radius: 999px;
  background: #d9eee3;
  font-size: 0.72rem;
  font-weight: 850;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.panel label {
  display: grid;
  gap: 8px;
  color: var(--night);
  font-size: 0.9rem;
  font-weight: 800;
}

.panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #aeb9b1;
  border-radius: 8px;
  background: #fff;
  outline: none;
}

.panel select:focus {
  border-color: var(--accent);
}

.dropzone {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 30px;
  border: 2px dashed #819188;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8faf8, #eef4f0);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.dropzone:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.dropzone.dragging {
  border-color: var(--accent);
  background: #fff4ef;
}

.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.dropzone strong {
  display: block;
  color: var(--night);
  font-size: 1.2rem;
}

.dropzone span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.file-meta, .status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.error {
  margin-top: 18px;
  padding: 13px 15px;
  color: #8c1d0d;
  border: 1px solid #efb5a9;
  border-radius: 8px;
  background: #fff1ed;
  font-weight: 600;
}

.warn-upgrade {
  margin-top: 18px;
  padding: 13px 15px;
  color: #6b4f00;
  border: 1px solid #ebd082;
  border-radius: 8px;
  background: #fffdf2;
  font-size: 0.9rem;
}

.warn-upgrade a {
  color: var(--accent-dark);
  font-weight: bold;
  text-decoration: underline;
}

.preview {
  margin-top: 26px;
  overflow: auto;
  max-height: 350px;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  align-items: center;
}

.preview-head h2 {
  margin: 0;
  color: var(--night);
  font-size: 1.15rem;
}

.preview-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.panel th, .panel td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.panel th {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
}

.run-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.run-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.run {
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  border: 2px solid var(--night);
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 4px 4px 0 var(--night);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
}

.run:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--night);
}

.run:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.section-heading {
  max-width: 820px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-band {
  max-width: 1180px;
  margin: 100px auto 0;
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #829087;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-band strong {
  color: #5b6d64;
  font-size: 0.95rem;
}

.home-workflow, .use-cases, .faq-section {
  max-width: 1180px;
  margin: auto;
  padding: 120px 28px;
}

.home-workflow {
  border-top: 1px solid var(--line);
}

.home-workflow ol {
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.home-workflow li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.home-workflow li > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
}

.home-workflow h3 {
  margin: 0;
  color: var(--night);
  font-size: 1.45rem;
}

.home-workflow li p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--muted);
}

.use-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.use-case-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.use-case-copy .primary {
  margin-top: 20px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.use-case-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.use-case-grid article:nth-child(2), .use-case-grid article:nth-child(3) {
  background: #dfeae3;
}

.use-case-grid span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.use-case-grid h3 {
  margin: 36px 0 8px;
  color: var(--night);
}

.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

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

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  color: var(--night);
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -8px 0 26px;
  padding-right: 45px;
  color: var(--muted);
}

@media (max-width: 650px) {
  .panel {
    padding: 22px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .run-row {
    align-items: stretch;
    flex-direction: column;
  }
  .run {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-art {
    width: min(100%, 500px);
    margin: auto;
  }
  .trust-band {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .trust-band span {
    flex-basis: 100%;
  }
  .use-cases, .faq-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
@media (max-width: 760px) {
  .site-nav > a:not(.header-cta) {
    display: none;
  }
  .site-nav .header-cta {
    display: inline-flex;
  }
  .home-hero {
    padding-top: 55px;
  }
  .home-hero h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }
  .hero-art {
    min-height: 350px;
    transform: scale(0.88);
    transform-origin: left center;
  }
  .file-card-front {
    width: 290px;
    right: 10px;
  }
  .zip-badge {
    right: 0;
  }
  .generator-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .generator-container::before {
    height: 750px;
  }
  .panel {
    padding: 0 22px 24px;
  }
  .panel-topline {
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .privacy-pill {
    display: none;
  }
  .home-workflow, .use-cases, .faq-section {
    padding: 85px 18px;
  }
  .home-workflow li {
    grid-template-columns: 55px 1fr;
  }
  .use-case-grid {
    grid-template-columns: 1fr;
  }
  .use-case-grid article {
    min-height: 180px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  footer nav {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/*# sourceMappingURL=site.css.map */