:root {
  --blue-900: #172554;
  --blue-800: #1e3a8a;
  --blue-700: #1e40af;
  --blue-600: #2563eb;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;

  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-100: #fef3c7;

  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 60px rgba(30, 64, 175, 0.12), 0 12px 24px rgba(15, 23, 42, 0.06);

  --container: 1200px;
  --nav-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-700);
  background:
    radial-gradient(circle at top left, rgba(219, 234, 254, 0.45), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  overflow: visible;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 1)),
    var(--slate-50);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-label-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  border-color: rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--slate-900);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  font-weight: 700;
}

p {
  margin: 0;
}

.section-heading p,
.hero-subtitle,
.final-cta-copy p,
.honesty-copy p,
.honesty-note,
.pricing-note,
.pricing-footnote,
.info-card p,
.feature-card p {
  color: var(--slate-600);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--slate-900);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  color: white;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.22);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  font-size: 1.15rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--slate-600);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.18s ease;
}

.nav-menu a:hover {
  color: var(--slate-900);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-900);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.93rem;
}

.btn-lg {
  min-height: 54px;
  padding: 0 22px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(180deg, #fbbf24, var(--amber-500));
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f59e0b, var(--amber-600));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--slate-900);
  border-color: rgba(203, 213, 225, 0.9);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--slate-300);
}

.btn-dark-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  filter: blur(30px);
  opacity: 0.9;
}

.hero-glow-blue {
  top: 80px;
  right: 10%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 65%);
}

.hero-glow-amber {
  top: 180px;
  left: 6%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 65%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 64, 175, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 44px;
  min-height: calc(80vh - var(--nav-h));
  justify-content: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 234, 254, 1);
  box-shadow: var(--shadow-sm);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amber-500);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.15);
}

.hero-subtitle {
  font-size: 1.16rem;
  max-width: 630px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--slate-500);
  font-size: 0.94rem;
  font-weight: 600;
}

.meta-divider {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--slate-300);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.dashboard-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(219, 234, 254, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-lg);
}

.dashboard-main {
  padding: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.dashboard-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mini-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.dashboard-top h3 {
  font-size: 1.35rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  border: 1px solid var(--slate-200);
  background: white;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-card.warning {
  background: linear-gradient(180deg, #fffaf0, #ffffff);
  border-color: #fde68a;
}

.stat-label {
  display: block;
  color: var(--slate-500);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.stat-card strong {
  color: var(--slate-900);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.doc-panel {
  margin-top: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 16px;
}

.doc-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-900);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tiny-link {
  color: var(--blue-700);
  font-size: 0.86rem;
}

.doc-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 8px;
  border-top: 1px solid var(--slate-100);
}

.doc-row:first-of-type {
  border-top: 0;
}

.doc-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-50);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}

.doc-icon.blue {
  background: var(--blue-50);
  color: var(--blue-700);
  border-color: var(--blue-100);
}

.doc-icon.amber {
  background: #fff7ed;
  color: var(--amber-600);
  border-color: #fed7aa;
}

.doc-icon svg {
  width: 21px;
  height: 21px;
}

.doc-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.doc-copy strong {
  color: var(--slate-900);
  font-size: 0.97rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-copy span {
  color: var(--slate-500);
  font-size: 0.88rem;
}

.doc-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.doc-state.alert {
  background: var(--amber-100);
  color: #92400e;
}

.floating-note {
  position: absolute;
  max-width: 200px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.note-left {
  left: 10px;
  bottom: 64px;
}

.note-right {
  right: -4px;
  top: 52px;
}

.note-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.floating-note p {
  color: var(--slate-700);
  font-weight: 600;
  line-height: 1.4;
  font-size: 0.92rem;
}

.trust-strip {
  padding: 18px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: rgba(248, 250, 252, 0.9);
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.trust-inner p {
  color: var(--slate-700);
  font-weight: 700;
}

.trust-points {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  color: var(--slate-500);
  font-weight: 700;
}

.trust-points li {
  position: relative;
}

.trust-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--blue-600);
  vertical-align: middle;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

.info-card,
.feature-card,
.pricing-card,
.honesty-card {
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
}

.info-card,
.feature-card {
  padding: 28px;
}

.problem-card {
  min-height: 100%;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08), transparent 70%);
  pointer-events: none;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  color: var(--slate-800);
  border: 1px solid var(--slate-200);
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-top .icon-wrap {
  margin-bottom: 0;
}

.icon-blue {
  background: linear-gradient(180deg, var(--blue-50), #ffffff);
  color: var(--blue-700);
  border-color: var(--blue-100);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.info-card h3,
.feature-card h3 {
  margin-bottom: 12px;
}

.pricing-shell {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: 100%;
  max-width: 980px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue-700), var(--amber-500));
}

.pricing-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-kicker {
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  color: var(--slate-900);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-unit {
  color: var(--slate-500);
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-note {
  margin-top: 10px;
  font-size: 1rem;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--slate-200), rgba(226, 232, 240, 0.3));
  margin: 28px 0;
}

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

.check-list,
.x-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li,
.x-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-700);
  font-weight: 600;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue-700);
  flex: 0 0 auto;
  margin-top: 2px;
}

.pricing-footnote {
  margin-top: 24px;
  color: var(--slate-500);
  font-weight: 600;
}

.honesty-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.honesty-card {
  padding: 30px;
}

.honesty-card h3 {
  margin-bottom: 18px;
}

.x-list {
  display: grid;
  gap: 16px;
}

.x-list svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
  flex: 0 0 auto;
  margin-top: 2px;
}

.honesty-note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--slate-200);
  font-weight: 600;
}

.final-cta {
  padding: 0 0 96px;
}

.final-cta-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 56px 44px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 25%),
    radial-gradient(circle at left center, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(135deg, #0f172a, #111827 55%, #172554 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22);
}

.final-cta-copy h2 {
  color: white;
  max-width: 640px;
  margin-bottom: 14px;
}

.final-cta-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
  font-size: 1.05rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer {
  border-top: 1px solid var(--slate-200);
  background: white;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--slate-500);
}

.footer-brand-link {
  display: inline-flex;
}

.site-footer h4 {
  color: var(--slate-900);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--slate-600);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--slate-900);
}

.footer-bottom {
  margin-top: 40px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--slate-200);
}

.footer-bottom p {
  color: var(--slate-500);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .honesty-wrap,
  .pricing-intro,
  .trust-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-layout {
    gap: 30px;
    min-height: auto;
  }

  .final-cta-card {
    gap: 24px;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-main {
    margin: 0;
    max-width: none;
  }

  .floating-note {
    display: none;
  }

  .pricing-intro,
  .final-cta-card {
    gap: 24px;
  }

  .trust-inner {
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 14px;
    display: flex;
    align-items: center;
  }

  .nav-menu .btn {
    width: 100%;
  }

  .card-grid-2,
  .card-grid-3,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions,
  .final-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn,
  .final-cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .doc-row {
    grid-template-columns: 46px 1fr;
  }

  .doc-state {
    grid-column: 2;
    justify-self: start;
  }

  .pricing-card,
  .honesty-card,
  .final-cta-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 74px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .eyebrow,
  .section-label {
    font-size: 0.76rem;
  }

  .hero-subtitle,
  .section-heading p,
  .final-cta-copy p {
    font-size: 1rem;
  }

  .hero-meta {
    gap: 8px 12px;
    font-size: 0.88rem;
  }

  .info-card,
  .feature-card {
    padding: 22px;
  }

  .dashboard-main {
    padding: 16px;
    border-radius: 24px;
  }

  .doc-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .doc-copy strong {
    white-space: normal;
  }

  .trust-strip {
    padding: 16px 0;
  }

  .trust-points {
    gap: 10px 16px;
    font-size: 0.92rem;
  }

  .pricing-card::before {
    width: 100%;
    height: 6px;
    inset: 0 0 auto 0;
  }
}
/* =========================
   Blog styles
   Append to styles.css
   ========================= */

.blog-index-hero,
.blog-post-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
}

.blog-index-hero-bg,
.blog-post-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-index-hero-inner,
.blog-post-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-index-heading {
  margin-bottom: 0;
  max-width: 820px;
}

.blog-index-heading p {
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 1.08rem;
}

.blog-post-header {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-back-link:hover {
  color: var(--blue-800);
}

.blog-post-meta,
.blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--slate-500);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-post-meta {
  margin-bottom: 20px;
}

.blog-post-dek {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--slate-600);
}

.blog-post-section {
  padding: 12px 0 96px;
}

.blog-article {
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 1.82;
}

.blog-article > * + * {
  margin-top: 20px;
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

.blog-article h2 {
  margin-top: 48px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  font-weight: 800;
}

.blog-article h3 {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
}

.blog-article h4 {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 800;
}

.blog-article p,
.blog-article li {
  color: var(--slate-700);
}

.blog-article strong {
  color: var(--slate-900);
}

.blog-article a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.blog-article a:hover {
  color: var(--blue-800);
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.35rem;
}

.blog-article ul li::marker,
.blog-article ol li::marker {
  color: var(--blue-700);
}

.blog-article li + li {
  margin-top: 10px;
}

.blog-article blockquote {
  margin: 32px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--blue-600);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.85), rgba(248, 250, 252, 0.9));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--slate-800);
  box-shadow: var(--shadow-sm);
}

.blog-article hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid var(--slate-200);
}

.blog-article code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  background: var(--slate-100);
  color: var(--slate-900);
  padding: 0.18em 0.42em;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
}

.blog-article pre {
  margin: 28px 0;
  padding: 18px;
  overflow-x: auto;
  border-radius: 18px;
  background: var(--slate-950);
  color: var(--slate-100);
  box-shadow: var(--shadow-md);
}

.blog-article pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.97rem;
  line-height: 1.55;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  background: white;
  display: block;
  overflow-x: auto;
}

.blog-article thead {
  background: linear-gradient(180deg, var(--slate-50), #ffffff);
}

.blog-article th,
.blog-article td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
  min-width: 140px;
}

.blog-article th {
  color: var(--slate-900);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.blog-article td {
  color: var(--slate-700);
}

.blog-article tbody tr:last-child td {
  border-bottom: 0;
}

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

.blog-card-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.blog-card-item::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08), transparent 70%);
  pointer-events: none;
}

.blog-card-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}

.blog-card-item h2 {
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 800;
  color: var(--slate-900);
}

.blog-card-item p {
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.7;
}

.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.95rem;
}

.article-cta {
  margin-top: 56px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 1));
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-md);
}

.article-cta-copy h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.article-cta-copy p {
  color: var(--slate-600);
}

.article-cta .section-label {
  margin-bottom: 14px;
}

.article-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .blog-index-hero,
  .blog-post-hero {
    padding: 42px 0 28px;
  }

  .blog-post-section {
    padding: 8px 0 76px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .article-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog-post-meta,
  .blog-card-meta {
    font-size: 0.86rem;
    gap: 8px;
  }

  .blog-post-dek,
  .blog-index-heading p {
    font-size: 1rem;
  }

  .blog-article {
    font-size: 1rem;
    line-height: 1.76;
  }

  .blog-card-item,
  .article-cta {
    padding: 22px;
  }

  .blog-card-item h2 {
    font-size: 1.28rem;
  }

  .blog-article table {
    font-size: 0.92rem;
  }

  .blog-article th,
  .blog-article td {
    padding: 12px 14px;
  }
}

/* TL;DR box */
.tldr-box {
  background: var(--slate-50, #f8fafc);
  border-left: 4px solid var(--blue-700, #1e40af);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
}
.tldr-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--blue-700, #1e40af);
}