:root {
  --ink: #151a1f;
  --muted: #5e6872;
  --paper: #f6f4ef;
  --panel: #ffffff;
  --line: #ded9cf;
  --green: #14694f;
  --blue: #224d8f;
  --gold: #b87928;
  --charcoal: #24292f;
  --shadow: 0 18px 50px rgba(21, 26, 31, 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;
}

.hidden-field {
  display: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(21, 26, 31, 0.08);
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: var(--green);
  font-size: 0.86rem;
}

nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover,
.nav-action:hover,
.product-card a:hover {
  color: var(--green);
}

.nav-action {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 72px);
  padding: clamp(18px, 4vw, 56px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.landing-hero {
  min-height: calc(92vh - 72px);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 56px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 56px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.68;
}

.request-summary {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 24px;
}

.request-summary > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 105, 79, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.request-summary span {
  display: grid;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-weight: 850;
}

.request-summary strong {
  font-size: 1rem;
}

.request-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.contact-form textarea {
  padding: 12px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form button {
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: white;
  background: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.thank-you-panel {
  align-content: start;
}

.thank-you-panel strong {
  font-size: 1.2rem;
}

.thank-you-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.order-summary {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.order-summary div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.order-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.order-summary strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #f0ece3;
  color: var(--charcoal);
  font-size: 0.9em;
}

.product-hero-copy p:not(.eyebrow):not(.checkout-status) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.68;
}

.product-preview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.product-preview-card > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.checkout-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold);
  font-weight: 800;
  line-height: 1.5;
}

.purchase-panel {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(184, 121, 40, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 28px rgba(21, 26, 31, 0.07);
}

.purchase-panel[data-checkout-ready="true"] {
  border-color: rgba(20, 105, 79, 0.3);
  background: rgba(245, 251, 248, 0.86);
}

.purchase-panel strong {
  color: var(--ink);
  font-size: 1rem;
}

.purchase-panel span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.purchase-panel span::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.purchase-panel[data-checkout-ready="true"] span::before {
  background: var(--green);
}

.hero-media {
  height: min(68vh, 680px);
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(3.1rem, 6vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.primary,
.signup-form button {
  color: white;
  background: var(--ink);
}

.secondary {
  background: transparent;
}

.micro-link {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.micro-link a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proof-strip {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.proof-strip span,
.tag {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section,
.settings-band,
.media-split,
.waitlist,
footer {
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 40px;
  align-items: end;
}

.intro-grid > p,
.settings-copy p,
.media-split p,
.waitlist p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.6fr);
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(44px, 7vw, 96px);
}

.case-feature,
.product-card,
.roadmap-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-feature {
  overflow: hidden;
}

.case-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.case-body {
  padding: 26px;
}

.case-body p:not(.tag) {
  color: var(--muted);
  line-height: 1.65;
}

.case-specs {
  display: grid;
  gap: 12px;
}

.case-specs > div {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-left: 5px solid var(--green);
  background: #ebe7dc;
}

.spec-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-grid,
.tool-grid,
.roadmap-grid,
.proof-grid,
.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.purchase-guide {
  background: #ebe7dc;
}

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

.choice-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(21, 26, 31, 0.08);
}

.choice-grid img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.choice-grid article > div {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.choice-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.choice-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0ece3;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.trust-row span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(20, 105, 79, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--charcoal);
  font-weight: 780;
  line-height: 1.35;
}

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

.tool-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 460px;
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(21, 26, 31, 0.07);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(21, 26, 31, 0.12);
}

.featured-tool {
  grid-column: span 1;
  border-color: rgba(20, 105, 79, 0.36);
  background: linear-gradient(180deg, #ffffff 0%, #f5fbf8 100%);
  box-shadow: 0 18px 48px rgba(20, 105, 79, 0.14);
}

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

.tool-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.tool-card .tool-number,
.tool-card h3,
.tool-card p,
.tool-card .button,
.tool-card-actions {
  margin-left: 24px;
  margin-right: 24px;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.tool-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-number {
  display: inline-grid;
  width: fit-content;
  min-width: 46px;
  min-height: 32px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 1rem;
  font-weight: 850;
}

.template-stack {
  display: grid;
  gap: 12px;
}

.template-stack a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.template-stack a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.tool-page {
  min-height: calc(100vh - 72px);
}

.legal-page {
  min-height: calc(100vh - 72px);
}

.legal-hero {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 4vw, 56px) 24px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 900px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(54px, 8vw, 110px);
}

.legal-content h2 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.tool-hero {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 4vw, 56px) 24px;
}

.tool-hero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
}

.tool-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.compat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 920px;
  margin-top: 22px;
}

.compat-strip span,
.compat-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.compat-strip a {
  color: var(--green);
  border-color: rgba(20, 105, 79, 0.3);
  background: #e9f3ef;
}

.tool-workspace {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(44px, 7vw, 86px);
}

.tool-help-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px) clamp(54px, 8vw, 96px);
}

.tool-help-strip article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 12px 30px rgba(21, 26, 31, 0.06);
}

.tool-help-strip span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green);
  background: #e9f3ef;
  font-size: 0.78rem;
  font-weight: 850;
}

.tool-help-strip strong {
  display: block;
  margin-top: 16px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.tool-help-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.controls-panel,
.canvas-panel,
.svg-preview-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.controls-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

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

.control-heading {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

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

.preset-card {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f9f8f4;
  cursor: pointer;
}

.preset-card svg {
  width: 100%;
  max-width: 96px;
  height: 70px;
}

.preset-card path,
.preset-card rect,
.preset-card circle,
.preset-card line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.preset-card .dash {
  stroke-dasharray: 4 4;
}

.preset-card.active,
.preset-card:hover {
  border-color: var(--green);
  background: #e9f3ef;
  box-shadow: inset 0 0 0 2px var(--green);
}

.preset-card.active path,
.preset-card.active rect,
.preset-card.active circle,
.preset-card.active line,
.preset-card:hover path,
.preset-card:hover rect,
.preset-card:hover circle,
.preset-card:hover line {
  stroke: var(--green);
}

.controls-panel input,
.controls-panel textarea,
.controls-panel select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.controls-panel textarea {
  min-height: 150px;
  padding: 10px;
  resize: vertical;
  line-height: 1.45;
}

.controls-panel input[type="range"] {
  padding: 0;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
}

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

.tool-actions button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: white;
  background: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.advanced-panel {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.advanced-panel summary {
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
}

.advanced-panel[open] {
  gap: 14px;
}

.advanced-panel[open] summary {
  margin-bottom: 4px;
}

.tool-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.canvas-panel,
.svg-preview-panel {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: auto;
  padding: 18px;
}

.canvas-panel canvas {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: white;
}

#emptyState {
  position: absolute;
  color: var(--muted);
  font-weight: 760;
}

.svg-preview {
  display: grid;
  width: min(100%, 760px);
  min-height: 360px;
  place-items: center;
  padding: 28px;
  background: #f9f8f4;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.wide-preview {
  width: min(100%, 980px);
}

.svg-preview svg {
  width: 100%;
  height: auto;
}

.product-card {
  min-height: 280px;
  padding: 24px;
}

.storefront-grid {
  align-items: stretch;
}

.storefront-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(21, 26, 31, 0.07);
}

.storefront-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: white;
}

.storefront-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.product-card.accent {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.price {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 850;
}

.accent .price,
.accent p,
.accent a {
  color: white;
}

.accent .mini-list li {
  border-color: rgba(255, 255, 255, 0.28);
  color: #edf4ff;
  background: rgba(255, 255, 255, 0.08);
}

.accent .secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
}

.product-card p,
.roadmap-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.product-card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 850;
}

.storefront-card .button {
  margin-top: 0;
}

.storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

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

.mini-list li {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #f8f6f0;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.35;
}

.request-card {
  background: #fbfaf7;
}

.request-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 188px;
  align-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(34, 77, 143, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 77, 143, 0.1) 1px, transparent 1px),
    #edf2f7;
  background-size: 28px 28px;
}

.request-visual span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(34, 77, 143, 0.22);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.settings-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: 34px;
  align-items: center;
  color: white;
  background: var(--charcoal);
}

.settings-band .eyebrow {
  color: #86d0b5;
}

.settings-copy p {
  margin-top: 18px;
  color: #c9d0d4;
}

.settings-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.settings-table > div {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1fr;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.settings-table > div:last-child {
  border-bottom: 0;
}

.table-head {
  color: #86d0b5;
  font-weight: 850;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.85fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 24px;
}

.product-detail-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-detail-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.delivery-note {
  padding: 14px;
  border-left: 4px solid var(--gold);
  background: #f3eadb;
  font-weight: 700;
}

.fit-section {
  background: #f7f3ea;
}

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

.fit-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(21, 26, 31, 0.06);
}

.fit-grid strong {
  color: var(--green);
  font-size: 1.08rem;
}

.compact-list {
  margin-top: 18px;
}

.compact-list li {
  font-weight: 720;
}

.media-split img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-split p {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: #ebe7dc;
  font-weight: 760;
}

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

.proof-section {
  background:
    linear-gradient(90deg, rgba(20, 105, 79, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 105, 79, 0.08) 1px, transparent 1px),
    #f2efe7;
  background-size: 38px 38px;
}

.proof-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(21, 26, 31, 0.07);
}

.proof-grid strong {
  color: var(--green);
  font-size: 1.1rem;
}

.proof-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.file-preview-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(21, 26, 31, 0.05);
}

.file-preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: white;
}

.file-preview-grid strong {
  display: block;
  padding: 12px 14px;
  font-size: 0.98rem;
}

.commercial-section {
  background: #fbfaf7;
}

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

.commercial-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(21, 26, 31, 0.06);
}

.commercial-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.commercial-grid p {
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-section {
  background: #f6f4ef;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(21, 26, 31, 0.05);
}

.faq-list summary {
  min-height: 56px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.roadmap-grid article {
  min-height: 190px;
  padding: 22px;
}

.roadmap-grid strong {
  color: var(--green);
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 34px;
  align-items: start;
  background: #ebe7dc;
}

.landing-cta-card {
  display: grid;
  gap: 12px;
  max-width: 420px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(21, 26, 31, 0.06);
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #cfd5d8;
  background: var(--ink);
}

footer a {
  color: white;
  font-weight: 750;
}

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

  .hero,
  .product-hero,
  .contact-hero,
  .product-detail-grid,
  .intro-grid,
  .case-layout,
  .settings-band,
  .media-split,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 320px;
    height: 52vh;
  }

  .product-grid,
  .tool-grid,
  .roadmap-grid,
  .proof-grid,
  .choice-grid,
  .file-preview-grid,
  .commercial-grid,
  .fit-grid,
  .tool-help-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    flex-direction: row;
  }

  .nav-action {
    width: auto;
    padding: 9px 12px;
    font-size: 0.88rem;
    text-align: center;
  }

  h1 {
    font-size: 2.78rem;
  }

  .product-grid,
  .tool-grid,
  .roadmap-grid,
  .proof-grid,
  .choice-grid,
  .file-preview-grid,
  .commercial-grid,
  .fit-grid,
  .tool-help-strip {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .settings-table > div {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

.tool-home {
  background:
    radial-gradient(circle at 8% 10%, rgba(239, 196, 112, 0.22), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(20, 105, 79, 0.12), transparent 30%),
    #f7f3ea;
}

.soft-topbar {
  background: rgba(247, 243, 234, 0.9);
}

.studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(34px, 6vw, 82px) clamp(18px, 4vw, 56px) clamp(20px, 4vw, 48px);
}

.studio-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.studio-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.simple-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.simple-flow span,
.example-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(21, 26, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #263029;
  font-weight: 760;
  white-space: nowrap;
}

.hero-example-card {
  overflow: hidden;
  border: 1px solid rgba(21, 26, 31, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(21, 26, 31, 0.13);
}

.hero-example-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.hero-example-card div {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.hero-example-card strong {
  font-size: 1.08rem;
}

.hero-example-card span {
  color: var(--muted);
  line-height: 1.45;
}

.compact-heading {
  align-items: start;
  text-align: left;
}

.compact-heading p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tool-studio {
  padding-top: clamp(20px, 3vw, 44px);
}

.tool-browser {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.tool-tabs {
  position: sticky;
  top: 76px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(21, 26, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 14px 40px rgba(21, 26, 31, 0.08);
  backdrop-filter: blur(16px);
}

.tool-tab {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #151a1f;
  font: inherit;
  font-weight: 840;
  text-align: left;
  cursor: pointer;
}

.tool-tab img {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  object-fit: cover;
}

.tool-tab span {
  overflow-wrap: anywhere;
  line-height: 1.15;
}

.tool-tab.active,
.tool-tab:hover {
  border-color: rgba(21, 26, 31, 0.14);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 26, 31, 0.1);
}

.tool-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.2fr) minmax(0, 1fr);
  gap: 14px;
  min-height: 78vh;
  padding: 14px;
  border: 1px solid rgba(21, 26, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 46px rgba(21, 26, 31, 0.08);
}

.tool-panel[hidden] {
  display: none;
}

.panel-side {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(21, 26, 31, 0.1);
  border-radius: 8px;
  background: rgba(246, 244, 239, 0.75);
}

.panel-side img {
  width: 100%;
  aspect-ratio: 1.25;
  border-radius: 8px;
  object-fit: cover;
}

.panel-side h3,
.panel-side p {
  margin: 0;
}

.panel-side h3 {
  font-size: clamp(1.16rem, 1.8vw, 1.55rem);
  line-height: 1.08;
}

.panel-side p {
  color: var(--muted);
  line-height: 1.45;
}

.accordion-tools {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.tool-fold {
  overflow: clip;
  border: 1px solid rgba(21, 26, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(21, 26, 31, 0.07);
}

.tool-fold summary {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 38px;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 14px 18px 14px 14px;
  cursor: pointer;
  list-style: none;
}

.tool-fold summary::-webkit-details-marker {
  display: none;
}

.tool-fold summary::after {
  content: "+";
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(21, 26, 31, 0.18);
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 800;
}

.tool-fold[open] summary::after {
  content: "-";
}

.tool-fold summary img {
  grid-column: 1;
  grid-row: 1;
  width: 128px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.tool-fold summary span {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 8px;
  padding-right: 0;
}

.tool-fold summary strong {
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.tool-fold summary small {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.fold-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding: 0 16px 16px;
}

.fold-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(21, 26, 31, 0.1);
  border-radius: 8px;
  background: rgba(246, 244, 239, 0.75);
}

.fold-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-chips span {
  min-height: 32px;
  font-size: 0.88rem;
}

.fold-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-frame {
  width: 100%;
  height: 82vh;
  min-height: 720px;
  border: 1px solid rgba(21, 26, 31, 0.14);
  border-radius: 8px;
  background: white;
}

.embed-mode {
  background: #ffffff;
}

.embed-mode .topbar,
.embed-mode .tool-hero,
.embed-mode .tool-help-strip {
  display: none;
}

.embed-mode .tool-page {
  width: 100%;
  max-width: none;
  padding: 14px;
}

.embed-mode .tool-workspace {
  margin: 0;
}

.scene-gallery {
  padding-top: clamp(20px, 4vw, 56px);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.scene-grid article {
  overflow: hidden;
  border: 1px solid rgba(21, 26, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.scene-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.scene-grid h3,
.scene-grid p {
  margin-right: 18px;
  margin-left: 18px;
}

.scene-grid h3 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.scene-grid p {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .studio-hero,
  .tool-panel,
  .fold-body,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .tool-tabs {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel-side {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
  }

  .panel-side img {
    grid-row: span 3;
  }

  .tool-frame {
    height: 760px;
  }
}

@media (max-width: 680px) {
  .tool-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tool-tab {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 60px;
    padding: 7px;
  }

  .tool-tab img {
    width: 38px;
    height: 38px;
  }

  .tool-panel {
    padding: 10px;
  }

  .panel-side {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 10px;
  }

  .tool-fold summary {
    grid-template-columns: 92px minmax(0, 1fr) 32px;
    min-height: 104px;
    gap: 12px;
    padding: 12px;
  }

  .tool-fold summary img {
    width: 92px;
    height: 76px;
  }

  .tool-fold summary span {
    padding-right: 0;
  }

  .tool-fold summary::after {
    width: 30px;
    height: 30px;
  }

  .fold-body {
    padding: 0 10px 10px;
  }

  .tool-frame {
    min-height: 640px;
  }
}
