/* =========================================================
   AI Income Blueprint — Frontend Stylesheet
   ========================================================= */

/* ── GOOGLE FONTS ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,600&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --ink:       #12100E;
  --ink2:      #2E2A27;
  --ink3:      #5C5550;
  --ink4:      #9C948E;
  --paper:     #FFFDF9;
  --paper2:    #F5F0E8;
  --paper3:    #EDE6D8;
  --gold:      #C8871A;
  --gold-lt:   #FDF3E0;
  --gold-bd:   rgba(200, 135, 26, 0.28);
  --green:     #1A6B42;
  --green-lt:  #EBF5EF;
  --green-bd:  rgba(26, 107, 66, 0.25);
  --red-lt:    #FEF2F2;
  --red-bd:    #FECACA;
  --ff:        'Fraunces', Georgia, serif;
  --fs:        'Plus Jakarta Sans', sans-serif;
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(200, 135, 26, 0.08);
  --transition: all 0.2s ease;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fs);
  font-size: 17px;
  line-height: 1.8;
  background-color: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
/* ── NAVBAR LOGO ─────────────────────────────────────────── */
.navbar-logo {
  /* height: 42px; */
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.navbar-brand:hover .navbar-logo {
  opacity: 0.85;
}

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

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.ff { font-family: var(--ff); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* ── COLOURS ────────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--ink4); }
.bg-paper     { background-color: var(--paper); }
.bg-paper2    { background-color: var(--paper2); }
.bg-ink       { background-color: var(--ink); }
.bg-shade     { background-color: var(--paper2); border-top: 1px solid var(--paper3); border-bottom: 1px solid var(--paper3); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fs);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background-color: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  opacity: 0.88;
  color: #fff;
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #fff;
}

.btn-dark {
  background-color: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  opacity: 0.88;
  color: #fff;
}

.btn-sm {
  font-size: 13px;
  padding: 7px 16px;
}

.btn-lg {
  font-size: 17px;
  padding: 14px 32px;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.navbar-brand {
  font-family: var(--ff);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.navbar-brand em {
  font-style: italic;
  color: var(--gold);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--gold);
}

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

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
  font-size: 1.4rem;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background-color: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--gold);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #6EE7A8;
  background-color: rgba(26, 107, 66, 0.25);
  border: 1px solid rgba(110, 231, 168, 0.2);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  background-color: #6EE7A8;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-top: 4px;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-lead strong {
  color: #fff;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-pill {
  background-color: rgba(200, 135, 26, 0.15);
  color: var(--gold);
  border: 1px solid rgba(200, 135, 26, 0.3);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 420px;
}

.hero-stat {
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  display: block;
  font-family: var(--ff);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero price card */
.hero-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.hero-card-price {
  font-family: var(--ff);
  font-size: 3.8rem;
  font-weight: 700;
  color: #FFD580;
  letter-spacing: -2px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.hero-card-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-card-checklist li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-card-checklist li::before {
  content: '✓';
  color: #FFD580;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-hero {
  display: block;
  width: 100%;
  background-color: #FFD580;
  color: var(--ink);
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  transition: opacity 0.15s, transform 0.12s;
  margin-bottom: 16px;
  border: none;
  cursor: pointer;
}

.btn-hero:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: var(--ink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-trust span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-trust span::before {
  content: '✓';
  color: #FFD580;
  font-weight: 700;
}

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--paper3);
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRID LAYOUTS ───────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── POST CARDS ─────────────────────────────────────────── */
.post-card {
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  background-color: var(--paper);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  border-color: var(--gold-bd);
  box-shadow: var(--shadow);
}

.post-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.post-card-image-placeholder {
  width: 100%;
  height: 210px;
  background-color: var(--paper2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--paper3);
}

.post-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.post-card-title {
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
  flex: 1;
  transition: color 0.15s;
}

.post-card:hover .post-card-title {
  color: var(--gold);
}

.post-card-excerpt {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 14px;
}

.post-card-meta {
  font-size: 12px;
  color: var(--ink4);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/* ── SIDEBAR ────────────────────────────────────────────── */
.sidebar-widget {
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 24px;
  background-color: var(--paper);
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.sidebar-product-card {
  background-color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
}

.sidebar-product-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 8px;
}

.sidebar-product-title {
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.sidebar-product-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 14px;
}

.sidebar-product-price {
  font-family: var(--ff);
  font-size: 2rem;
  font-weight: 700;
  color: #FFD580;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.btn-product {
  display: block;
  width: 100%;
  background-color: #FFD580;
  color: var(--ink);
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  transition: opacity 0.15s;
}

.btn-product:hover {
  opacity: 0.9;
  color: var(--ink);
}

.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.category-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--paper3);
  color: var(--ink);
  transition: color 0.15s;
}

.category-list-item:last-child {
  border-bottom: none;
}

.category-list-item:hover {
  color: var(--gold);
}

.category-count {
  font-size: 12px;
  background-color: var(--paper2);
  color: var(--ink4);
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 500;
}

/* ── SINGLE POST ────────────────────────────────────────── */
.post-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--paper3);
}

.post-meta-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.post-meta-date {
  font-size: 13px;
  color: var(--ink4);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Post body typography */
.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink2);
}

.post-body h2 { font-size: 1.55rem; margin: 2.2rem 0 1rem; }
.post-body h3 { font-size: 1.25rem; color: var(--gold); margin: 1.8rem 0 0.75rem; }
.post-body h4 { font-size: 1.1rem; margin: 1.5rem 0 0.6rem; }
.post-body p  { margin-bottom: 1.3rem; }
.post-body ul,
.post-body ol  { margin-bottom: 1.3rem; padding-left: 1.5rem; }
.post-body li  { margin-bottom: 0.5rem; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a  { color: var(--gold); text-decoration: underline; }
.post-body a:hover { opacity: 0.8; }

.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  margin: 1.5rem 0;
  background-color: var(--paper2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink3);
}

.post-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 1.2rem 0;
}

.post-body pre {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 14px;
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

.post-body code {
  background-color: var(--paper2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--gold);
  font-family: 'Courier New', monospace;
}

.post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink4);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--ink4);
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb-sep { color: var(--paper3); }

.breadcrumb-current { color: var(--gold); }

/* Related posts */
.related-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--paper3);
}

.related-title {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

/* ── CATEGORY BADGES ────────────────────────────────────── */
.category-strip {
  padding: 18px 0;
  background-color: var(--paper2);
  border-top: 1px solid var(--paper3);
  border-bottom: 1px solid var(--paper3);
}

.category-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.category-strip-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink4);
}

.category-badge {
  background-color: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper3);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  transition: var(--transition);
}

.category-badge:hover {
  background-color: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.category-badge-count {
  color: var(--ink4);
  margin-left: 4px;
  font-size: 11px;
}

/* ── NUMBER CARDS ───────────────────────────────────────── */
.num-card {
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  background-color: var(--paper);
}

.num-card-number {
  display: block;
  font-family: var(--ff);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.num-card-label {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.5;
}

/* ── PAIN CARDS ─────────────────────────────────────────── */
.pain-card {
  background-color: var(--red-lt);
  border: 1px solid var(--red-bd);
  border-radius: var(--radius);
  padding: 26px;
}

.pain-card-x {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.pain-card-title {
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.pain-card-text {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.65;
}

/* ── PROMISE BAND ───────────────────────────────────────── */
.promise-band {
  background-color: var(--ink);
  padding: 64px 24px;
  text-align: center;
}

.promise-band blockquote {
  font-family: var(--ff);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  max-width: 680px;
  margin: 0 auto 14px;
  letter-spacing: -0.3px;
}

.promise-band blockquote em {
  font-style: italic;
  font-weight: 300;
  color: #FFD580;
}

.promise-band p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  margin: 0 auto;
}

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin-top: 48px;
  padding: 0;
}

.page-item a,
.page-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--paper3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  transition: var(--transition);
}

.page-item a:hover {
  background-color: var(--paper2);
  color: var(--gold);
}

.page-item.active span {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 700;
}

/* ── RESOURCES PAGE ─────────────────────────────────────── */
.resource-card {
  border: 1px solid var(--paper3);
  border-radius: var(--radius);
  padding: 22px;
  background-color: var(--paper);
  transition: var(--transition);
}

.resource-card:hover {
  border-color: var(--gold-bd);
  box-shadow: var(--shadow);
}

.resource-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.resource-card-name {
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.resource-card-price {
  font-size: 12px;
  color: var(--ink4);
  background-color: var(--paper2);
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.resource-card-desc {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 14px;
}

.resource-card-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
}

.resource-card-link:hover { opacity: 0.8; }

.section-divider-title {
  font-family: var(--ff);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* ── PRODUCT HERO CARD ──────────────────────────────────── */
.product-hero {
  background-color: var(--ink);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
}

.product-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
  display: block;
}

.product-hero-title {
  font-family: var(--ff);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.product-hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-hero-price {
  font-family: var(--ff);
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD580;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--ff);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-brand em {
  font-style: italic;
  color: var(--gold);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── ALERTS ─────────────────────────────────────────────── */
.alert {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}

.alert-success { background-color: var(--green-lt); color: var(--green); border: 1px solid var(--green-bd); }
.alert-danger  { background-color: var(--red-lt); color: #991b1b; border: 1px solid var(--red-bd); }

/* ── EMPTY STATE ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink4);
}

.empty-state-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-card       { max-width: 480px; }
  .grid-3          { grid-template-columns: repeat(2, 1fr); }
  .grid-numbers    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar-menu     { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); padding: 16px 24px; border-bottom: 1px solid var(--paper3); z-index: 99; }
  .navbar-menu.open { display: flex; }
  .navbar-toggle   { display: block; }
  .navbar-inner    { flex-wrap: wrap; }
  .grid-3          { grid-template-columns: 1fr; }
  .grid-2          { grid-template-columns: 1fr; }
  .grid-numbers    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats      { max-width: 100%; }
  .section         { padding: 56px 0; }
}
