:root {
  --color-ink: #102033;
  --color-ink-2: #18314c;
  --color-blue: #1677ff;
  --color-blue-deep: #0f5fd0;
  --color-teal: #0b7a75;
  --color-mint: #d9fff4;
  --color-gold: #ffb84d;
  --color-slate: #5a6d82;
  --color-slate-soft: #6d7f95;
  --color-line: #dbe6f0;
  --color-surface: #ffffff;
  --color-surface-2: #f5f8fc;
  --color-surface-3: #edf3fa;
  --color-dark: #0d1b2a;
  --color-dark-2: #13253a;
  --shadow-lg: 0 30px 80px rgba(16, 32, 51, 0.14);
  --shadow-md: 0 18px 48px rgba(16, 32, 51, 0.1);
  --shadow-sm: 0 10px 30px rgba(16, 32, 51, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Sora", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(22, 119, 255, 0.09), transparent 32%),
    linear-gradient(180deg, #f9fbfe 0%, #ffffff 22%, #f7fbff 100%);
  line-height: 1.6;
}

body.page-soft {
  background:
    radial-gradient(circle at top, rgba(22, 119, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

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

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

p,
ul,
ol,
dl {
  margin-top: 0;
}

p,
li {
  color: var(--color-slate);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.25rem;
}

ul {
  padding-left: 1.1rem;
}

li {
  margin-bottom: 10px;
}

strong {
  color: var(--color-ink);
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -64px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-blue);
  color: var(--color-surface);
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 230, 240, 0.7);
  background: rgba(248, 251, 255, 0.88);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.nav-wrap-simple {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
  border-radius: 999px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.site-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  justify-content: center;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.header-actions {
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-left: 18px;
  border-left: 1px solid rgba(219, 230, 240, 0.9);
}

.site-nav a,
.nav-link-subtle,
.footer-links a {
  color: var(--color-slate-soft);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.nav-link-subtle:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--color-blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue) 0%, #47a1ff 100%);
  color: var(--color-surface);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(22, 119, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(22, 119, 255, 0.28);
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue) 100%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-blue);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--color-surface);
}

.button-compact {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.full-width {
  width: 100%;
}

.text-link {
  color: var(--color-blue);
  font-weight: 800;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.hero,
.section {
  padding: 96px 0;
}

.hero {
  padding-top: 70px;
}

.hero-grid,
.section-split,
.evidence-grid,
.spotlight-grid,
.faq-grid,
.auth-layout {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-inverse {
  color: #9bc7ff;
}

.lead {
  max-width: 61ch;
  margin-bottom: 28px;
  font-size: 1.12rem;
  color: var(--color-slate);
}

.hero-actions,
.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.proof-band div,
.trust-grid article,
.step-card,
.feature-card,
.boundary-card,
.price-card,
.spotlight-card,
.form-card,
.auth-card,
.message-card,
.legal-copy {
  border: 1px solid rgba(219, 230, 240, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.proof-band div {
  padding: 18px;
}

.proof-band strong,
.trust-kicker,
.boundary-label {
  display: block;
  margin-bottom: 6px;
}

.hero-visual-shell {
  position: relative;
}

.hero-visual-shell::before {
  content: "";
  position: absolute;
  inset: 2% 6% auto auto;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.16) 0%, rgba(22, 119, 255, 0) 72%);
  filter: blur(12px);
}

.hero-motion {
  position: relative;
  min-height: 760px;
  padding: 36px;
  border: 1px solid rgba(219, 230, 240, 0.92);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(22, 119, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 249, 255, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-device {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin: 78px auto 0;
  padding: 18px 18px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #12263b 0%, #0f1d2e 100%);
  box-shadow: 0 30px 80px rgba(10, 22, 40, 0.34);
}

.hero-device-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-device-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

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

.hero-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-card strong,
.hero-float strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.hero-card span:last-child,
.hero-float-label {
  color: rgba(226, 236, 248, 0.82);
  font-size: 0.92rem;
}

.hero-card-primary {
  transform: translateY(0);
  animation: hero-float-primary 6s ease-in-out infinite;
}

.hero-card-secondary {
  width: 84%;
  animation: hero-float-secondary 7s ease-in-out infinite;
}

.hero-card-proof {
  width: 88%;
  justify-self: end;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(71, 161, 255, 0.18);
  color: #dcecff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip-teal {
  background: rgba(63, 191, 168, 0.18);
  color: #ddfff5;
}

.hero-chip-gold {
  background: rgba(255, 184, 77, 0.16);
  color: #fff0d7;
}

.hero-float {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(219, 230, 240, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.hero-float strong {
  color: var(--color-ink);
  margin-bottom: 0;
}

.hero-float-left {
  top: 170px;
  left: 10px;
  animation: hero-float-side 7s ease-in-out infinite;
}

.hero-float-right {
  top: 250px;
  right: 8px;
  animation: hero-float-side 7s ease-in-out infinite reverse;
}

.hero-float-bottom {
  right: 40px;
  bottom: 84px;
  animation: hero-float-bottom 6.5s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: 46px;
  right: 46px;
  width: 92px;
  height: 92px;
  background: rgba(91, 169, 255, 0.18);
}

.hero-orb-two {
  bottom: 118px;
  left: 44px;
  width: 72px;
  height: 72px;
  background: rgba(145, 255, 220, 0.3);
}

.hero-orb-three {
  top: 302px;
  left: 56px;
  width: 16px;
  height: 16px;
  background: rgba(22, 119, 255, 0.85);
  box-shadow: 180px -32px 0 rgba(63, 191, 168, 0.7), 230px 120px 0 rgba(255, 184, 77, 0.72);
}

.hero-visual {
  position: relative;
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

@keyframes hero-float-primary {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hero-float-secondary {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes hero-float-side {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes hero-float-bottom {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.trust-strip {
  padding-bottom: 12px;
}

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

.trust-grid article {
  padding: 22px 24px;
}

.trust-kicker {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-muted {
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.85) 0%, rgba(247, 251, 255, 0.92) 100%);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(71, 161, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: var(--color-surface);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
  color: inherit;
}

.section-split,
.evidence-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-intro p:last-child,
.body-copy p:last-child,
.section-heading p:last-child,
.form-intro p:last-child {
  margin-bottom: 0;
}

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

.section-heading.narrow {
  max-width: 700px;
}

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

.step-card,
.feature-card,
.spotlight-card,
.form-card {
  padding: 26px;
}

.step-number,
.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-number {
  width: auto;
}

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

.feature-card {
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.feature-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(155, 199, 255, 0.14);
  color: #c8e2ff;
}

.boundary-grid,
.pricing-grid,
.forms-grid {
  display: grid;
  gap: 20px;
}

.boundary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin: 0 auto;
}

.boundary-card {
  padding: 28px;
}

.boundary-card::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-teal) 0%, #3fbfa8 100%);
}

.boundary-card-warning::before {
  background: linear-gradient(90deg, var(--color-gold) 0%, #ff934d 100%);
}

.boundary-label {
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 18px;
}

.price-card-featured {
  border: 1px solid rgba(22, 119, 255, 0.38);
  box-shadow: 0 26px 60px rgba(22, 119, 255, 0.16);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.12);
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-top {
  min-height: 108px;
  padding-right: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.price {
  margin: 0;
  color: var(--color-ink);
  font-weight: 800;
}

.price span {
  color: var(--color-ink);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price small,
.billing-term,
.pricing-note {
  color: var(--color-slate-soft);
}

.price-block {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.billing-term {
  margin: 0;
}

.plan-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.plan-meta div {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid rgba(219, 230, 240, 0.85);
}

.plan-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-slate-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-meta strong {
  font-size: 0.96rem;
}

.plan-list {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.plan-list li {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-slate);
}

.pricing-note {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.95rem;
}

.spotlight-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
}

.spotlight-card {
  background: linear-gradient(180deg, #f5fbff 0%, #eef7ff 100%);
}

.accordion details {
  padding: 22px 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.accordion details + details {
  margin-top: 14px;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--color-ink);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  margin: 14px 0 0;
}

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

.form-intro {
  margin-bottom: 16px;
}

.forms-grid-stable {
  align-items: stretch;
}

.form-card-embed {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.form-embed-shell {
  flex: 1;
  min-height: 420px;
}

.form-embed-shell iframe {
  width: 100%;
}

.site-footer {
  padding: 54px 0 26px;
  background: var(--color-dark);
  color: var(--color-surface);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.brand-footer {
  margin-bottom: 14px;
}

.brand-footer .brand-name {
  color: var(--color-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  gap: 28px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  max-width: 42ch;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-single {
  padding-top: 0;
  border-top: 0;
}

.auth-shell,
.legal-shell,
.center-shell {
  padding: 72px 0 96px;
}

.auth-shell-inner {
  max-width: 1120px;
}

.auth-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: center;
}

.auth-points {
  margin: 26px 0 0;
}

.auth-card {
  padding: 28px;
}

.auth-field {
  display: block;
  margin-bottom: 16px;
}

.auth-field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--color-ink);
}

.auth-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: var(--color-ink);
}

.auth-field input:focus {
  outline: 2px solid rgba(22, 119, 255, 0.18);
  border-color: var(--color-blue);
}

.auth-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.auth-row a,
.auth-note a {
  color: var(--color-blue);
  font-weight: 700;
}

.auth-submit {
  width: 100%;
}

.auth-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.legal-copy {
  max-width: 820px;
  padding: 34px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: 1.5rem;
}

.message-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  text-align: center;
}

.message-card .brand {
  justify-content: center;
  margin-bottom: 22px;
}

.message-card h1 {
  max-width: none;
}

.blog-hero {
  padding: 84px 0 56px;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: end;
}

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

.blog-grid-home {
  margin-top: 10px;
}

.blog-card,
.blog-featured,
.article-sidebar,
.article-cta,
.faq-item,
.related-posts article {
  border: 1px solid rgba(219, 230, 240, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.blog-card,
.blog-featured,
.article-cta,
.faq-item,
.related-posts article {
  padding: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card h3,
.blog-featured h3 {
  margin-bottom: 12px;
}

.blog-card h3 a,
.blog-featured h3 a {
  color: var(--color-ink);
}

.blog-card p:last-of-type,
.blog-featured p:last-of-type {
  margin-bottom: 18px;
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--color-slate-soft);
  font-size: 0.9rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--color-surface-3);
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card-meta span:not(.category-pill),
.article-meta span:not(.category-pill) {
  display: inline-flex;
  align-items: center;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: center;
}

.blog-featured-panel {
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #eff6ff 0%, #f7fbff 100%);
  border: 1px solid rgba(219, 230, 240, 0.9);
  box-shadow: var(--shadow-sm);
}

.blog-featured-card {
  display: grid;
  gap: 10px;
}

.blog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 28px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--color-slate-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--color-blue);
}

.article-shell {
  padding: 54px 0 88px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-content > * + * {
  margin-top: 22px;
}

.article-content h2 {
  margin-top: 38px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.article-content h3 {
  margin-top: 28px;
}

.article-content ul,
.article-content ol {
  color: var(--color-slate);
}

.article-sidebar {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.article-sidebar h3 {
  font-size: 1.1rem;
}

.article-sidebar ul {
  margin: 0;
}

.article-cta {
  margin: 28px 0;
}

.article-cta p:last-child {
  margin-bottom: 0;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item h3 {
  font-size: 1.08rem;
}

.related-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.disclaimer {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  background: #fffaf1;
  color: var(--color-slate);
  font-size: 0.95rem;
}

@media (max-width: 1180px) {
  .hero-grid,
  .section-split,
  .evidence-grid,
  .spotlight-grid,
  .faq-grid,
  .auth-layout,
  .blog-hero-grid,
  .forms-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-motion {
    min-height: 620px;
  }

  .hero-device {
    margin-top: 40px;
  }

  .hero-float-left {
    top: 96px;
  }

  .hero-float-right {
    top: 190px;
  }

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

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

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

  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

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

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(219, 230, 240, 0.94);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(219, 230, 240, 0.9);
    padding-top: 12px;
  }

  .site-nav a,
  .nav-link-subtle {
    padding: 8px 0;
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .hero-motion {
    min-height: auto;
    padding: 24px;
  }

  .hero-device {
    width: 100%;
    margin-top: 0;
  }

  .hero-float {
    position: static;
    min-width: 0;
  }

  .hero-orb-three {
    left: 28px;
  }

  .proof-band,
  .trust-grid,
  .feature-list,
  .boundary-grid,
  .pricing-grid,
  .blog-grid,
  .related-posts,
  .steps-grid,
  .forms-grid,
  .plan-meta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .article-cta-actions,
  .message-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-featured,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .button,
  .button-compact {
    width: 100%;
  }

  .form-embed-shell {
    min-height: 360px;
  }

  .footer-links {
    gap: 12px;
  }

  .auth-shell,
  .legal-shell,
  .center-shell {
    padding: 48px 0 72px;
  }
}
