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

:root {
  color-scheme: dark;
  --bg: #030407;
  --bg-2: #070a10;
  --surface: #0b0f16;
  --surface-2: #101722;
  --surface-3: #162233;
  --border: rgba(180, 217, 255, 0.12);
  --border-strong: rgba(95, 205, 255, 0.24);
  --text: #fbfdff;
  --text-muted: #a7b4c5;
  --text-dim: #667385;
  --cyan: #00d5ff;
  --blue: #2f7cff;
  --violet: #7b61ff;
  --green: #29f0c3;
  --amber: #8fc7ff;
  --red: #ff5f7a;
  --ink: #030407;
  --nav-bg: rgba(3, 4, 7, 0.84);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --max-w: 1180px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fbff;
  --bg-2: #eef6ff;
  --surface: #ffffff;
  --surface-2: #f0f7ff;
  --surface-3: #dceeff;
  --border: rgba(6, 43, 76, 0.12);
  --border-strong: rgba(0, 116, 184, 0.24);
  --text: #06111d;
  --text-muted: #34495f;
  --text-dim: #6b8095;
  --cyan: #007b9a;
  --blue: #1058d6;
  --violet: #6146e8;
  --green: #007f68;
  --amber: #216d9e;
  --red: #b42335;
  --ink: #ffffff;
  --nav-bg: rgba(248, 251, 255, 0.9);
  --shadow: 0 26px 72px rgba(17, 45, 76, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(0, 213, 255, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(0, 213, 255, 0.14), transparent 32rem),
    linear-gradient(225deg, rgba(47, 124, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 48%, var(--bg));
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 213, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 213, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 72%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(20px, calc((100vw - var(--max-w)) / 2));
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

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

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

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

.nav-menu,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-menu {
  display: none;
}

.theme-toggle .icon-sun {
  display: none;
}

html[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

html[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--text);
  color: var(--ink);
}

html[data-theme="light"] .btn-primary {
  background: #06111d;
  color: #ffffff;
}

.btn-secondary {
  background: rgba(251, 253, 255, 0.92);
  border-color: rgba(251, 253, 255, 0.2);
  color: #030407;
}

html[data-theme="light"] .btn-secondary {
  background: rgba(6, 17, 29, 0.04);
  border-color: rgba(6, 43, 76, 0.18);
  color: #06111d;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 128px 0 78px;
  text-align: center;
  background:
    radial-gradient(76% 86% at 50% 18%, rgba(47, 124, 255, 0.34), transparent 64%),
    radial-gradient(58% 48% at 18% 44%, rgba(123, 97, 255, 0.2), transparent 68%),
    radial-gradient(52% 46% at 82% 48%, rgba(0, 213, 255, 0.14), transparent 70%);
}

.hero::before {
  content: attr(data-watermark);
  position: absolute;
  top: 110px;
  left: 50%;
  z-index: -1;
  color: rgba(0, 213, 255, 0.045);
  font-size: clamp(78px, 14vw, 210px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
  transform: translateX(-50%);
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 213, 255, 0.32);
  border-radius: 999px;
  background: rgba(0, 213, 255, 0.09);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(41, 240, 195, 0.1);
}

h1 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(52px, 7.7vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-copy {
  max-width: 790px;
  margin: 28px auto 0;
  color: var(--text-muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.proof-strip,
.platform-grid,
.card-grid,
.price-grid,
.timeline-grid {
  display: grid;
  gap: 14px;
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 34px auto 0;
}

.proof-strip div,
.tile,
.card,
.price-card,
.timeline-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(180, 217, 255, 0.045);
}

html[data-theme="light"] .proof-strip div,
html[data-theme="light"] .tile,
html[data-theme="light"] .card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .timeline-card {
  background: rgba(10, 16, 24, 0.035);
}

.proof-strip div {
  min-height: 92px;
  padding: 16px;
}

.proof-strip div::before,
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green));
}

.proof-strip strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 9px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.cta h2 {
  color: var(--text);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.section-head p,
.card p,
.tile p,
.price-card p,
.timeline-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.tile {
  min-height: 176px;
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.tile-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: var(--tile-gradient);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.tile h3,
.card h3,
.price-card h3,
.timeline-card h3 {
  margin-top: 18px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

.tile:nth-child(1),
.card:nth-child(1) {
  --tile-gradient: linear-gradient(135deg, var(--red), var(--violet) 48%, var(--blue));
}

.tile:nth-child(2),
.card:nth-child(2) {
  --tile-gradient: linear-gradient(135deg, var(--green), var(--cyan) 48%, var(--blue));
}

.tile:nth-child(3),
.card:nth-child(3) {
  --tile-gradient: linear-gradient(135deg, #8fc7ff, var(--blue) 48%, var(--violet));
}

.tile:nth-child(4),
.card:nth-child(4) {
  --tile-gradient: linear-gradient(135deg, var(--green), var(--cyan) 44%, var(--violet));
}

.tile:nth-child(5),
.card:nth-child(5) {
  --tile-gradient: linear-gradient(135deg, var(--blue), var(--violet) 48%, var(--red));
}

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

.card,
.price-card,
.timeline-card {
  padding: 24px;
}

.card .tile-icon {
  margin-bottom: 6px;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.45;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 213, 255, 0.5);
}

.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 213, 255, 0.025);
}

html[data-theme="light"] .band {
  background: rgba(10, 16, 24, 0.025);
}

.console {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: left;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 0 14px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.console-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.console-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 750;
}

.console-row strong {
  color: var(--text);
}

.console-row em {
  color: var(--green);
  font-style: normal;
}

.console-row.warn em {
  color: var(--amber);
}

.console-row.risk em {
  color: var(--red);
}

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

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.price {
  margin-top: 18px;
  color: var(--text);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--text-dim);
  font-size: 13px;
}

.price-card .btn {
  margin-top: auto;
}

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

.timeline-card span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
}

.blog-hero {
  min-height: auto;
  padding: 136px 0 58px;
  text-align: left;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 36px;
  align-items: center;
}

.blog-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6.8vw, 86px);
}

.blog-hero-copy .hero-copy {
  max-width: 680px;
  margin-right: 0;
  margin-left: 0;
}

.blog-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(251, 253, 255, 0.06);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.blog-feature-card {
  display: grid;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(41, 240, 195, 0.08), rgba(47, 124, 255, 0.06)),
    rgba(180, 217, 255, 0.045);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease;
}

.blog-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 240, 195, 0.34);
}

.blog-feature-card img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  background: var(--surface);
}

.blog-feature-card-body {
  display: flex;
  min-height: 268px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.blog-feature-card h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.02;
}

.blog-feature-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.58;
}

.blog-focus-section {
  padding-top: 58px;
}

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

.blog-topic-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(180, 217, 255, 0.045);
}

.blog-topic-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green), var(--cyan), var(--blue));
  color: #030407;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.blog-topic-card:nth-child(2) span {
  background: linear-gradient(135deg, var(--amber), var(--blue), var(--violet));
  color: #ffffff;
}

.blog-topic-card:nth-child(3) span {
  background: linear-gradient(135deg, var(--red), var(--violet), var(--blue));
  color: #ffffff;
}

.blog-topic-card h3 {
  margin-top: 22px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.12;
}

.blog-topic-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.62;
}

.blog-list-section {
  padding-top: 34px;
}

.blog-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.blog-list-head h2 {
  font-size: clamp(34px, 4vw, 58px);
}

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

.post-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(180, 217, 255, 0.045);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.post-card:focus-visible,
.post-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--surface);
}

.post-card-body {
  display: flex;
  min-height: 308px;
  flex-direction: column;
  padding: 24px;
}

.post-card h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.post-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.post-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 850;
}

.post-meta {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section.blog-cta {
  padding-top: 28px;
}

.blog-cta .cta-inner {
  background:
    linear-gradient(135deg, rgba(41, 240, 195, 0.1), rgba(47, 124, 255, 0.08) 52%, rgba(255, 95, 122, 0.08)),
    rgba(180, 217, 255, 0.045);
}

.post-article {
  padding: 128px 0 72px;
}

.post-article .container {
  max-width: 920px;
}

.back-to-blog {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.back-to-blog::before {
  content: "<-";
  margin-right: 8px;
}

.article-header {
  text-align: left;
}

.article-header h1 {
  max-width: none;
  margin-top: 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
}

.article-header p {
  max-width: 760px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.article-hero,
.article-body img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  margin: 38px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.article-body {
  margin-top: 34px;
  color: var(--text-muted);
}

.article-body p,
.article-body li {
  font-size: 18px;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body h2 {
  margin: 54px 0 18px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding-left: 22px;
}

.article-body a {
  color: var(--cyan);
  text-underline-offset: 4px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--cyan);
  border-radius: 10px;
  background: rgba(0, 213, 255, 0.075);
  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 850;
  line-height: 1.22;
}

.cta {
  padding: 90px 0 104px;
  text-align: center;
}

.cta-inner {
  padding: 64px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(47, 124, 255, 0.18), rgba(41, 240, 195, 0.08)),
    rgba(180, 217, 255, 0.045);
}

.cta p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 18px;
}

footer {
  padding: 30px 20px 44px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  text-align: center;
  font-size: 13px;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav {
    padding: 12px 20px;
  }

  .brand {
    min-height: 44px;
  }

  .nav-menu,
  .theme-toggle {
    width: 44px;
    height: 44px;
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: auto;
    display: none;
    width: min(360px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-actions .btn {
    display: none;
  }

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

  .card-grid,
  .price-grid,
  .post-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-grid,
  .blog-topic-grid {
    grid-template-columns: 1fr;
  }

  .blog-feature-card {
    min-height: 0;
  }

  .blog-feature-card img,
  .post-card img {
    min-height: 0;
    height: 260px;
  }

  .blog-feature-card-body {
    min-height: 0;
  }
}

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

  .nav {
    padding: 10px 14px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    right: 14px;
    left: 14px;
    width: auto;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 58px;
  }

  .blog-hero {
    padding: 108px 0 46px;
  }

  .blog-hero-grid {
    gap: 26px;
  }

  .blog-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .blog-hero-metrics span {
    width: 100%;
  }

  h1 {
    font-size: clamp(42px, 12.6vw, 58px);
  }

  .proof-strip,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .console-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .blog-focus-section,
  .blog-list-section {
    padding-top: 42px;
  }

  .blog-topic-card {
    min-height: 0;
  }

  .blog-list-head {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-list-head .btn {
    width: fit-content;
  }

  .post-card-body {
    min-height: 0;
  }

  .post-article {
    padding-top: 104px;
  }

  .article-header h1 {
    overflow-wrap: anywhere;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 1.75;
  }

  .section h2,
  .cta h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .cta {
    padding: 64px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
