:root {
  color-scheme: light;
  --bg: #f5f1e8;
  --surface: rgba(255, 252, 246, 0.86);
  --surface-strong: #fffdf8;
  --surface-tint: rgba(232, 224, 207, 0.54);
  --line: rgba(88, 77, 53, 0.12);
  --text: #1e1a16;
  --muted: #5b5148;
  --subtle: #7a6c5f;
  --brand: #255742;
  --brand-deep: #17382b;
  --brand-soft: #d8e7df;
  --accent: #c67a2f;
  --success: #17533f;
  --success-bg: #dbece5;
  --warning: #9a5d1a;
  --warning-bg: #fae8cf;
  --danger: #8a2d22;
  --danger-bg: #f6dfd8;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 87, 66, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(198, 122, 47, 0.12), transparent 22%),
    linear-gradient(180deg, #f7f2e8 0%, #f3efe7 100%);
}

a {
  color: var(--brand);
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid rgba(88, 77, 53, 0.08);
}

.topbar__inner,
.hero,
.section,
.page,
.footer__inner {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand__meta,
.footer__meta {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: center;
  padding: 60px 0 32px;
}

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

.hero h1,
.page h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.copy,
.page__lede {
  margin: 0 0 18px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-card,
.page-card,
.pricing-card,
.faq-item,
.doc-card,
.feature-card,
.studio-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(50, 40, 24, 0.08);
  backdrop-filter: blur(18px);
}

.hero-card,
.page-card {
  padding: 32px;
  border-radius: 30px;
}

.hero-preview {
  display: grid;
  gap: 14px;
}

.product-spotlight {
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.94), rgba(238, 247, 241, 0.9));
}

.product-spotlight__eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-spotlight__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.product-spotlight h3,
.signal-card h3,
.pricing-card h3,
.feature-card h3,
.studio-card h3,
.faq-item h3,
.doc-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.product-spotlight p,
.signal-card p,
.pricing-card p,
.feature-card p,
.studio-card p,
.faq-item p,
.doc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.signal-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid rgba(88, 77, 53, 0.12);
}

.signal-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge--positive {
  background: var(--success-bg);
  color: var(--success);
}

.badge--neutral {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge--negative {
  background: var(--danger-bg);
  color: var(--danger);
}

.mini-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background: var(--brand);
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button--ghost {
  background: #ebe2d2;
  color: #4f4235;
}

.button--soft {
  background: var(--brand-soft);
  color: var(--brand);
}

.button--link {
  background: transparent;
  color: var(--brand);
  padding-left: 0;
  padding-right: 0;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(88, 77, 53, 0.12);
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 18px 0 56px;
}

.section--tone {
  position: relative;
}

.section__eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 900;
}

.section h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section__copy {
  margin: 0 0 20px;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid,
.pricing-grid,
.faq-grid,
.doc-grid,
.studio-grid {
  display: grid;
  gap: 14px;
}

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

.feature-card,
.pricing-card,
.faq-item,
.doc-card,
.studio-card {
  padding: 22px;
  border-radius: 24px;
}

.feature-card,
.studio-card {
  background: rgba(255, 252, 247, 0.74);
}

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

.pricing-card {
  position: relative;
}

.pricing-card--pro {
  background: linear-gradient(145deg, rgba(236, 246, 241, 0.95), rgba(251, 243, 232, 0.95));
  border-color: rgba(37, 87, 66, 0.22);
}

.pricing-card__label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__price {
  display: block;
  margin-bottom: 8px;
  font-size: 38px;
  font-weight: 900;
}

.pricing-card__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

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

.status {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.demo-result,
.license-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #1e1a16;
  color: #fdfaf4;
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}

.page {
  padding: 52px 0 72px;
}

.page-card h2 {
  margin: 22px 0 10px;
  font-size: 24px;
}

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

.page-card ul {
  padding-left: 18px;
}

.footer {
  border-top: 1px solid rgba(88, 77, 53, 0.1);
  padding: 22px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--subtle);
  font-size: 14px;
}

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

.footer__links a {
  color: var(--subtle);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .doc-grid,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1,
  .page h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .topbar__inner,
  .hero,
  .section,
  .page,
  .footer__inner {
    width: min(1120px, calc(100vw - 24px));
  }

  .hero-card,
  .page-card {
    padding: 24px;
  }

  .topbar__inner {
    align-items: flex-start;
  }

  .nav {
    gap: 10px;
  }
}
