/* =========================
   Downloads — main.css (Premium, clean)
   ========================= */
:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --muted: #626477;
  --text: #111218;
  --accent: #3b6ff0;
  --accent-2: #8ea4ff;
  --success: #0b9d5c;
  --danger: #d23d5a;
  --ring: 0 0 0 6px color(from var(--accent) srgb r g b / .16);

  --container: 1160px;
  --header-gap: 34px;
  --radius-card: 20px;
  --radius-chip: 999px;
  --lh: 1.6;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .06);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, .07);
  --shadow-pop: 0 18px 44px rgba(18, 22, 33, .12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1400px 1000px at 78% -24%, rgba(210, 214, 224, .22) 0%, rgba(210, 214, 224, .08) 45%, rgba(210, 214, 224, 0) 80%),
    linear-gradient(180deg, #f7f8fb 0%, #f5f7fb 100%);
  color: var(--text);
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.u {
  text-decoration: underline;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 20px;
}

/* -------- Header & Nav -------- */
header {
  padding: 10px 0 14px;
  margin-bottom: var(--header-gap);
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 190px;
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  color: #222;
  box-shadow: var(--shadow-soft);
}

.site-header nav {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 12px 14px;
  margin-top: 4px;
}

.site-header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-header nav a {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  opacity: .94;
  padding: 10px 12px;
  border-radius: 12px;
}

.site-header nav a:hover {
  color: var(--text);
  background: #f3f4f8;
  opacity: 1;
}

.site-header nav a.btn-mini {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 9px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

#active {
  text-decoration: underline;
  color: #000;
}

@media (min-width:900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #site-nav,
  #site-nav[hidden] {
    display: block !important;
  }

  .site-header nav {
    width: auto;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
    margin-top: 0;
    margin-left: auto;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-header nav ul {
    flex-direction: row;
    align-items: center;
    gap: 26px;
  }

  .site-header nav a {
    padding: 0;
    border-radius: 0;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding: 34px 0 22px;
  text-align: center;
}

.hero> :first-child {
  display: grid;
  justify-items: center;
}

.hero-home {
  padding-top: 24px;
  padding-bottom: clamp(44px, 6.5vw, 84px);
}

.hero-home .sub {
  max-width: 56ch;
}

.hero-note {
  margin: 14px 0 0;
  color: #5b6072;
  font-size: 14px;
  font-weight: 700;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: center;
}

.badge {
  font-size: 12px;
  color: #3f4153;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 8px 12px;
  border-radius: var(--radius-chip);
  box-shadow: var(--shadow-soft);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  justify-content: center;
}

.msg {
  margin-top: 8px;
  font-size: 0.85rem;
}

.msg--ok {
  color: var(--success);
}

.msg--err {
  color: var(--danger);
}

@media (min-width:980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 4.8vw, 62px);
    text-align: left;
  }

  .hero> :first-child {
    justify-items: start;
  }
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 14px;
  opacity: .9;
}

h1 {
  font-size: clamp(34px, 6.2vw, 52px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.sub {
  color: #4e5162;
  font-size: clamp(16px, 2vw, 20px);
  max-width: 58ch;
  margin-bottom: 6px;
}

.btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: 0;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(59, 111, 240, .30);
  transition: transform .08s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(59, 111, 240, .34);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: none;
}

.section {
  padding: 56px 0;
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tiny {
  font-size: 12px;
  color: #7a7d8e;
}

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

.nl input {
  flex: 1;
  background: #f3f4f8;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 14px 14px;
  outline: none;
  font-size: 16px;
}

.nl input:focus {
  box-shadow: var(--ring);
  border-color: var(--accent);
}

.nl button {
  padding: 14px 16px;
  border-radius: 14px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.float {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-visual {
  justify-self: center;
  align-self: center;
  width: min(100%, 620px);
}

.device-mock {
  width: clamp(220px, 22vw, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 60px rgba(10, 12, 20, .45));
  will-change: transform;
  transform: translateZ(0);
}

.device-mock--slant {
  width: min(100%, clamp(300px, 74vw, 580px));
  max-height: clamp(430px, 72vh, 820px);
  margin-inline: auto;
}

.moments-strip {
  margin-top: clamp(-20px, -2.6vw, -12px);
  padding-top: clamp(30px, 4.8vw, 46px);
  padding-bottom: 24px;
}

.moments-band {
  position: relative;
  display: grid;
  gap: 12px;
  background:
    radial-gradient(700px 260px at 88% -12%, rgba(124, 147, 226, .26), rgba(124, 147, 226, 0) 58%),
    radial-gradient(500px 240px at 8% 110%, rgba(92, 112, 168, .18), rgba(92, 112, 168, 0) 62%),
    linear-gradient(120deg, #121826 0%, #171f2f 52%, #1d273a 100%);
  border-radius: 24px;
  padding: 28px 22px;
  border: 1px solid rgba(218, 227, 252, .20);
  box-shadow:
    0 26px 46px rgba(10, 14, 24, .34),
    inset 0 1px 0 rgba(239, 244, 255, .10),
    inset 0 -1px 0 rgba(116, 136, 190, .14);
  overflow: hidden;
}

.moments-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 245, 255, 0), rgba(240, 245, 255, .42), rgba(240, 245, 255, 0));
  pointer-events: none;
}

.moments-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 239, 255, .07) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  opacity: .26;
  pointer-events: none;
}

.moments-title {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #f2f5ff;
}

.moments-sub {
  margin: 0;
  color: #c8d3f3;
  font-size: 15px;
  font-weight: 700;
}

.moments-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.moments-list li {
  margin: 0;
}

.moment-jump {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(214, 223, 251, .22);
  background: rgba(236, 242, 255, .06);
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  color: #edf2ff;
  text-align: center;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .08s ease;
}

.moment-jump:hover {
  background: rgba(236, 242, 255, .14);
  border-color: rgba(214, 223, 251, .38);
}

.moment-jump:active {
  transform: translateY(1px);
}

.moment-jump:focus-visible {
  outline: 2px solid rgba(198, 211, 247, .8);
  outline-offset: 2px;
}

.how-it-works {
  padding-top: 38px;
  padding-bottom: 34px;
}

.how-layout {
  display: grid;
  gap: 22px;
}

.how-media {
  margin: 0;
  justify-self: center;
  width: min(100%, 460px);
}

.how-preview {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.how-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  counter-reset: howstep;
}

.how-step {
  position: relative;
  padding-top: 46px;
}

.how-step::before {
  counter-increment: howstep;
  content: "0" counter(howstep);
  position: absolute;
  top: 16px;
  left: 20px;
  color: #7b8091;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}

.how-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.how-step p {
  margin: 0;
  color: #464b5c;
}

.transform-section {
  padding-top: 4px;
  padding-bottom: 34px;
}

.transform-line {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  display: grid;
  align-content: end;
  gap: 22px;
  justify-items: start;
  min-height: clamp(230px, 30vw, 340px);
  border-radius: 24px;
  border: 1px solid rgba(198, 210, 243, .28);
  background-color: #111827;
  background-image:
    linear-gradient(112deg, rgba(7, 11, 20, .92) 8%, rgba(10, 16, 30, .76) 52%, rgba(14, 24, 42, .62) 100%),
    radial-gradient(80% 98% at 98% 4%, rgba(95, 131, 255, .38), rgba(95, 131, 255, 0) 66%),
    url("/img/cta-man-motion.jpg");
  background-size: auto, auto, cover;
  background-position: center, right top, center 36%;
  box-shadow:
    0 22px 34px rgba(10, 13, 21, .24),
    inset 0 1px 0 rgba(243, 247, 255, .18);
  padding: clamp(26px, 4vw, 42px);
}

.transform-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(9, 14, 25, .08) 0%, rgba(9, 14, 25, .42) 100%);
  pointer-events: none;
}

.transform-line>* {
  position: relative;
  z-index: 1;
}

.transform-copy {
  margin: 0;
  max-width: clamp(28ch, 52vw, 38ch);
}

.transform-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: #ccd9ff;
  text-shadow: none;
}

.transform-main {
  display: block;
  color: #f2f5ff;
  text-shadow: 0 2px 16px rgba(5, 9, 17, .44);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -.01em;
}

.transform-cta {
  box-shadow: 0 12px 28px rgba(59, 111, 240, .34);
}

.reviews-section {
  position: relative;
  margin-top: 35px;
  padding-top: 44px;
  padding-bottom: 65px;
}

.reviews-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 24px;
}

.reviews-heading h2 {
  margin: 0 0 1.2em 0;
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1;
  letter-spacing: -.02em;
}

.reviews-accent {
  display: block;
  color: inherit;
}

.reviews-wall {
  max-width: 980px;
  margin: 0 auto;
  columns: 1;
  column-gap: 18px;
}

.review-card {
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.review-stars {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .08em;
  color: #000000;
}

.review-card h3 {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.2;
  letter-spacing: -.01em;
}

.review-meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: #777d8f;
}

.review-copy {
  position: relative;
  margin-top: 14px;
  color: #464b5c;
  font-size: 16px;
  line-height: 1.55;
}

.review-copy p {
  margin: 0;
}

.review-copy p+p {
  margin-top: 10px;
}

.reviews-cta {
  margin-top: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
}

body.js-animate .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .58s ease,
    transform .72s cubic-bezier(.18, .76, .26, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.js-animate .reveal-on-scroll[data-reveal="left"] {
  transform: translateX(-28px);
}

body.js-animate .reveal-on-scroll[data-reveal="right"] {
  transform: translateX(28px);
}

body.js-animate .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 760px) {
  .moments-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-wall {
    columns: 2;
    column-gap: 20px;
  }
}

@media (min-width: 980px) {
  .hero-home {
    padding-bottom: clamp(56px, 5.4vw, 96px);
  }

  .hero-visual {
    justify-self: center;
    margin-left: clamp(10px, 1.4vw, 24px);
  }

  .moments-strip {
    margin-top: clamp(-24px, -2.4vw, -14px);
    padding-top: clamp(38px, 4vw, 54px);
    padding-bottom: 30px;
  }

  .how-layout {
    grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
  }

  .how-media {
    justify-self: start;
    width: min(100%, 520px);
  }

  .how-preview {
    width: 100%;
  }

  .how-it-works {
    padding-top: 75px;
    padding-bottom: 100px;
  }

  .transform-section {
    padding-bottom: 40px;
  }

  .reviews-section {
    margin-top: 55px;
    padding-top: 54px;
    padding-bottom: 100px;
  }

  .reviews-wall {
    column-gap: 22px;
  }

  .review-card {
    padding: 28px 28px 24px;
  }

  .review-card h3 {
    font-size: 22px;
  }

  .review-meta {
    font-size: 15px;
  }

  .reviews-cta {
    margin-top: 50px;
  }
}

@media (max-width: 600px) {
  .transform-line {
    min-height: clamp(220px, 72vw, 320px);
    background-position: center, right top, 56% center;
  }

  .how-media {
    width: min(100%, 420px);
  }

  .reviews-heading {
    margin-bottom: 24px;
  }

  .review-stars {
    font-size: 20px;
  }

  .review-card {
    padding: 22px 20px;
  }

  .review-card h3 {
    font-size: clamp(20px, 6vw, 20px);
  }

  .review-copy {
    font-size: 15px;
  }
}

@media (min-width:1400px) {
  .device-mock {
    width: clamp(220px, 18vw, 320px);
  }

  .device-mock--slant {
    width: min(100%, clamp(400px, 34vw, 600px));
  }
}

@media (max-width:480px) {
  .device-mock {
    width: min(72vw, 300px);
  }

  .device-mock--slant {
    width: min(100%, 92vw, 390px);
    max-height: 68vh;
  }
}

#features {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: max(20px, calc((100vw - var(--container))/2));
  padding-right: max(20px, calc((100vw - var(--container))/2));
  padding-top: 64px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .98));
  border-top: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width:980px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  padding: 22px 18px 20px 58px;
  box-shadow: var(--shadow-card);
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
  border-color: rgba(0, 0, 0, .10);
  background: #fff;
}

.feature h3 {
  margin: 0 0 8px;
  letter-spacing: -.01em;
}

.feature p {
  margin: 0;
  color: #424556;
}

.feat-ico {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

.feat-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -------- Footer -------- */
footer {
  border-top: 1px solid rgba(0, 0, 0, .08);
  color: var(--muted);
  padding: 30px 20px 70px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding: 26px 0 16px;
}

.page h1 {
  font-size: clamp(28px, 5.2vw, 44px);
  margin: 0 0 6px;
  letter-spacing: -.01em;
  font-weight: 800;
}

.page .meta {
  font-size: 13px;
  color: var(--muted);
}

/* Headings inside content cards */
.page h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.page h3 {
  font-size: 16px;
  margin: 18px 0 6px;
  letter-spacing: -.01em;
}

.page .card h3 {
  margin: 25px 0 2px 0;
}

.page .card h3+p {
  margin-top: 2px;
}

.page .eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
  font-size: 11px;
  margin-bottom: 10px;
  opacity: .9;
}

.page .card {
  padding: 22px 20px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.page section.card+section.card {
  margin-top: 10px;
}

.page p,
.page li {
  color: #424556;
  font-size: 15px;
}

.page .card ul {
  padding-left: 1.2rem;
  margin: 10px 0 4px;
}

.page .card li {
  margin-bottom: 4px;
}

.page a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.page a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .page .card {
    padding: 18px 16px;
    margin-bottom: 16px;
  }

  .page h2 {
    font-size: 18px;
  }

  .page h3 {
    font-size: 15px;
  }


}

.section-tight {
  padding-top: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.section-sub {
  margin: 0;
  max-width: 62ch;
  color: #4e5162;
}

.home-blog-section {
  position: relative;
  z-index: 0;
  padding-top: 54px;
}

.home-blog-section::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 100vw;
  height: 78%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(230, 233, 240, .55) 0%, rgba(230, 233, 240, 0) 74%);
  z-index: -1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  body.js-animate .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.blog-hero {
  max-width: 840px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .blog-grid,
  .blog-grid--latest {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,255,.98));
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59, 111, 240, .10);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.blog-meta {
  font-size: 12px;
  color: #7a7d8e;
}

.blog-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.blog-card h3 a {
  color: var(--text);
}

.blog-card p {
  margin: 0;
  color: #4b5062;
}

.blog-link {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 800;
  color: var(--accent) !important;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.article-back {
  margin: 4px 0 16px;
}

.article-back a {
  color: #5a6277;
  font-weight: 700;
}

.article-header {
  margin-bottom: 18px;
}

.article-header h1 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
  margin: 14px 0 10px;
}

.article-body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.article-body p,
.article-body li {
  font-size: 16px;
  color: #3f4455;
}
