/* Mihenk Landing — base reset & theme tokens */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --bg: #0A0E14;
  --bg-elev: #0D1117;
  --surface: #131922;
  --surface-light: #1C2333;
  --border: #1F2630;
  --border-light: #2B3340;

  --text: #F0F6FC;
  --text-secondary: #9AA4B2;
  --text-tertiary: #6E7681;

  --primary: #2EA043;
  --primary-light: #3FB950;
  --primary-dark: #238636;

  --accent: #D4A84B;
  --accent-light: #E8C468;
  --accent-dark: #B8922F;

  --success: #2EA043;
  --error: #F85149;
  --info: #58A6FF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 32px;
  --space-4xl: 48px;
  --space-5xl: 64px;
  --space-6xl: 96px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(46, 160, 67, 0.35), 0 12px 32px rgba(46, 160, 67, 0.18);

  --container: 1200px;
  --header-h: 68px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-elev: #FFFFFF;
  --surface: #F6F8FA;
  --surface-light: #FAFBFC;
  --border: #D8DEE4;
  --border-light: #E1E4E8;

  --text: #14181F;
  --text-secondary: #555E68;
  --text-tertiary: #8B949E;

  --primary: #2EA043;
  --primary-light: #3FB950;
  --primary-dark: #1A7F37;

  --accent: #B8922F;
  --accent-light: #D4A84B;
  --accent-dark: #9A7B1F;

  --error: #CF222E;

  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 0 1px rgba(46, 160, 67, 0.25), 0 16px 36px rgba(46, 160, 67, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

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

/* ===== Selection ===== */
::selection { background: rgba(46, 160, 67, 0.35); color: var(--text); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--border);
}
.brand__name { font-size: 1.05rem; }

.nav { display: flex; align-items: center; gap: var(--space-2xl); }
.nav__link {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s ease;
}
.nav__link:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: var(--space-md); }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: color .15s ease, transform .15s ease, background .15s ease;
}
.theme-toggle:hover { color: var(--text); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: inline; }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46, 160, 67, 0.35);
}
.btn--primary:hover { background: var(--primary-light); box-shadow: 0 6px 20px rgba(46, 160, 67, 0.45); }
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--border-light); background: var(--surface-light); }
.btn--lg { padding: 14px 26px; font-size: 1rem; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.store-badge:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge__icon { width: 26px; height: 26px; flex: 0 0 auto; color: var(--text); }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge__text small { font-size: 0.7rem; color: var(--text-secondary); }
.store-badge__text strong { font-size: 0.95rem; font-weight: 600; }
.store-badge__soon {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--accent);
  color: #1F2328;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* ===== Section base ===== */
.section { padding: var(--space-6xl) 0; position: relative; }
.section--tight { padding: var(--space-4xl) 0; }
.section--snug { padding: var(--space-5xl) 0; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto var(--space-4xl); }
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}
.section__title {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin-bottom: var(--space-md);
}
.section__lede {
  color: var(--text-secondary);
  font-size: 1.06rem;
  line-height: 1.6;
}

/* ===== Hero ===== */
.hero {
  padding: var(--space-5xl) 0 var(--space-6xl);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 600px;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(46, 160, 67, 0.18), transparent 70%),
    radial-gradient(50% 50% at 80% 30%, rgba(212, 168, 75, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary-light);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xl);
}
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 25%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 35%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 0%, transparent); }
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin-bottom: var(--space-xl);
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary-light) 10%, var(--accent-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-2xl); }
.hero__meta {
  display: flex; flex-wrap: wrap;
  gap: var(--space-xl);
  color: var(--text-secondary);
  font-size: 0.88rem;
}
.hero__meta li { display: flex; align-items: center; gap: var(--space-sm); }
.hero__meta svg { width: 16px; height: 16px; color: var(--primary); }

/* ===== Hero stage (phone + floating cards) ===== */
.hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  min-width: 200px;
}
.float-card--a { top: 8%; left: -4%; animation-delay: 0s; }
.float-card--b { bottom: 14%; right: -8%; animation-delay: -2s; }
.float-card--c { top: 38%; right: -2%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.85rem;
  flex: 0 0 auto;
}
.float-card__icon.is-gold { background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent-light); }
.float-card__icon.is-alarm { background: color-mix(in srgb, var(--error) 18%, transparent); color: var(--error); }
.float-card__body { display: flex; flex-direction: column; }
.float-card__label { font-size: 0.7rem; color: var(--text-secondary); }
.float-card__value { font-size: 0.95rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.float-card__delta { font-size: 0.78rem; font-weight: 600; }
.float-card__delta.up { color: var(--primary-light); }
.float-card__delta.down { color: var(--error); }

/* ===== Phone mockup ===== */
.mockup {
  position: relative;
  margin: 0 auto;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 320 / 660;
  border-radius: 44px;
  background: linear-gradient(160deg, #1C2333 0%, #0A0E14 100%);
  padding: 14px;
  box-shadow:
    0 0 0 1.5px var(--border-light),
    0 36px 90px rgba(0, 0, 0, 0.65),
    0 0 0 14px rgba(46, 160, 67, 0.04);
  z-index: 2;
}
.mockup::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #0A0E14;
  border-radius: 14px;
  z-index: 2;
}
.mockup__screen {
  background: #0A0E14;
  border-radius: 32px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mockup__topbar {
  padding: 42px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup__topbar h4 { font-size: 0.95rem; font-weight: 600; color: #F0F6FC; }
.mockup__time { font-size: 0.75rem; color: #8B949E; font-variant-numeric: tabular-nums; }
.mockup__spotlight {
  margin: 6px 14px 14px;
  background: linear-gradient(135deg, #1C2333, #131922);
  border: 1px solid #21262D;
  border-radius: 16px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.mockup__spotlight::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(46,160,67,0.18), transparent 70%);
  pointer-events: none;
}
.mockup__spotlight-label { font-size: 0.68rem; color: #8B949E; letter-spacing: 0.08em; text-transform: uppercase; }
.mockup__spotlight-symbol { font-size: 0.95rem; color: #F0F6FC; font-weight: 600; margin-top: 2px; }
.mockup__spotlight-price { font-size: 1.6rem; font-weight: 700; color: #F0F6FC; margin-top: 6px; font-variant-numeric: tabular-nums; }
.mockup__spotlight-pct { display: inline-block; margin-top: 4px; padding: 2px 8px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; background: rgba(46,160,67,0.18); color: #3FB950; }
.mockup__spotlight-pct.is-down { background: rgba(248,81,73,0.16); color: #F85149; }
.mockup__list { flex: 1; overflow: hidden; padding: 0 14px; display: flex; flex-direction: column; gap: 6px; }
.mockup__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: #131922;
  border: 1px solid #21262D;
  border-radius: 12px;
}
.mockup__row-left { display: flex; align-items: center; gap: 10px; }
.mockup__row-icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(46,160,67,0.12); color: #3FB950;
  font-size: 0.72rem; font-weight: 700;
}
.mockup__row-icon.is-gold { background: rgba(212,168,75,0.14); color: #E8C468; }
.mockup__row-icon.is-silver { background: rgba(139,148,158,0.18); color: #C9D1D9; }
.mockup__row-meta strong { display: block; font-size: 0.82rem; color: #F0F6FC; font-weight: 600; }
.mockup__row-meta small { font-size: 0.7rem; color: #8B949E; }
.mockup__row-right { text-align: right; }
.mockup__row-right strong { display: block; font-size: 0.85rem; color: #F0F6FC; font-variant-numeric: tabular-nums; }
.mockup__row-right small { font-size: 0.7rem; font-weight: 600; }
.mockup__row-right small.up { color: #3FB950; }
.mockup__row-right small.down { color: #F85149; }
.mockup__tabs {
  margin-top: 10px;
  background: #0A0E14;
  border-top: 1px solid #21262D;
  padding: 8px 14px 14px;
  display: flex;
  justify-content: space-around;
  font-size: 0.62rem;
  color: #6E7681;
}
.mockup__tab { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mockup__tab.is-active { color: #3FB950; }
.mockup__tab-dot { width: 18px; height: 18px; border-radius: 6px; background: currentColor; opacity: 0.18; }
.mockup__tab.is-active .mockup__tab-dot { opacity: 0.4; }

/* ===== Live ticker ===== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--surface), transparent); }
.ticker__track {
  display: flex;
  gap: var(--space-3xl);
  padding: var(--space-lg) 0;
  width: max-content;
  animation: ticker 50s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: var(--space-md);
  font-size: 0.92rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.ticker__item strong { color: var(--text); font-weight: 600; }
.ticker__item .up { color: var(--primary-light); font-weight: 600; }
.ticker__item .down { color: var(--error); font-weight: 600; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Stats band ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-3xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.stat { text-align: center; }
.stat__value {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ===== Features grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.feature-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary-light);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-lg);
}
.feature-card--gold .feature-card__icon {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-light);
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  display: flex; align-items: center; gap: var(--space-sm);
}
.feature-card__free {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== Deep-dive feature rows ===== */
.deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
  padding: var(--space-4xl) 0;
}
.deep + .deep { border-top: 1px dashed var(--border); }
.deep--reverse .deep__copy { order: 2; }
.deep__eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}
.deep__title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
.deep__lede { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: var(--space-xl); }
.deep__bullets { display: flex; flex-direction: column; gap: var(--space-md); }
.deep__bullets li {
  display: flex; align-items: flex-start; gap: var(--space-md);
  color: var(--text-secondary); font-size: 0.98rem;
}
.deep__bullets svg {
  flex: 0 0 auto; width: 22px; height: 22px;
  color: var(--primary); margin-top: 1px;
}
.deep__visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.deep__visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(46, 160, 67, 0.07), transparent 70%);
  pointer-events: none;
}

/* Portfolio mock */
.pmock {
  display: flex; flex-direction: column; gap: var(--space-md);
  position: relative; z-index: 1;
}
.pmock__head {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.pmock__head small { font-size: 0.75rem; color: var(--text-secondary); letter-spacing: 0.06em; text-transform: uppercase; }
.pmock__head strong {
  display: block;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.pmock__head .delta { color: var(--primary-light); font-weight: 600; font-size: 0.9rem; }
.pmock__rows { display: flex; flex-direction: column; gap: 6px; }
.pmock__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.pmock__left { display: flex; align-items: center; gap: var(--space-md); }
.pmock__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary-light);
}
.pmock__icon.is-gold { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent-light); }
.pmock__icon.is-silver { background: color-mix(in srgb, var(--text-tertiary) 22%, transparent); color: var(--text); }
.pmock__name { display: flex; flex-direction: column; }
.pmock__name strong { font-size: 0.92rem; font-weight: 600; }
.pmock__name small { font-size: 0.78rem; color: var(--text-secondary); }
.pmock__right { text-align: right; }
.pmock__right strong { display: block; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.pmock__right small { font-size: 0.78rem; font-weight: 600; }
.pmock__right small.up { color: var(--primary-light); }
.pmock__right small.down { color: var(--error); }

/* Alarm mock */
.amock { position: relative; z-index: 1; display: flex; flex-direction: column; gap: var(--space-md); }
.amock__phone {
  display: flex; align-items: flex-start; gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
}
.amock__bell {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-light);
  flex: 0 0 auto;
}
.amock__bell svg { width: 18px; height: 18px; }
.amock__body { flex: 1; }
.amock__title { font-size: 0.92rem; font-weight: 600; }
.amock__msg { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }
.amock__time { font-size: 0.72rem; color: var(--text-tertiary); margin-top: 6px; }
.amock__phone--triggered { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.amock__phone--triggered::before {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 25%, transparent);
}

/* Markets mock chart */
.cmock {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex; flex-direction: column; gap: var(--space-lg);
  position: relative; z-index: 1;
}
.cmock__head { display: flex; justify-content: space-between; align-items: flex-end; }
.cmock__head h4 { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.cmock__price { font-size: 1.85rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.cmock__pct { font-size: 0.85rem; font-weight: 600; color: var(--primary-light); }
.cmock__bars { display: flex; align-items: flex-end; gap: 6px; height: 160px; }
.cmock__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-light), color-mix(in srgb, var(--primary) 30%, transparent));
  border-radius: 4px 4px 0 0;
}
.cmock__bar.is-down { background: linear-gradient(180deg, var(--error), color-mix(in srgb, var(--error) 25%, transparent)); }
.cmock__ranges { display: flex; gap: var(--space-sm); }
.cmock__range {
  flex: 1; text-align: center;
  padding: 6px 0;
  border-radius: var(--radius-sm);
  font-size: 0.78rem; color: var(--text-secondary);
  background: var(--surface-light);
  border: 1px solid var(--border);
}
.cmock__range.is-active { color: var(--text); border-color: var(--primary); background: color-mix(in srgb, var(--primary) 12%, transparent); }
.cmock__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}
.cmock__stat small { display: block; font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 2px; }
.cmock__stat strong { font-size: 0.95rem; font-variant-numeric: tabular-nums; }

/* ===== How it works (steps) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--primary) 28%, transparent);
  font-feature-settings: "tnum";
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-sm); max-width: 80%; }
.step p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== Interactive converter widget ===== */
.converter-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.converter-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 80% at 50% 0%, rgba(46, 160, 67, 0.06), transparent 70%);
  pointer-events: none;
}
.converter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.converter-row + .converter-row { margin-top: var(--space-md); }
.converter-input {
  display: flex; align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color .15s ease;
}
.converter-input:focus-within { border-color: var(--primary); }
.converter-input input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 8px 6px;
  font-family: inherit;
}
.converter-input input::placeholder { color: var(--text-tertiary); }
.converter-select {
  position: relative;
  display: flex; align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 var(--space-md);
  min-width: 130px;
  transition: border-color .15s ease;
}
.converter-select:focus-within { border-color: var(--primary); }
.converter-select select {
  appearance: none; -webkit-appearance: none;
  background: none; border: none; outline: none;
  color: var(--text); font-family: inherit; font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px 12px 0;
  cursor: pointer;
  width: 100%;
}
.converter-select::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  position: absolute;
  right: 14px; top: 50%; margin-top: -6px;
  pointer-events: none;
}
.converter-swap {
  display: flex; align-items: center; justify-content: center;
  margin: var(--space-md) 0;
  position: relative; z-index: 1;
}
.converter-swap-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, color .15s ease, border-color .15s ease;
}
.converter-swap-btn:hover { color: var(--primary-light); border-color: var(--primary); transform: rotate(180deg); }
.converter-swap-btn svg { width: 18px; height: 18px; }
.converter-meta {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  align-items: center; justify-content: space-between;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px dashed var(--border);
  color: var(--text-secondary); font-size: 0.85rem;
}
.converter-meta .live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-light); margin-right: 6px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
}

/* ===== Why grid (differentiators) ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.why-card__icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}
.why-card__icon svg { width: 18px; height: 18px; }
.why-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.why-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.55; }

/* ===== Testimonials ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex; flex-direction: column; gap: var(--space-md);
}
.testimonial__stars { color: var(--accent-light); display: inline-flex; gap: 2px; }
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial__text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial__author { display: flex; align-items: center; gap: var(--space-md); margin-top: auto; }
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 700; font-size: 0.85rem;
}
.testimonial__avatar.is-gold { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #1F2328; }
.testimonial__name strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial__name small { font-size: 0.78rem; color: var(--text-secondary); }

/* ===== Pricing comparison ===== */
.pricing {
  max-width: 920px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.pricing__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  border-top: 1px solid var(--border);
  align-items: center;
}
.pricing__row:first-child { border-top: none; }
.pricing__row > div { padding: var(--space-lg) var(--space-xl); }
.pricing__head > div {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-elev);
}
.pricing__head .pricing__mihenk {
  color: var(--primary-light);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
}
.pricing__feat strong { font-weight: 600; }
.pricing__feat small { display: block; color: var(--text-secondary); font-size: 0.85rem; margin-top: 2px; }
.pricing__cell { text-align: center; color: var(--text-secondary); font-size: 0.92rem; }
.pricing__cell .check { color: var(--primary-light); }
.pricing__cell .x { color: var(--text-tertiary); }
.pricing__cell svg { width: 20px; height: 20px; vertical-align: middle; }
.pricing__mihenk.pricing__cell { background: color-mix(in srgb, var(--primary) 6%, transparent); color: var(--text); font-weight: 600; }

/* ===== Free banner ===== */
.free-banner {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 14%, transparent) 0%, color-mix(in srgb, var(--accent) 14%, transparent) 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.free-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(212, 168, 75, 0.18), transparent 70%);
  pointer-events: none;
}
.free-banner h2 {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.free-banner p { position: relative; color: var(--text-secondary); max-width: 560px; margin: 0 auto var(--space-xl); }
.free-banner__chips { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); }
.chip {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 500;
}
.chip svg { width: 16px; height: 16px; color: var(--primary); }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] { border-color: var(--primary); box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 25%, transparent); }
.faq-item summary {
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta-band {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 20% 10%, rgba(46,160,67,0.18), transparent 70%),
    radial-gradient(40% 60% at 80% 90%, rgba(212,168,75,0.16), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.cta-band p { position: relative; color: var(--text-secondary); margin-bottom: var(--space-xl); }
.cta-band__buttons { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: var(--space-4xl) 0 var(--space-2xl);
  margin-top: var(--space-4xl);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}
.site-footer__col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.site-footer__col li a { color: var(--text-secondary); font-size: 0.92rem; transition: color .15s ease; }
.site-footer__col li a:hover { color: var(--text); }
.site-footer__about p { color: var(--text-secondary); font-size: 0.92rem; margin-top: var(--space-md); max-width: 320px; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  align-items: center; justify-content: space-between;
  padding-top: var(--space-xl);
  color: var(--text-tertiary); font-size: 0.85rem;
}
.site-footer__disclaimer { max-width: 720px; line-height: 1.55; }
.site-footer--slim { padding: var(--space-xl) 0; margin-top: 0; }

/* ===== Doc pages ===== */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-xl) var(--space-6xl);
}
.doc h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.doc__updated { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: var(--space-3xl); }
.doc h2 { font-size: 1.2rem; font-weight: 600; margin-top: var(--space-3xl); margin-bottom: var(--space-md); }
.doc p, .doc li { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.doc p + p { margin-top: var(--space-md); }
.doc ul { padding-left: var(--space-xl); list-style: disc; margin-top: var(--space-md); }
.doc ul li { padding-left: var(--space-xs); }
.doc a { color: var(--primary-light); text-decoration: underline; text-underline-offset: 2px; }

/* ===== Sticky mobile download bar ===== */
.mobile-bar {
  display: none;
  position: fixed; bottom: 12px; left: 12px; right: 12px;
  z-index: 60;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  align-items: center; justify-content: space-between;
  gap: var(--space-md);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.mobile-bar.is-shown { transform: translateY(0); }
.mobile-bar__left { display: flex; align-items: center; gap: var(--space-md); min-width: 0; }
.mobile-bar__logo { width: 32px; height: 32px; border-radius: 8px; }
.mobile-bar__text { display: flex; flex-direction: column; min-width: 0; }
.mobile-bar__text strong { font-size: 0.9rem; font-weight: 600; }
.mobile-bar__text small { font-size: 0.72rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 70;
  padding: var(--space-lg);
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.is-shown { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; gap: var(--space-lg);
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-banner p {
  flex: 1 1 320px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner p a { color: var(--primary-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

/* ===== Skeleton (number while loading) ===== */
.is-loading-num { color: var(--text-tertiary); font-style: normal; opacity: 0.65; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid, .steps, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .deep { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .deep--reverse .deep__copy { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .float-card { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; padding: var(--space-md) var(--space-xl) var(--space-2xl); flex-direction: column; align-items: flex-start; gap: var(--space-md); background: var(--bg); border-bottom: 1px solid var(--border); }
  .nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn--primary { display: none; }

  .hero { padding: var(--space-4xl) 0 var(--space-5xl); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .hero__title { font-size: 2.2rem; }
  .hero__stage { min-height: 540px; }
  .mockup { width: 280px; }

  .features-grid, .steps, .testimonials { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing__row { grid-template-columns: 1.4fr 1fr 1fr; }
  .pricing__row > div { padding: var(--space-md) var(--space-lg); }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .section { padding: var(--space-5xl) 0; }
  .free-banner, .cta-band { padding: var(--space-3xl) var(--space-xl); }

  .mobile-bar { display: flex; }
  body { padding-bottom: 84px; }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--space-lg); }
  .stats { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .store-badge { flex: 1 0 auto; justify-content: center; }
  .converter-row { grid-template-columns: 1fr; }
  .pricing__row { grid-template-columns: 1.4fr 1fr 1fr; font-size: 0.9rem; }
}

/* ===== Hero Rating ===== */
.hero__rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.hero__stars { color: var(--accent); font-size: 1rem; letter-spacing: 1px; }
.hero__rating-text { font-size: 0.85rem; color: var(--text-secondary); }
.hero__rating-text strong { color: var(--text); }

/* ===== Blog Preview (Homepage) ===== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3xl);
  margin-top: var(--space-5xl);
}
.blog-preview-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  transition: border-color 0.18s, transform 0.18s;
  color: var(--text);
}
.blog-preview-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.blog-preview-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
.blog-preview-card h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
.blog-preview-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.blog-preview-card__read { font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-top: auto; }
.blog-preview-more { margin-top: var(--space-4xl); text-align: center; }

/* ===== Social Links ===== */
.social-links { display: flex; gap: var(--space-md); margin-top: var(--space-sm); }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--surface-light);
  color: var(--text-secondary);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
