:root {
  color-scheme: light;
  --ink: #15211f;
  --muted: #60706d;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #dbe4dd;
  --teal: #147c72;
  --teal-dark: #0d5952;
  --coral: #e9674f;
  --gold: #efb84a;
  --mint: #dff3ed;
  --shadow: 0 18px 55px rgba(21, 33, 31, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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: 20px;
  min-height: 72px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(219, 228, 221, 0.85);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--teal);
}

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

.nav-button {
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
}

main {
  display: grid;
  gap: 44px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1.15fr);
  gap: 24px;
  width: min(1220px, calc(100% - 40px));
  margin: 34px auto 0;
}

.workspace-copy {
  align-self: end;
  padding: 28px 0 10px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.proof-row span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.delivery-note {
  max-width: 580px;
  margin-top: 16px;
  padding: 13px 15px;
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  color: #384845;
  background: #fff6f2;
  line-height: 1.45;
}

.visual-panel {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.visual-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.generator-panel,
.output-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.generator-panel {
  padding: 22px;
}

.output-panel {
  min-height: 560px;
  padding: 22px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.status-pill.accent {
  color: var(--teal-dark);
  background: var(--mint);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.wide-field {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cbd8d2;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfa;
  outline: none;
}

textarea {
  min-height: 72px;
  resize: vertical;
  line-height: 1.35;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 124, 114, 0.15);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  border: 1px solid var(--teal);
  color: white;
  background: var(--teal);
}

.primary-button:hover {
  background: var(--teal-dark);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfdfa;
  font-weight: 900;
}

.tab.active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

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

.content-item {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fffefa;
}

.content-item h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 14px;
}

.content-item p {
  margin: 0;
  color: #283734;
  line-height: 1.52;
}

.content-item button {
  justify-self: start;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: white;
  font-size: 12px;
  font-weight: 900;
}

.samples-band,
.pricing-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

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

.sample-card,
.price-card {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.sample-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.5;
}

.price-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  background: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.price-link:hover {
  background: var(--teal-dark);
}

.price {
  margin-bottom: 12px;
  color: var(--ink) !important;
  font-size: 34px;
  font-weight: 950;
}

.price-card.highlighted {
  border-color: rgba(233, 103, 79, 0.55);
  background: #fff6f2;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a,
.footer-links a {
  color: var(--teal-dark);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.simple-page {
  width: min(860px, calc(100% - 40px));
  margin: 42px auto;
  padding-bottom: 42px;
}

.simple-page h1 {
  max-width: 780px;
  font-size: 44px;
}

.simple-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.simple-page p,
.simple-page li {
  color: var(--muted);
  line-height: 1.65;
}

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

.simple-page .button-row {
  margin-top: 22px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 20px;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .workspace,
  .samples-band,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .workspace-copy {
    padding-top: 10px;
  }

  h1 {
    font-size: 40px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    display: grid;
  }

  .nav-actions {
    justify-content: flex-start;
  }

  .workspace,
  .samples-band,
  .pricing-band,
  .site-footer {
    width: min(100% - 24px, 1220px);
  }

  .field-grid,
  .sample-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 34px;
  }

  .site-footer {
    display: grid;
  }
}
