/* AMV MKT — landing styles */

:root {
  --brand: #339fac;
  --brand-strong: #257e8a;
  --brand-soft: rgba(51, 159, 172, 0.14);
  --brand-glow: rgba(51, 159, 172, 0.28);

  --bg: #0B0B12;
  --bg-2: #11111B;
  --bg-3: #161622;
  --bg-card: #14141E;
  --bg-card-2: #191924;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #ECEAF3;
  --text-2: #B5B1C4;
  --text-3: #7B7790;
  --good: #5EE0A1;
  --good-soft: rgba(94, 224, 161, 0.14);
  --bad: #F47A8E;
  --bad-soft: rgba(244, 122, 142, 0.14);
  --warn: #F0B73A;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  --container: 1200px;

  --font-sans: "Geist", "Inter Tight", system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --font-display: "Geist", "Inter Tight", sans-serif;
}

[data-theme="light"], .section-light {
  --bg: #F6F4EE;
  --bg-2: #ECE9DF;
  --bg-3: #E2DED1;
  --bg-card: #FFFFFF;
  --bg-card-2: #F6F4EE;
  --line: rgba(20, 19, 26, 0.10);
  --line-2: rgba(20, 19, 26, 0.18);
  --text: #14131A;
  --text-2: #4A4858;
  --text-3: #80798F;
  --good: #2F9D6A;
  --good-soft: rgba(47, 157, 106, 0.14);
  --bad: #C84A60;
  --bad-soft: rgba(200, 74, 96, 0.10);
  --brand-soft: rgba(51, 159, 172, 0.10);
  --brand-glow: rgba(51, 159, 172, 0.18);
}

[data-font-pair="editorial"] {
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans: "Geist", "Inter Tight", sans-serif;
}
[data-font-pair="tech"] {
  --font-display: "Space Grotesk", sans-serif;
  --font-sans: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  letter-spacing: -0.01em;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), 0 4px 14px var(--brand-soft);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-primary:hover { 
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), 0 6px 20px var(--brand-glow); 
  transform: translateY(-2px);
}
.btn-primary:hover::after { transform: rotate(45deg) translateY(100%); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-outline:hover { background: var(--bg-card); border-color: var(--brand); color: var(--brand); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover { color: var(--text); background: var(--bg-card); }
.btn-sm { font-size: 14px; padding: 9px 16px; }
.btn-xl { font-size: 16px; padding: 16px 28px; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: backdrop-filter 0.25s, background 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.nav-brand-text b { font-weight: 700; }
.brand-mark { transition: transform 0.4s; }
.nav-brand:hover .brand-mark { transform: rotate(-6deg); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--text); background: var(--bg-card-2); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-toggle button {
  border: 0; background: transparent;
  color: var(--text-3);
  font-size: 12px; font-weight: 600;
  padding: 6px 11px; border-radius: 999px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.lang-toggle button.is-active {
  background: var(--text);
  color: var(--bg);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 120px 0 32px;
  overflow: hidden;
}
.dotted-surface {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  background-image: radial-gradient(circle, rgba(51,159,172,0.6) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  animation: dotsDrift 20s linear infinite;
}
[data-theme="light"] .dotted-surface {
  opacity: 0.3;
  background-image: radial-gradient(circle, rgba(51,159,172,0.4) 1.5px, transparent 1.5px);
}
@keyframes dotsDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 36px 36px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 18px 0 22px;
}
[data-font-pair="editorial"] .hero-h1 { font-weight: 400; letter-spacing: -0.025em; font-style: italic; }
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  animation: heroLine 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-line:nth-child(2) { color: var(--text-2); }
.hero-line:nth-child(3) { color: var(--brand); }
@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 0 28px;
  text-wrap: pretty;
  line-height: 1.55;
}

.hero-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .hero-cta-box {
  background: #fff;
  box-shadow: 0 12px 24px rgba(20, 19, 26, 0.08);
}
.hero-cta-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hero-cta-sub {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

/* ─── HERO VISUAL ─── */
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding-top: 20px;
}

.hv-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  width: 100%;
}
[data-theme="light"] .hv-card {
  background: #fff;
  box-shadow: 0 12px 24px rgba(20, 19, 26, 0.08);
}
.hv-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.hv-card-tag {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-3);
}
.hv-card-url {
  font-size: 13px; color: var(--text); font-weight: 500; margin-top: 2px;
}
.hv-card-meta { display: flex; flex-direction: column; gap: 0; }
.hv-card-pill {
  font-family: var(--font-mono); font-size: 11px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 9px; border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hv-pill-good { background: var(--good-soft); color: var(--good); }
.hv-pill-good .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hv-gauge-card {
  width: 100%;
  max-width: 440px;
  align-self: flex-start;
}
.hv-gauge-row { display: flex; gap: 18px; align-items: center; }
.hv-gauge-bars { flex: 1; }

.ps-gauge { position: relative; flex-shrink: 0; }
.ps-gauge-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ps-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}
.ps-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-top: 2px;
}

.mini-bars { display: flex; flex-direction: column; gap: 7px; }
.mb-row { display: grid; grid-template-columns: 32px 1fr 22px; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; }
.mb-label { color: var(--text-3); letter-spacing: 0.06em; }
.mb-track { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.mb-fill { height: 100%; border-radius: 2px; transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.mb-val { color: var(--text); font-weight: 600; text-align: right; }

.hv-browser-card {
  width: 100%;
  max-width: 440px;
  align-self: flex-end;
  padding: 0;
  overflow: hidden;
  margin-top: -8px;
}
.hv-browser-card .browser { border: 0; box-shadow: none; background: transparent; }
.hv-browser-foot {
  display: flex; gap: 14px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}
.hv-foot-stat b { color: var(--text); font-weight: 600; margin-right: 3px; }

.hv-term-card {
  width: 100%;
  max-width: 440px;
  align-self: flex-start;
  padding: 0;
  overflow: hidden;
  margin-top: -8px;
}
.hv-term-card .terminal { border: 0; box-shadow: none; }

.hv-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--text);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  z-index: 4;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}
.hv-chip-1 { display: none; }
.hv-chip-2 { display: none; }
.hv-chip-num { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Browser chrome */
.browser {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.browser-dots span:first-child { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-2);
  background: var(--bg);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: 220px;
}
.browser-spacer { width: 30px; }
.browser-body { padding: 16px; min-height: 80px; }
.browser-dense .browser-bar { padding: 8px 10px; }
.browser-dense .browser-body { padding: 14px; }

.bp-content { display: flex; flex-direction: column; gap: 8px; }
.bp-row { height: 8px; border-radius: 4px; background: var(--line); }
.bp-row-1 { width: 60%; height: 14px; background: var(--brand-soft); }
.bp-row-2 { width: 80%; }
.bp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 6px; }
.bp-tile { height: 38px; background: var(--line); border-radius: 6px; }
.bp-tile:nth-child(2) { background: var(--brand-soft); }

/* Terminal */
.terminal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-family: var(--font-mono);
}
.terminal-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.terminal-dots { display: flex; gap: 4px; }
.terminal-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.terminal-title { font-size: 10.5px; color: var(--text-3); letter-spacing: 0.06em; }
.terminal-body { padding: 12px 14px; font-size: 11.5px; line-height: 1.7; color: var(--text-2); }
.tl { display: flex; align-items: baseline; gap: 8px; }
.tl-prompt { color: var(--brand); font-weight: 700; }
.tl-ok { color: var(--good); font-weight: 700; }
.tl-warn { color: var(--warn); }
.tl-text { flex: 1; color: var(--text-2); }
.tl-val { color: var(--good); font-weight: 600; }
.tl-in .tl-text { color: var(--text); }

/* ─── PROOF STRIP ─── */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  padding: 32px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.proof-item {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.proof-flag { font-size: 40px; }
.proof-label { font-size: 14px; color: var(--text); margin-top: 8px; font-weight: 500; }
.proof-sub { font-size: 12.5px; color: var(--text-3); margin-top: 4px; line-height: 1.45; }

@media (max-width: 880px) {
  .proof-strip { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .proof-item { border-right: 0; }
  .proof-item:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ─── SECTIONS ─── */
.section { padding: 110px 0; position: relative; }
.section-light { color: var(--text); }
.section-pain { background: var(--bg); }
.section-method { background: var(--bg-2); }
.section-pricing { background: var(--bg); }
.section-obj { background: var(--bg-2); }
.section-faq { background: var(--bg); }
.section-final { background: var(--bg-2); }

.section-head {
  max-width: 720px;
  margin: 0 0 60px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-wrap: pretty;
}
[data-font-pair="editorial"] .section-title { font-weight: 400; font-style: italic; letter-spacing: -0.02em; }
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  margin: 0;
  max-width: 620px;
  text-wrap: pretty;
  line-height: 1.55;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 24px));
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-in { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ─── PAIN ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
}
.pain-card {
  padding: 32px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
}
.pain-card:hover { 
  border-top-color: var(--brand);
  transform: translateY(-4px);
}
.pain-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.pain-t {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pain-d { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }

@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ─── METHOD ─── */
.method-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.method-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.method-row:last-child { border-bottom: 1px solid var(--line); }
.method-n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  letter-spacing: 0.06em;
  font-weight: 600;
  padding-top: 4px;
}
.method-t {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.method-d { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }
.method-meter {
  grid-column: 1 / -1;
  height: 2px; background: var(--line);
  margin-top: 16px;
  overflow: hidden;
}
.method-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-strong));
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.method-vis {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.method-card-1, .method-card-2, .method-card-3 { position: relative; }
.method-vis .hv-card { position: relative; }

.pill {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.pill-bad { background: var(--bad-soft); color: var(--bad); }
.pill-good { background: var(--good-soft); color: var(--good); }

.speed-bar {
  height: 6px; background: var(--line); border-radius: 3px; overflow: hidden;
  margin: 14px 0 10px;
}
.speed-fill { height: 100%; border-radius: 3px; transition: width 1.2s; }
.speed-fill-bad { background: linear-gradient(90deg, var(--warn), var(--bad)); }
.speed-fill-good { background: linear-gradient(90deg, var(--brand), var(--good)); }
.hv-card-foot { font-size: 12.5px; color: var(--text-3); }

.codebox {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 14px 16px;
  line-height: 1.9;
  color: var(--text-2);
}
.code-key { color: var(--brand); }
.code-str { color: var(--good); }

@media (max-width: 880px) {
  .method-grid { grid-template-columns: 1fr; gap: 40px; }
  .method-vis { position: static; }
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pkg {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.pkg > * { position: relative; z-index: 1; }
.pkg:hover {
  border-color: var(--line-2);
  background: var(--bg-card-2);
}
.pkg-active { border-color: var(--line-2); }
.pkg-highlight {
  background: var(--bg-card-2);
  border-color: var(--brand);
}
.pkg-highlight.pkg-active { border-color: var(--brand-strong); }
.pkg-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.pkg-tag {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pkg-for {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 42px;
}
.pkg-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.pkg-from { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: 0.04em; }
.pkg-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.pkg-time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.pkg-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.pkg-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.pkg-check {
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}
.pkg-cta { width: 100%; justify-content: center; }

.addons {
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.addons-title { font-size: 13.5px; color: var(--text-2); font-weight: 500; }
.addons-row { display: flex; gap: 8px; flex-wrap: wrap; }
.addon-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── OBJECTIONS ─── */
.obj-list { display: flex; flex-direction: column; gap: 0; }
.obj-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.obj-row:last-child { border-bottom: 1px solid var(--line); }
.obj-q {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  position: relative;
}
[data-font-pair="editorial"] .obj-q { font-style: italic; font-weight: 400; }
.obj-q-mark {
  font-size: 56px;
  color: var(--brand);
  font-family: var(--font-display);
  line-height: 0.6;
  margin-right: 4px;
  vertical-align: -8px;
  font-weight: 600;
}
.obj-a {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  text-wrap: pretty;
}

@media (max-width: 880px) {
  .obj-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  transition: border-color 0.3s;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-open { border-color: var(--line-2); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent; border: 0;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background 0.3s, border-color 0.3s;
}
.faq-open .faq-icon { background: var(--brand); border-color: var(--brand); color: #fff; }
.faq-bar-v { transition: opacity 0.3s; transform-origin: center; }
.faq-open .faq-bar-v { opacity: 0; }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.6;
  padding-right: 60px;
  max-width: 760px;
}
.faq-open .faq-a {
  padding-bottom: 24px;
}

/* ─── FINAL CTA ─── */
.final-wrap {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  margin-bottom: 40px;
}
.final-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: pretty;
}
[data-font-pair="editorial"] .final-title { font-style: italic; font-weight: 400; }
.final-lines { display: flex; flex-direction: column; gap: 14px; }
.final-line { font-size: 15.5px; color: var(--text-2); margin: 0; line-height: 1.55; }
.final-kicker {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--brand);
  margin: 8px 0 0;
  letter-spacing: -0.015em;
}

.final-cta-block {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.ps-block {
  position: relative;
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.ps-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.ps-block p { font-size: 14.5px; color: var(--text-2); margin: 0 0 10px; line-height: 1.6; }
.ps-block p:last-child { margin: 0; }

@media (max-width: 880px) {
  .final-wrap { padding: 32px 24px; }
  .final-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s;
}
.portfolio-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}
.portfolio-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.portfolio-card:hover .portfolio-img { transform: scale(1.04) translateY(-2%); }
.portfolio-url-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(11,11,18,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio-url-badge:hover { color: var(--brand); border-color: var(--brand); }
[data-theme="light"] .portfolio-url-badge { background: rgba(246,244,238,0.88); border-color: rgba(20,19,26,0.12); }
.portfolio-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 10px;
}
.portfolio-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px; line-height: 1.2;
}
.portfolio-desc {
  font-size: 14.5px; color: var(--text-2);
  line-height: 1.6; margin: 0 0 18px; flex: 1;
  text-wrap: pretty;
}
.portfolio-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.portfolio-chip {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-3); background: var(--bg-3);
  border: 1px solid var(--line); padding: 4px 10px;
  border-radius: 999px; letter-spacing: 0.02em;
}
.portfolio-cta-strip {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius); margin-top: 8px;
}
.portfolio-cta-strip p {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--text); margin: 0;
}
@media (max-width: 880px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-cta-strip { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.footer-tag { font-size: 13.5px; color: var(--text-3); margin: 8px 0 0; max-width: 360px; line-height: 1.5; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--text-2); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-copy { font-size: 13px; color: var(--text-3); font-family: var(--font-mono); }

@media (max-width: 760px) {
  .footer-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: color-mix(in oklab, #000 60%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text); border-color: var(--line-2); }
.modal-head { margin-bottom: 24px; }
.modal-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 14px 0 6px;
}
.modal-sub { font-size: 14.5px; color: var(--text-2); margin: 0; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ff { display: flex; flex-direction: column; gap: 6px; }
.ff > span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.ff input, .ff textarea {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ff input:focus, .ff textarea:focus { border-color: var(--brand); background: var(--bg-card-2); }
.ff textarea { resize: vertical; }
.pkg-radio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.pkg-radio button {
  font-family: var(--font-sans);
  font-size: 13px;
  background: var(--bg-card);
  color: var(--text-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 10px 8px;
  transition: all 0.2s;
}
.pkg-radio button.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.ff-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.5; cursor: pointer; }
.ff-check input { width: 16px; height: 16px; accent-color: var(--brand); margin-top: 2px; flex-shrink: 0; }
.modal-sent { text-align: center; padding: 20px 0; }
.modal-sent-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}

@media (max-width: 540px) {
  .modal { padding: 24px; }
  .ff-row { grid-template-columns: 1fr; }
  .pkg-radio { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stack { height: auto; }
  .hv-gauge-card { width: 100%; }
  .hv-browser-card { width: 100%; }
  .hv-term-card { width: 100%; }
}

/* ─── HERO RESPONSIVE FIX ─── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stack { height: auto; max-width: 540px; margin: 0 auto; }
}

/* Sparkline */
.sparkline { color: var(--brand); }

/* ─── FLOATING ACTION BUTTONS (Back to Top + WhatsApp) ─── */
#floating-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}

#floating-btns.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.float-btn.back-top {
  background: var(--bg-card-2);
  color: var(--text);
  border: 1px solid var(--line);
}

.float-btn.back-top:hover {
  background: var(--bg-3);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-wpp 2s infinite;
  opacity: 0;
}

@keyframes pulse-wpp {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 760px) {
  #floating-btns {
    right: 16px;
    bottom: 16px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 880px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── ADDED FOR VANILLA MIGRATION & USABILITY ─── */

/* Smooth theme transitions */
body, section, div, p, h1, h2, h3, nav, a, button, input, textarea, span {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, fill 0.3s ease;
}

/* Objections Accordion */
.obj-item {
  border-top: 1px solid var(--line);
  transition: border-color 0.3s;
}
.obj-item:last-child {
  border-bottom: 1px solid var(--line);
}
.obj-open {
  border-color: var(--line-2);
}
.obj-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.obj-q:hover {
  color: var(--brand);
}
.obj-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background 0.3s, border-color 0.3s;
  color: var(--text);
}
.obj-open .obj-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.obj-bar-v {
  transition: opacity 0.3s;
  transform-origin: center;
}
.obj-open .obj-bar-v {
  opacity: 0;
}
.obj-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.obj-open .obj-a-wrap {
  grid-template-rows: 1fr;
}
.obj-a {
  overflow: hidden;
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.6;
  padding-right: 60px;
  max-width: 760px;
}
.obj-open .obj-a {
  padding-bottom: 24px;
}

/* Negrito Escaneável de alta legibilidade */
.obj-a strong, .faq-a strong, .section-sub strong, .hero-sub strong, .final-line strong {
  font-weight: 600;
  color: var(--text);
}

/* Active navigation link indicator */
.nav-links a.active {
  color: var(--text);
  background: var(--bg-card-2);
}

/* ─── TWEAKS PANEL ─── */
.tweaks-toggle {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s, color 0.2s, background-color 0.2s;
}
.tweaks-toggle:hover {
  transform: rotate(30deg) translateY(-2px);
  color: var(--brand);
  background: var(--bg-3);
}

.tweaks-panel {
  position: fixed;
  left: -320px;
  bottom: 84px;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 95;
  transition: left 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tweaks-panel.is-open {
  left: 24px;
}
.tweak-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.tweak-options {
  display: flex;
  gap: 6px;
}
.tweak-options button {
  flex: 1;
  font-size: 12.5px;
  background: var(--bg-3);
  color: var(--text-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 8px;
  transition: all 0.2s;
}
.tweak-options button.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

@media (max-width: 760px) {
  .tweaks-toggle {
    left: 16px;
    bottom: 74px; /* Stack above WhatsApp float btn */
    width: 44px;
    height: 44px;
  }
  .tweaks-panel {
    bottom: 128px;
  }
  .tweaks-panel.is-open {
    left: 16px;
  }
}

/* ─── ARTICLES LIST GRID ─── */
.articles-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.article-card-preview {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card-preview:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .article-card-preview:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.article-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.article-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card-title a:hover {
  color: var(--brand);
}

.article-card-excerpt {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.article-card-link {
  color: var(--brand);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.article-card-link:hover {
  gap: 8px;
  text-decoration: underline;
}

@media (max-width: 880px) {
  .articles-list-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .article-card-preview {
    padding: 32px;
  }
}

/* Article card image preview styles */
.article-card-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.article-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.article-card-preview:hover .article-card-img {
  transform: scale(1.04);
}




