:root {
  color-scheme: light;
  --ink: #15201c;
  --muted: #62706a;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --line: #dce4df;
  --green: #0f735e;
  --green-dark: #083f36;
  --green-soft: #e8f4ef;
  --amber: #b97822;
  --coral: #bd554f;
  --blue: #39749a;
  --blue-soft: #edf5f8;
  --shadow-sm: 0 10px 26px rgba(21, 32, 28, 0.08);
  --shadow-lg: 0 22px 54px rgba(21, 32, 28, 0.12);
}

* {
  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.55;
}

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

button,
input,
select {
  font: inherit;
}

.page-width {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.8);
  background: #10211d;
  font-size: 13px;
}

.announcement a {
  color: #ffffff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark,
.mini-mark {
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

.mini-mark {
  width: 24px;
  height: 24px;
  font-size: 9px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #45534e;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.header-cta {
  padding: 9px 13px;
  border-radius: 7px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 710px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: url("assets/retail-flyer-sample.jpg") center right / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(7, 24, 20, 0.66);
}

.hero-content {
  padding: 94px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f7c46e;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.24;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 22px rgba(15, 115, 94, 0.22);
}

.button-primary:hover {
  background: #0a5c4c;
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-white {
  color: var(--green-dark);
  background: #ffffff;
}

.button-outline {
  color: var(--green-dark);
  border-color: #b8c9c1;
  background: #ffffff;
}

.full-width {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.hero-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(7, 24, 20, 0.24);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

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

.proof-grid div {
  min-height: 108px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

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

.proof-grid strong {
  margin-bottom: 4px;
  color: var(--green-dark);
}

.proof-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section-intro {
  margin-bottom: 34px;
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.split-intro h2,
.split-intro p {
  margin-bottom: 0;
}

.split-intro p,
.body-large {
  font-size: 17px;
}

.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.feature-card,
.workflow-grid article,
.price-card,
.scope-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.feature-card {
  min-height: 255px;
  padding: 22px;
}

.feature-number {
  display: block;
  margin-bottom: 40px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p,
.workflow-grid p,
.price-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.sample-section {
  background: #edf4ef !important;
}

.sample-layout,
.outputs-layout,
.faq-layout,
.cta-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.sample-controls {
  max-width: 380px;
  margin-top: 28px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #c7d4ce;
  border-radius: 7px;
  color: var(--ink);
  background: #ffffff;
}

select {
  margin-bottom: 11px;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(57, 116, 154, 0.28);
  outline-offset: 2px;
}

.app-preview {
  overflow: hidden;
  border: 1px solid #cbd9d3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.app-topbar,
.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
}

.app-brand,
.status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  color: var(--green);
  font-size: 12px;
}

.status-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4aa787;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fbfcfa;
}

.metric-row div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row span,
.metric-row strong {
  display: block;
}

.metric-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-row strong {
  margin-top: 2px;
  font-size: 27px;
}

.preview-table-wrap {
  overflow-x: auto;
}

.preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.preview-table th,
.preview-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.preview-table th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 850;
}

.tag.success {
  color: #0a624f;
  background: #e5f5ee;
}

.tag.warning {
  color: #925817;
  background: #fbefd8;
}

.download-row {
  border-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.download-row div {
  display: flex;
  gap: 6px;
}

.download-row div span {
  padding: 4px 6px;
  border-radius: 4px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-weight: 850;
}

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

.workflow-grid article {
  padding: 24px;
}

.workflow-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.workflow-top span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--green);
}

.outputs-section {
  background: #f3f7f4 !important;
}

.text-link {
  color: var(--green);
  font-weight: 850;
}

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

.deliverable-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.deliverable-list h3,
.deliverable-list p {
  margin-bottom: 3px;
}

.deliverable-list p {
  font-size: 14px;
}

.file-type {
  display: grid;
  place-items: center;
  width: 56px;
  height: 42px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.json {
  background: var(--green);
}

.xlsx {
  background: var(--blue);
}

.html {
  background: var(--coral);
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scope-grid > div {
  padding: 22px;
}

.scope-grid ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.scope-grid li {
  margin-bottom: 6px;
}

.scope-yes {
  border-top: 4px solid var(--green) !important;
}

.scope-no {
  border-top: 4px solid var(--coral) !important;
}

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

.price-card {
  position: relative;
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(15, 115, 94, 0.55);
  background: #f5fbf8;
}

.plan-name {
  margin-bottom: 12px;
  color: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 7px;
  border-radius: 99px;
  color: #ffffff;
  background: var(--coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price span {
  font-size: 21px;
  font-weight: 900;
}

.price strong {
  font-size: 48px;
  line-height: 1;
}

.price small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.price-card h3 {
  margin: 12px 0 20px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 14px;
}

.cta-section {
  padding: 62px 0;
  color: #ffffff;
  background: var(--green-dark);
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  color: #ffffff;
  background: #10211d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 48px;
  padding: 48px 0;
}

.footer-brand {
  color: #ffffff;
}

.site-footer p {
  max-width: 480px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .page-width {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.subpage-hero {
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--line);
  background: #edf4ef;
}

.subpage-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 56px;
}

.subpage-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.content-page {
  padding: 62px 0 82px;
}

.content-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.content-nav {
  position: sticky;
  top: 100px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.content-nav strong,
.content-nav a {
  display: block;
}

.content-nav strong {
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 13px;
}

.content-nav a {
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.policy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.policy h2 {
  margin-top: 32px;
  color: var(--green-dark);
  font-size: 24px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy h3 {
  margin-top: 20px;
  font-size: 17px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy li {
  margin-bottom: 7px;
}

.policy a,
.contact-card a {
  color: var(--green);
  font-weight: 800;
}

.pricing-page-grid {
  margin-bottom: 30px;
}

.price-card .pack-summary {
  min-height: 66px;
  margin-bottom: 18px;
}

.included-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.included-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.facts-row div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.facts-row strong,
.facts-row span {
  display: block;
}

.facts-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

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

.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.contact-card p {
  margin-bottom: 8px;
}

.notice {
  padding: 14px;
  border-left: 4px solid var(--amber);
  background: #fff8e9;
  color: #765220;
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 64px;
    padding: 10px 20px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 650px;
    background-position: center;
  }

  .hero-content {
    padding: 74px 0 92px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

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

  .split-intro,
  .sample-layout,
  .outputs-layout,
  .faq-layout,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 660px) {
  .page-width {
    width: min(100% - 28px, 1180px);
  }

  .announcement {
    display: none;
  }

  .header-cta {
    font-size: 13px;
  }

  .hero {
    min-height: 600px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .proof-grid,
  .feature-grid,
  .workflow-grid,
  .pricing-grid,
  .scope-grid,
  .facts-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:first-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 66px 0;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 26px;
  }

  .app-topbar,
  .download-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-table {
    font-size: 12px;
  }

  .subpage-hero {
    padding: 58px 0 46px;
  }

  .subpage-hero h1 {
    font-size: 42px;
  }

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

  .content-nav {
    position: static;
  }

  .policy {
    padding: 20px;
  }

  .footer-bottom .page-width {
    flex-direction: column;
    gap: 5px;
  }
}
