:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #fffdf8;
  --text: #151515;
  --muted: #5e5a53;
  --line: rgba(21, 21, 21, 0.1);
  --brand: #0b63ce;
  --brand-deep: #083e82;
  --accent: #d96f32;
  --success: #0f7b53;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 20px 60px rgba(24, 27, 31, 0.08);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 99, 206, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(217, 111, 50, 0.1), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f3eee4 100%);
  font: 16px/1.65 "Inter", "Segoe UI", Arial, sans-serif;
}

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

img {
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 242, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

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

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

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.btn {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: rgba(21, 21, 21, 0.06);
  color: var(--text);
}

.hero {
  padding: 74px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.1);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(40px, 7vw, 74px);
  margin-top: 18px;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(21px, 3vw, 28px);
}

.lede,
.section-intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-card,
.card,
.comparison-table,
.faq,
.article,
.docs-layout,
.cta-band {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 24px;
}

.screen,
.screen-tall {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(11, 99, 206, 0.18), rgba(217, 111, 50, 0.08)),
    var(--surface-strong);
  border: 1px solid rgba(11, 99, 206, 0.1);
  overflow: hidden;
}

.screen {
  min-height: 360px;
}

.screen-tall {
  min-height: 500px;
}

.screen-bar {
  display: flex;
  gap: 8px;
  padding: 16px 18px 0;
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.18);
}

.screen-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 18px;
}

.screen-sidebar,
.screen-panel,
.metric,
.mini-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 21, 21, 0.06);
}

.screen-sidebar {
  min-height: 250px;
  padding: 18px;
}

.screen-panel {
  min-height: 250px;
  padding: 18px;
}

.screen-list,
.bullet-list,
.toc,
.doc-list,
.pill-row {
  display: grid;
  gap: 10px;
}

.screen-chip,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.09);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

.metrics,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.metric,
.card {
  padding: 22px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.section {
  padding: 38px 0;
}

.card p,
.metric p,
.comparison-table p,
.faq p,
.article p,
.article li,
.docs-layout p,
.docs-layout li {
  color: var(--muted);
}

.comparison-table {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.yes {
  color: var(--success);
  font-weight: 700;
}

.no {
  color: var(--accent);
  font-weight: 700;
}

.faq,
.cta-band,
.article,
.docs-layout {
  padding: 28px;
}

.faq-item + .faq-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 44px 0 70px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 18px;
}

.footer-title {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}

.article {
  margin-top: 28px;
}

.article h2 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.article h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.article ul,
.article ol {
  padding-left: 22px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.toc a,
.doc-list a,
.footer-links a,
.inline-links a {
  color: var(--brand-deep);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.blog-list .card {
  height: 100%;
}

.highlight {
  color: var(--brand);
}

.subtle {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .docs-layout,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .metrics,
  .screen-body {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}
