:root {
  --bg: #f2efe8;
  --bg-strong: #e7dfd2;
  --paper: rgba(255, 252, 246, 0.82);
  --card: rgba(255, 250, 242, 0.9);
  --ink: #161616;
  --muted: #62594f;
  --line: rgba(72, 54, 34, 0.16);
  --accent: #c45b2d;
  --accent-strong: #8d3817;
  --accent-soft: #f6dfcf;
  --shadow: 0 22px 70px rgba(72, 44, 18, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 91, 45, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(225, 190, 130, 0.16), transparent 24%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 48%, #ece3d8 100%);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.shell {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
}

.top-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 10px 14px;
  background: linear-gradient(90deg, #221b16, #473426);
  color: #fff4e8;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(72, 54, 34, 0.08);
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 241, 0.8);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a:hover,
.deep-link:hover {
  color: var(--accent-strong);
}

.nav-cta,
.hero-actions a,
.hero-links a,
.cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(196, 91, 45, 0.22);
}

.nav-cta:hover,
.hero-actions a:hover,
.hero-links a:hover,
.cta-actions a:hover {
  background: var(--accent-strong);
}

.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.46);
}

.hero,
.gallery-section,
.overview-section,
.workflow-section,
.use-case-section,
.link-section,
.faq-section,
.cta-section,
.logo-cloud {
  padding: 28px 0;
}

.hero-shell,
.split-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 22px;
}

.hero-copy,
.hero-panel,
.copy-card,
.metric-card,
.gallery-card,
.step-card,
.use-case-grid article,
.deep-link,
.faq-item,
.cta-shell {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.copy-card,
.cta-shell {
  border-radius: var(--radius-xl);
}

.hero-copy,
.hero-panel,
.copy-card {
  padding: 28px;
}

.hero-copy {
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.94), rgba(245, 235, 223, 0.78)),
    radial-gradient(circle at top right, rgba(196, 91, 45, 0.16), transparent 30%);
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

h3 {
  font-size: 24px;
}

.hero-lead,
.section-heading p,
.copy-card p,
.gallery-card p,
.step-card p,
.use-case-grid p,
.faq-item p,
.cta-shell p,
.logo-copy p,
.prompt-body {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  max-width: 860px;
  margin: 20px 0 0;
  font-size: 18px;
}

.hero-actions,
.hero-links,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 251, 246, 0.92);
}

.hero-panel-wide {
  grid-column: 1 / -1;
  padding: 24px 26px 20px;
  border-radius: 32px;
  background: rgba(255, 252, 247, 0.96);
  border-color: rgba(199, 170, 145, 0.24);
}

.prompt-box {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 26px;
  border: 1px solid rgba(205, 183, 162, 0.34);
  background: rgba(255, 255, 255, 0.9);
}

.prompt-hint {
  display: block;
  margin-bottom: 10px;
  color: #9a8b7d;
  font-size: 15px;
  line-height: 1.45;
}

.prompt-box textarea {
  width: 100%;
  min-height: 150px;
  max-height: 150px;
  padding: 0;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

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

.panel-grid {
  display: grid;
  gap: 14px;
}

.panel-grid-six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.panel-grid div {
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(251, 248, 242, 0.98);
  border: 1px solid rgba(205, 183, 162, 0.34);
  text-align: center;
}

.panel-grid span {
  display: block;
  color: #7f7063;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.panel-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.stat-grid div,
.metric-card,
.step-card,
.use-case-grid article,
.deep-link,
.faq-item {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--card);
}

.stat-grid span,
.metric-card span,
.deep-link span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-grid strong,
.metric-card strong,
.deep-link strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.logo-cloud {
  padding-top: 0;
}

.hero-panel-footer,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel-footer {
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.chip-row {
  align-items: center;
}

.chip-label {
  color: var(--muted);
  font-size: 15px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(205, 183, 162, 0.34);
  background: rgba(255, 255, 255, 0.96);
  color: #75675a;
}

.hero-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.hero-links,
.panel-label {
  display: none;
}

.logo-copy {
  padding: 22px 0 0;
  max-width: 860px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-top: 10px;
}

.gallery-grid,
.step-grid,
.use-case-grid,
.link-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.gallery-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-card div {
  padding: 18px 18px 20px;
}

.gallery-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.metric-stack {
  display: grid;
  gap: 16px;
}

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

.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.step-card h3,
.use-case-grid h3,
.faq-item h3 {
  margin-bottom: 10px;
}

.use-case-grid,
.link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background:
    linear-gradient(140deg, rgba(255, 248, 241, 0.94), rgba(239, 226, 213, 0.86)),
    radial-gradient(circle at right bottom, rgba(196, 91, 45, 0.14), transparent 28%);
}

@media (max-width: 960px) {
  .hero-shell,
  .split-shell,
  .step-grid,
  .gallery-grid,
  .use-case-grid,
  .link-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    display: grid;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at top, rgba(196, 91, 45, 0.12), transparent 26%),
      linear-gradient(180deg, #faf7f1 0%, var(--bg) 46%, #ece3d8 100%);
  }

  .hero-copy,
  .hero-panel,
  .copy-card,
  .cta-shell,
  .metric-card,
  .gallery-card,
  .step-card,
  .use-case-grid article,
  .deep-link,
  .faq-item {
    padding: 20px;
  }

  h1 {
    font-size: clamp(36px, 14vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 10vw, 38px);
  }

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

  .gallery-grid,
  .faq-list {
    gap: 14px;
  }
}
