* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: #0f172a;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at right 20%, rgba(34, 211, 238, 0.14), transparent 28%),
    linear-gradient(180deg, #faf7f2 0%, #f4efe6 45%, #ffffff 100%);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(120, 113, 108, 0.18);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

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

.brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #57534e;
}

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

.pill-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background-color 160ms ease;
}

.pill-button {
  border: 1px solid rgba(120, 113, 108, 0.26);
  background: rgba(255, 255, 255, 0.82);
  color: #292524;
}

.solid-button {
  background: #111827;
  color: white;
}

.pill-button:hover,
.solid-button:hover {
  transform: translateY(-1px);
}

.page {
  padding: 48px 0 88px;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(120, 113, 108, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #57534e;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
}

.hero h1 {
  margin: 24px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero p.lead {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.9;
  color: #57534e;
}

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

.panel,
.dark-panel {
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.panel {
  border: 1px solid rgba(214, 211, 209, 0.76);
  background: rgba(255, 255, 255, 0.84);
}

.dark-panel {
  border: 1px solid rgba(15, 23, 42, 0.85);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.16), transparent 30%),
    linear-gradient(180deg, #0f172a, #111827);
  color: #f5f5f4;
}

.mini-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a8a29e;
}

.highlight-grid,
.card-grid,
.faq-grid,
.related-grid {
  display: grid;
  gap: 16px;
}

.highlight-grid {
  margin-top: 18px;
}

.highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.highlight-card strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a5f3fc;
}

.highlight-card span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.section {
  margin-top: 56px;
}

.section-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-intro {
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.85;
  color: #57534e;
  text-align: center;
}

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

.card h2,
.faq-card h3,
.related-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.card p,
.faq-card p,
.related-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: #57534e;
}

.workflow-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.02fr 0.98fr;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  border: 1px solid rgba(214, 211, 209, 0.78);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.step strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #78716c;
}

.step span {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 600;
}

.step p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #57534e;
}

.related-grid {
  margin-top: 18px;
}

.related-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.related-card h3 {
  font-size: 22px;
  color: white;
}

.related-card p {
  color: #d6d3d1;
}

.faq-grid {
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-note {
  margin-top: 56px;
  border-top: 1px solid rgba(214, 211, 209, 0.76);
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #78716c;
}

@media (max-width: 960px) {
  .hero,
  .workflow-grid,
  .card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page {
    padding-top: 32px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
  }

  .pill-button,
  .solid-button {
    width: 100%;
  }
}
