/* ─────────────────────────────────────────────
   Aigenture Oy — Global Stylesheet
   Palette: Black · Gold · Royal Purple
   ───────────────────────────────────────────── */

:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-border:#252525;
  --gold:        #c9a84c;
  --gold-light:  #e8c96b;
  --gold-dim:    #8a6f2e;
  --purple:      #6b3fa0;
  --purple-light:#9b6fd4;
  --white:       #f5f5f0;
  --white-dim:   #a0a09a;
  --white-muted: #606058;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;

  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ──────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.section-sub { color: var(--white-dim); font-size: 1.1rem; max-width: 580px; margin: 0 auto 3.5rem; text-align: center; }
.text-center { text-align: center; }

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0 2rem;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: flex; align-items: center;
}
.nav-logo {
  height: 38px;
  width: 38px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--white-dim); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--black) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; color: var(--black) !important; }

/* ── Footer ──────────────────────────────────── */
.footer {
  border-top: 1px solid var(--black-border);
  padding: 3rem 0 2rem;
  margin-top: 6rem;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between;
}
.footer-brand { font-size: 1.1rem; font-weight: 800; }
.footer-brand-logo { display: inline-flex; align-items: center; }
.footer-logo {
  height: 32px; width: 32px; object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  opacity: 0.85; transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 1; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { color: var(--white-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--white-muted); font-size: 0.82rem; width: 100%; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition);
  border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); color: var(--black); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(201,168,76,0.4);
  color: var(--gold);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); color: var(--gold-light); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--black-border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-lg { padding: 1rem 2.6rem; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-gold {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(145deg, #1a1508 0%, var(--black-card) 100%);
}

/* ── Divider ─────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
  margin: 0;
}

/* ── Badge ───────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.badge-gold {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
}
.badge-purple {
  background: rgba(107,63,160,0.2);
  border: 1px solid rgba(107,63,160,0.45);
  color: var(--purple-light);
}

/* ── ─────────────────────────────────────────── */
/*    HERO                                         */
/* ── ─────────────────────────────────────────── */
.hero {
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 30%,
    rgba(201,168,76,0.13) 0%,
    rgba(107,63,160,0.07) 40%,
    transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--white-dim);
  max-width: 620px;
  margin: 0 auto 2.8rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Stats bar ───────────────────────────────── */
.stats-bar {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  background: var(--black-card);
  overflow: hidden;
  max-width: 860px; margin: 0 auto;
}
.stat-item {
  flex: 1; min-width: 160px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--black-border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { color: var(--white-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Value grid ──────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.45rem; color: var(--white); }
.value-card p { color: var(--white-dim); font-size: 0.88rem; }

/* ── Steps ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 1rem; max-width: 740px; margin: 0 auto; }
.step { display: flex; gap: 1.4rem; align-items: flex-start; }
.step-connector { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: var(--black);
  position: relative; z-index: 1;
}
.step-line {
  width: 2px; flex: 1; min-height: 28px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.3), transparent);
  margin: 4px 0;
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 0.5rem; padding-bottom: 1.5rem; }
.step-body h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.step-body p { color: var(--white-dim); font-size: 0.88rem; }

/* ── Pricing ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px; margin: 0 auto;
  align-items: start;
}
.plan-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.plan-card.featured {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, #1c1506 0%, #161616 60%);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), var(--shadow-gold);
}
.plan-most-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 1.1rem; border-radius: 999px;
  white-space: nowrap;
}
.plan-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.6rem; }
.plan-price { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.2rem; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; color: var(--gold); }
.plan-price sub { font-size: 1rem; font-weight: 400; color: var(--white-dim); vertical-align: baseline; }
.plan-desc { color: var(--white-dim); font-size: 0.88rem; margin: 0.6rem 0 1.4rem; min-height: 2.5rem; }
.plan-divider { height: 1px; background: var(--black-border); margin: 1.2rem 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--white-dim); }
.plan-features li .check { color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 0.05rem; }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; }

/* ── Stripe checkout message ──────────────────── */
.checkout-msg {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-muted);
}

/* ── Support cards ───────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 760px; margin: 0 auto 4rem;
}
.contact-card { text-align: center; }
.contact-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-card p { color: var(--white-dim); font-size: 0.88rem; margin-bottom: 1rem; }
.email-link {
  display: inline-block;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.2rem;
  color: var(--gold); font-weight: 600; font-size: 0.88rem;
  transition: all var(--transition);
}
.email-link:hover { background: rgba(201,168,76,0.16); border-color: var(--gold); color: var(--gold-light); }

/* ── FAQ ─────────────────────────────────────── */
.faq-block { max-width: 740px; margin: 0 auto; }
.faq-block h2 { font-size: 1.7rem; text-align: center; margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--black-border); padding: 1.3rem 0; }
.faq-item h4 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.faq-item p { color: var(--white-dim); font-size: 0.88rem; }

/* ── Response badge ──────────────────────────── */
.response-badge {
  text-align: center; margin-bottom: 2.5rem;
}
.response-badge span {
  display: inline-block;
  background: rgba(107,63,160,0.15);
  border: 1px solid rgba(107,63,160,0.35);
  border-radius: 999px;
  padding: 0.35rem 1.2rem;
  font-size: 0.82rem; color: var(--purple-light);
}

/* ── Page hero (inner pages) ─────────────────── */
.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% -10%,
    rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.page-hero p { color: var(--white-muted); font-size: 0.9rem; }

/* ── Prose (legal pages) ─────────────────────── */
.prose-wrap { padding: 0 0 5rem; }
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--gold);
  margin: 2.5rem 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.prose h3 { font-size: 0.97rem; font-weight: 700; color: var(--white-dim); margin: 1.5rem 0 0.4rem; }
.prose p { color: var(--white-dim); margin-bottom: 0.9rem; font-size: 0.93rem; }
.prose ul { color: var(--white-dim); padding-left: 1.4rem; margin-bottom: 0.9rem; }
.prose li { margin-bottom: 0.4rem; font-size: 0.93rem; }
.prose a { color: var(--gold); }
.prose strong { color: var(--white); }
.prose-intro {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--white-dim);
  font-size: 0.93rem;
}

/* ── Flash / alert ───────────────────────────── */
.flash {
  max-width: 680px; margin: 1.5rem auto;
  padding: 1rem 1.5rem; border-radius: var(--radius-md);
  font-size: 0.92rem; font-weight: 500;
}
.flash-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #6ee7a0; }
.flash-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 680px) {
  .container { padding: 0 1.2rem; }
  .hero { padding: 4.5rem 0 3rem; }
  .stats-bar { border-radius: var(--radius-lg); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--black-border); }
  .stat-item:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .feature-row-reverse { direction: ltr; }
  .mini-feature-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   NARRATIVE BLOCK
═══════════════════════════════════════════ */
.narrative-block {
  max-width: 760px;
  margin: 0 auto;
}
.narrative-body {
  color: var(--white-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.narrative-body strong {
  color: var(--white);
}
.narrative-highlight {
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.6rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   FEATURE ROWS — Alternating image / text
═══════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row-reverse {
  direction: rtl;
}
.feature-row-reverse > * {
  direction: ltr;
}
.feature-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.06);
}
.feature-img-wrap img {
  width: 100%;
  display: block;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-text .badge {
  align-self: flex-start;
  margin-bottom: 0.4rem;
}
.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}
.feature-text > p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.feature-why {
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  background: rgba(201,168,76,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.1);
  font-size: 0.88rem !important;
  color: var(--white-dim) !important;
}
.feature-why strong {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   MINI-FEATURE GRID — Secondary features
═══════════════════════════════════════════ */
.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mini-feature-card {
  overflow: hidden;
  padding: 0;
}
.mini-feature-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--black-border);
}
.mini-feature-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.mini-feature-body h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.mini-feature-body p {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   FINAL CTA BLOCK
═══════════════════════════════════════════ */
.final-cta-block {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, rgba(107,63,160,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-xl);
}
.final-cta-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.final-cta-block > p {
  color: var(--white-dim);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Feature rows + mini grid
═══════════════════════════════════════════ */
@media (max-width: 820px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }
  .feature-row-reverse {
    direction: ltr;
  }
  .mini-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Blog ────────────────────────────────────── */
.blog-hero { padding-bottom: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
  color: inherit;
}

.blog-card-body { padding: 2rem; }

.blog-card-date {
  font-size: 0.82rem;
  color: var(--white-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-desc {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.blog-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.blog-tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.blog-card-link {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--white-dim);
}
.blog-empty p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.blog-back-link {
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: color var(--transition);
}
.blog-back-link:hover { color: var(--gold); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  color: var(--white-muted);
  font-size: 0.88rem;
}
.article-meta-sep { opacity: 0.4; }

.article-cta {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.article-cta h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.article-cta p {
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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