/* MyBud landing — static, responsive, production-friendly */
:root {
  --bg: #f6f9ff;
  --bg-2: #eef5ff;
  --card: rgba(255, 255, 255, .88);
  --text: #0f172a;
  --muted: #5b6b84;
  --muted-2: #7b8aa3;
  --line: rgba(37, 99, 235, .15);
  --blue: #2563eb;
  --blue-2: #0f5eea;
  --green: #16a34a;
  --green-2: #0f9f5f;
  --amber: #f59e0b;
  --shadow: 0 24px 80px rgba(15, 23, 42, .10);
  --shadow-soft: 0 18px 44px rgba(37, 99, 235, .11);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 5% 0%, rgba(37, 99, 235, .12), transparent 34%),
    radial-gradient(circle at 95% 12%, rgba(22, 163, 74, .10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 58%, #ffffff 100%);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input { font: inherit; }

.page-shell { min-height: 100vh; overflow: hidden; }
.section { max-width: var(--container); margin: 0 auto; padding: 78px 24px; }
.section--compact { padding-top: 54px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  max-width: calc(var(--container) + 48px);
  margin: 14px auto 0; padding: 12px 18px;
  display: flex; align-items: center; gap: 18px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(255, 255, 255, .80);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, .08);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; white-space: nowrap; }
.brand__icon {
  width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24);
}
.brand__icon img,
.brand__icon svg { width: 100%; height: 100%; object-fit: cover; }
.brand__text { font-size: 20px; }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; font-weight: 650; }
.site-nav a { display: inline-flex; align-items: center; font-family: var(--font); font-weight: 700; letter-spacing: 0; color: var(--muted); }
.site-nav a:hover { color: var(--blue); }
.site-nav a.is-active { color: var(--muted); position: relative; }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .55);
}
.header-actions { display: flex; align-items: center; gap: 10px; }

.mobile-menu { display: none; width: 42px; height: 42px; border: 0; background: #eef5ff; border-radius: 14px; padding: 10px; }
.mobile-menu span { display: block; height: 2px; background: #0f172a; margin: 5px 0; border-radius: 999px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 999px; padding: 12px 18px;
  font-weight: 850; letter-spacing: -.01em; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--blue), #0f62fe); box-shadow: 0 16px 34px rgba(37, 99, 235, .28); }
.btn--primary:hover { box-shadow: 0 20px 42px rgba(37, 99, 235, .36); }
.btn--secondary { color: #0f172a; background: rgba(255, 255, 255, .88); border: 1px solid rgba(37, 99, 235, .18); }
.btn--ghost { color: var(--muted); background: transparent; }
.btn--light { color: #0f172a; background: #fff; border: 1px solid rgba(255,255,255,.65); }
.btn--large { padding: 16px 22px; font-size: 16px; }
.btn--small { padding: 9px 14px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--plan { width: 100%; background: #0b1220; color: #fff; margin-top: auto; }

.hero {
  min-height: 760px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: 52px; align-items: center; padding-top: 72px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; color: var(--blue);
  background: rgba(37, 99, 235, .08); border: 1px solid rgba(37, 99, 235, .12);
  padding: 8px 12px; border-radius: 999px; font-weight: 850; font-size: 13px; letter-spacing: -.01em;
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(22, 163, 74, .12); }

.hero h1 { margin: 22px 0 18px; font-size: clamp(40px, 6vw, 74px); line-height: .96; letter-spacing: -.065em; }
.hero-heading-line { display: block; }
.hero__lead { max-width: 660px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-examples { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.hero-examples span { padding: 10px 14px; border-radius: 999px; background: rgba(15, 23, 42, .04); border: 1px solid rgba(148, 163, 184, .16); color: #20324d; font-weight: 760; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; color: #36506f; font-weight: 700; font-size: 14px; }
.trust-row span { padding: 9px 12px; background: rgba(255,255,255,.72); border: 1px solid rgba(148, 163, 184, .18); border-radius: 999px; }

.hero__visual { position: relative; min-height: 600px; }
.phone-card, .dashboard-card, .floating-note { background: rgba(255, 255, 255, .92); border: 1px solid rgba(148, 163, 184, .22); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.phone-card { width: min(340px, 90vw); border-radius: 38px; padding: 18px; position: absolute; left: 0; top: 34px; transform: rotate(-3deg); }
.phone-top { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.phone-top span { width: 12px; height: 12px; border-radius: 50%; background: var(--green); }
.chat { display: grid; gap: 12px; }
.bubble { padding: 14px 15px; border-radius: 20px; font-size: 14px; }
.bubble--user { margin-left: 28px; background: linear-gradient(135deg, #2563eb, #0f62fe); color: #fff; border-bottom-right-radius: 6px; }
.bubble--bot { margin-right: 20px; background: #f3f7ff; color: #172033; border-bottom-left-radius: 6px; }
.bubble p { margin: 7px 0; color: #40516a; }
.bubble em { color: var(--green); font-style: normal; font-weight: 800; }
.quick-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.quick-buttons span { background: #fff; border: 1px solid rgba(37, 99, 235, .16); color: var(--blue); padding: 9px 11px; border-radius: 999px; font-weight: 800; font-size: 12px; }

.dashboard-card { position: absolute; right: 0; top: 190px; width: min(440px, 94vw); border-radius: 30px; padding: 22px; transform: rotate(2deg); }
.dashboard-card__header { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.dashboard-card__header span, .stats-grid span { color: var(--muted-2); font-size: 13px; }
.dashboard-card__header strong { display: block; font-size: 23px; letter-spacing: -.03em; }
.dashboard-card__header small { background: rgba(22, 163, 74, .10); color: var(--green); padding: 7px 9px; border-radius: 999px; font-weight: 800; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stats-grid div { background: #f6f9ff; border: 1px solid rgba(37, 99, 235, .10); border-radius: 18px; padding: 14px; }
.stats-grid strong { display: block; margin-top: 5px; font-size: 22px; letter-spacing: -.04em; }
.chart-lines { height: 132px; display: flex; align-items: end; gap: 12px; padding: 20px 8px 4px; }
.chart-lines i { flex: 1; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, rgba(37,99,235,.9), rgba(37,99,235,.15)); }
.floating-note { position: absolute; right: 72px; bottom: 34px; max-width: 310px; border-radius: 22px; padding: 18px; }
.floating-note strong { display: block; margin-bottom: 5px; }
.floating-note span { color: var(--green); font-weight: 850; }

.promo-banner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 32px;
  border-radius: var(--radius);
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.35), transparent 28%), linear-gradient(135deg, #1d4ed8, #16a34a);
  color: #fff; box-shadow: var(--shadow-soft);
}
.promo-banner h2 { font-size: clamp(26px, 3vw, 38px); margin: 6px 0 8px; letter-spacing: -.04em; }
.promo-banner p { margin: 0; opacity: .88; max-width: 760px; }
.promo-banner mark { color: #0f172a; background: #fde68a; border-radius: 10px; padding: 0 7px; }
.promo-banner__label { display: inline-flex; font-size: 13px; font-weight: 850; opacity: .86; text-transform: uppercase; letter-spacing: .08em; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { margin: 14px 0 10px; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); font-size: 18px; margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { background: var(--card); border: 1px solid rgba(148, 163, 184, .20); border-radius: var(--radius-md); padding: 24px; box-shadow: 0 12px 36px rgba(15, 23, 42, .06); }
.feature-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 18px; background: #eef5ff; font-size: 24px; margin-bottom: 18px; }
.feature-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); }

.how { background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(239,246,255,.5)); border-radius: 36px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { background: #fff; border: 1px solid rgba(37, 99, 235, .13); border-radius: var(--radius-md); padding: 26px; }
.steps span { display: grid; place-items: center; width: 42px; height: 42px; background: linear-gradient(135deg, var(--blue), #16a34a); color: #fff; font-weight: 900; border-radius: 16px; margin-bottom: 18px; }
.steps h3 { margin: 0 0 8px; font-size: 22px; }
.steps p { margin: 0; color: var(--muted); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { background: rgba(255,255,255,.92); border: 1px solid rgba(148, 163, 184, .20); border-radius: var(--radius-md); padding: 26px; box-shadow: 0 12px 36px rgba(15, 23, 42, .05); }
.audience-card h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.audience-card p { margin: 0; color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 660px; background: rgba(255,255,255,.94); border: 1px solid rgba(148, 163, 184, .24); border-radius: 28px; padding: 26px; box-shadow: 0 18px 46px rgba(15, 23, 42, .07); }
.price-card--popular { border-color: rgba(37, 99, 235, .7); box-shadow: 0 24px 70px rgba(37, 99, 235, .16); }
.popular-badge { position: absolute; top: 0; left: 24px; right: 24px; transform: translateY(-50%); background: linear-gradient(135deg, #2563eb, #0f62fe); color: #fff; border-radius: 999px; padding: 8px 12px; text-align: center; font-size: 13px; font-weight: 900; }
.price-card__top { display: flex; align-items: flex-start; gap: 16px; }
.plan-icon { flex: 0 0 auto; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 22px; font-size: 26px; }
.plan-icon--start { background: #eef5ff; }
.plan-icon--pro { background: #eaf1ff; color: var(--blue); }
.plan-icon--family { background: #eafaf1; }
.price-card h3 { margin: 0 0 7px; font-size: 25px; letter-spacing: -.04em; }
.price-card p { margin: 0; color: var(--muted); }
.price { margin: 30px 0 18px; font-size: 42px; font-weight: 950; letter-spacing: -.055em; }
.price span { color: var(--muted); font-size: 20px; letter-spacing: -.02em; }
.price-card__trial { margin: -4px 0 18px !important; padding: 14px 16px; border: 1px solid rgba(37, 99, 235, .18); border-radius: 18px; background: rgba(37, 99, 235, .07); color: #214674 !important; font-weight: 760; line-height: 1.5; }
.price-card ul { list-style: none; padding: 20px 0 24px; margin: 0; border-top: 1px solid rgba(148, 163, 184, .20); display: grid; gap: 12px; }
.price-card li { position: relative; padding-left: 30px; color: #24344d; }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; display: grid; place-items: center; background: rgba(37, 99, 235, .12); color: var(--blue); border-radius: 50%; font-size: 12px; font-weight: 900; }
.price-card:nth-child(3) li::before { background: rgba(22, 163, 74, .12); color: var(--green); }
.pricing-note { text-align: center; color: var(--muted); margin: 22px 0 0; }

.security-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; background: #0b1220; color: #fff; border-radius: 34px; padding: 36px; box-shadow: var(--shadow); }
.security-card .eyebrow { color: #bfdbfe; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.security-card h2 { margin: 16px 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.05em; }
.security-card p { color: rgba(255,255,255,.72); margin: 0; }
.security-list { display: grid; gap: 12px; }
.security-list span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 14px 16px; border-radius: 16px; color: rgba(255,255,255,.88); font-weight: 760; }

.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid rgba(148, 163, 184, .22); border-radius: 20px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--muted); margin: 12px 0 0; }

.blog-preview__grid,
.blog-listing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.blog-card { background: rgba(255,255,255,.94); border: 1px solid rgba(148, 163, 184, .20); border-radius: 24px; box-shadow: 0 14px 38px rgba(15, 23, 42, .06); }
.blog-card__link { display: block; height: 100%; padding: 24px; }
.blog-card__cover { margin: -24px -24px 20px; border-radius: 24px 24px 0 0; overflow: hidden; background: #eef4ff; border-bottom: 1px solid rgba(148, 163, 184, .16); }
.blog-card__cover img { width: 100%; height: 220px; display: block; object-fit: cover; }
.blog-card__meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted-2); font-size: 13px; font-weight: 780; text-transform: uppercase; letter-spacing: .04em; }
.blog-card h2,
.blog-card h3 { margin: 16px 0 12px; font-size: 24px; line-height: 1.1; letter-spacing: -.04em; }
.blog-card p { margin: 0; color: var(--muted); }
.blog-card__cta { display: inline-flex; margin-top: 18px; color: var(--blue); font-weight: 860; }
.blog-preview__actions { display: flex; justify-content: center; margin-top: 22px; }
.blog-empty { padding: 28px; background: rgba(255,255,255,.92); border: 1px solid rgba(148, 163, 184, .20); border-radius: 24px; }
.blog-empty h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.04em; }
.blog-empty p { margin: 0; color: var(--muted); }

.final-cta { text-align: center; background: radial-gradient(circle at 25% 15%, rgba(37, 99, 235, .16), transparent 34%), radial-gradient(circle at 80% 80%, rgba(22, 163, 74, .14), transparent 32%), #fff; border: 1px solid rgba(148, 163, 184, .18); border-radius: 38px; box-shadow: var(--shadow-soft); padding: 56px 24px; margin-bottom: 72px; }
.final-cta h2 { margin: 0 0 10px; font-size: clamp(32px, 4vw, 54px); letter-spacing: -.055em; }
.final-cta p { margin: 0 auto 24px; max-width: 680px; color: var(--muted); font-size: 18px; }
.final-cta .hero-actions { justify-content: center; }

.site-footer { max-width: calc(var(--container) + 48px); margin: 0 auto 24px; padding: 36px 24px 24px; border-radius: 34px; background: #0b1220; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.1fr; gap: 28px; }
.brand--footer .brand__icon { width: 34px; height: 34px; }
.site-footer p, .site-footer a, .footer-bottom { color: rgba(255,255,255,.70); }
.site-footer h3 { margin: 0 0 12px; color: #fff; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer a:hover { color: #fff; }
.social-links-wrap { margin-top: 18px; }
.social-links-wrap h3 { margin: 0 0 12px; }
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.social-link:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.social-link__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
}
.social-link__asset {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  padding: 0;
}
.social-link__icon img,
.social-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.social-link__letter {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #37aee2, #1e96c8);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}
.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;
}
.requisites p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }

.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; max-width: 920px; margin: 0 auto; display: flex; align-items: center; gap: 18px; justify-content: space-between; padding: 14px 16px; background: rgba(11, 18, 32, .95); color: #fff; border: 1px solid rgba(255,255,255,.10); border-radius: 20px; box-shadow: 0 24px 80px rgba(0,0,0,.24); }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.82); }
.cookie-banner div { display: flex; gap: 12px; align-items: center; }
.cookie-banner a { color: #bfdbfe; font-weight: 850; white-space: nowrap; }

.legal-page { max-width: 920px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-page h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -.05em; }
.legal-page h2 { margin-top: 34px; }
.legal-page p, .legal-page li { color: #46576f; }
.legal-page .note { padding: 18px; border: 1px solid rgba(37, 99, 235, .20); background: rgba(37, 99, 235, .07); border-radius: 18px; color: #23446f; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; color: var(--muted-2); font-weight: 760; }
.breadcrumbs > * + * { position: relative; padding-left: 18px; }
.breadcrumbs > * + *::before { content: "→"; position: absolute; left: 0; color: var(--muted-2); }
.breadcrumbs a { color: var(--blue); }
.breadcrumbs span:last-child { color: var(--muted); }

.blog-hero__heading,
.article-shell { max-width: 980px; }
.article-shell--wide { max-width: 1220px; }
.blog-hero { padding-bottom: 16px; }
.blog-hero__heading { margin-bottom: 0; }
.blog-listing { padding-top: 10px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.article-date { color: var(--muted); font-weight: 760; }
.article-hero h1 { margin: 0 0 18px; max-width: none; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.06em; }
.article-lead { margin: 0; max-width: none; color: var(--muted); font-size: 22px; line-height: 1.58; }
.article-cover-section { padding-top: 0; }
.article-cover { width: 100%; height: auto; max-height: 760px; border-radius: 28px; border: 1px solid rgba(148, 163, 184, .18); box-shadow: 0 18px 52px rgba(15, 23, 42, .08); object-fit: contain; display: block; background: #eef4ff; }
.article-content-wrap { padding-top: 14px; }
.article-page-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
.article-page-grid--wide { max-width: 1220px; grid-template-columns: 1fr; }
.article-body { min-width: 0; background: rgba(255,255,255,.92); border: 1px solid rgba(148, 163, 184, .20); border-radius: 28px; padding: 50px 56px; box-shadow: 0 16px 44px rgba(15, 23, 42, .05); }
.article-content { color: #304157; }
.article-content > *:first-child { margin-top: 0; }
.article-content p { margin: 0 0 22px; color: #304157; font-size: 19px; line-height: 1.78; }
.article-content h2,
.article-content h3,
.article-content h4 { margin: 46px 0 16px; color: #0f172a; letter-spacing: -.045em; line-height: 1.14; }
.article-content h2 { font-size: clamp(30px, 3vw, 38px); }
.article-content h3 { font-size: clamp(24px, 2.2vw, 30px); }
.article-content h4 { font-size: 22px; }
.article-content ul,
.article-content ol { margin: 0 0 24px 26px; padding: 0; }
.article-content li { margin: 0 0 10px; font-size: 19px; line-height: 1.72; color: #304157; }
.article-content strong,
.article-content b { color: #0f172a; font-weight: 860; }
.article-content a { color: var(--blue); font-weight: 720; text-decoration: none; }
.article-content a:hover { text-decoration: underline; }
.article-content blockquote { margin: 32px 0; padding: 20px 24px; border-left: 4px solid var(--blue); border-radius: 18px; background: rgba(37, 99, 235, .06); color: #173459; }
.article-content hr { margin: 34px 0; border: 0; border-top: 1px solid rgba(148, 163, 184, .26); }
.article-content figure { margin: 30px 0; }
.article-content img { width: 100%; height: auto; display: block; border-radius: 22px; border: 1px solid rgba(148, 163, 184, .18); }
.article-content figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.article-content pre,
.article-content code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.article-content pre { margin: 26px 0; padding: 18px 20px; overflow-x: auto; border-radius: 18px; background: #0f172a; color: #e2e8f0; }
.article-content code { padding: .08em .35em; border-radius: 8px; background: rgba(148, 163, 184, .16); color: #16355e; }
.article-content pre code { padding: 0; background: transparent; color: inherit; }
.article-content table { width: 100%; margin: 28px 0; border-collapse: collapse; display: block; overflow-x: auto; }
.article-content th,
.article-content td { min-width: 120px; padding: 12px 14px; border: 1px solid rgba(148, 163, 184, .22); text-align: left; font-size: 16px; line-height: 1.5; }
.article-content th { background: rgba(246, 249, 255, .94); color: #0f172a; font-weight: 780; }
.article-sidecard { background: rgba(255,255,255,.92); border: 1px solid rgba(148, 163, 184, .18); border-radius: 24px; padding: 22px; box-shadow: 0 14px 36px rgba(15, 23, 42, .05); }
.article-sidecard h2 { margin: 0 0 14px; font-size: 24px; letter-spacing: -.04em; }
.article-sidecard p { margin: 0; color: var(--muted); }
.article-sidecard--cta p { margin: 0 0 24px; line-height: 1.6; }
.article-sidecard--cta .btn { margin-top: 0; }
.article-support-section { padding-top: 6px; }
.article-bottom-grid { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 22px; align-items: start; }
.article-related-list { display: grid; gap: 12px; }
.article-related-link { display: grid; gap: 6px; padding: 14px; border-radius: 18px; background: rgba(246,249,255,.95); border: 1px solid rgba(148, 163, 184, .16); }
.article-related-link strong { font-size: 16px; letter-spacing: -.02em; }
.article-related-link span { color: var(--muted); font-size: 14px; }
.article-related-date { color: var(--muted-2) !important; font-size: 12px !important; text-transform: uppercase; letter-spacing: .04em; font-weight: 800; }
.article-related-link--utility { gap: 2px; }
.article-related-link--utility strong { font-size: 15px; }
.article-sidecard__empty { color: var(--muted); font-size: 15px; line-height: 1.6; }
.article-cta { background: radial-gradient(circle at 20% 10%, rgba(37, 99, 235, .12), transparent 30%), #fff; border: 1px solid rgba(148, 163, 184, .18); border-radius: 28px; padding: 34px; box-shadow: 0 16px 44px rgba(15, 23, 42, .05); text-align: left; }
.article-cta h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.05em; }
.article-cta p { margin: 0 0 22px; color: var(--muted); font-size: 18px; }

@media (max-width: 1020px) {
  .site-nav, .header-actions { display: none; }
  .mobile-menu { display: block; margin-left: auto; }
  .site-header.is-open { display: grid; grid-template-columns: 1fr auto; border-radius: 28px; }
  .site-header.is-open .brand { grid-column: 1; grid-row: 1; }
  .site-header.is-open .mobile-menu { grid-column: 2; grid-row: 1; align-self: start; justify-self: end; margin-left: 0; }
  .site-header.is-open .site-nav, .site-header.is-open .header-actions { display: flex; grid-column: 1 / -1; flex-direction: column; align-items: stretch; margin: 0; gap: 8px; }
  .site-header.is-open .site-nav a { padding: 12px; border-radius: 14px; background: #f5f8ff; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { min-height: 620px; }
  .phone-card { left: 0; }
  .dashboard-card { right: 0; }
  .features-grid, .steps, .pricing-grid, .footer-grid, .audience-grid, .blog-preview__grid, .blog-listing__grid { grid-template-columns: 1fr 1fr; }
  .security-card { grid-template-columns: 1fr; }
  .article-page-grid { grid-template-columns: 1fr; }
  .article-bottom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 54px 16px; }
  .site-header { margin: 8px 10px 0; padding: 10px 12px; }
  .brand__text { font-size: 18px; }
  .hero { padding-top: 52px; gap: 26px; }
  .hero h1 { font-size: 42px; }
  .hero__lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-examples { gap: 8px; }
  .hero__visual { min-height: auto; display: grid; gap: 16px; }
  .phone-card, .dashboard-card, .floating-note { position: static; width: 100%; transform: none; }
  .floating-note { max-width: none; }
  .dashboard-card__header { flex-direction: column; }
  .promo-banner { flex-direction: column; align-items: flex-start; }
  .promo-banner .btn { width: 100%; }
  .features-grid, .footer-grid, .audience-grid, .blog-listing__grid { grid-template-columns: 1fr; }
  .how .steps,
  .pricing .pricing-grid,
  .blog-preview .blog-preview__grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 48px);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 2px 2px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .how .steps::-webkit-scrollbar,
  .pricing .pricing-grid::-webkit-scrollbar,
  .blog-preview .blog-preview__grid::-webkit-scrollbar {
    display: none;
  }
  .how .steps > article,
  .pricing .pricing-grid > .price-card,
  .blog-preview .blog-preview__grid > .blog-card,
  .blog-preview .blog-preview__grid > .blog-empty {
    scroll-snap-align: start;
  }
  .blog-card__link { padding: 20px; }
  .blog-card__cover { margin: -20px -20px 16px; }
  .blog-card__cover img { height: 200px; }
  .blog-card h2,
  .blog-card h3 { margin: 14px 0 10px; font-size: 18px; line-height: 1.14; }
  .blog-card__meta { font-size: 11px; }
  .blog-hero { padding-bottom: 4px; }
  .blog-listing { padding-top: 0; }
  .article-hero h1 { font-size: 34px; line-height: 1.06; }
  .article-lead { font-size: 18px; }
  .article-cover { border-radius: 20px; }
  .article-content p,
  .article-content li { font-size: 17px; }
  .article-content h2 { font-size: 28px; }
  .article-content h3 { font-size: 23px; }
  .price-card { min-height: auto; }
  .footer-bottom { flex-direction: column; }
  .social-links { gap: 12px; }
  .social-link {
    width: 56px;
    height: 56px;
  }
  .social-link__icon {
    width: 42px;
    height: 42px;
  }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner div { justify-content: space-between; }
  .article-body,
  .article-cta,
  .article-sidecard { padding: 22px; }
}


/* Fix: the hidden attribute must override the cookie banner flex display */
.cookie-banner[hidden] {
  display: none !important;
}


.access-note {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(37, 99, 235, .14);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.access-note h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.access-note p {
  margin: 0;
  color: var(--muted);
}
