/* ── REPLICATORS — DARK THEME ── */

:root {
  --iron:    #18181b;
  --steel:   #27272a;
  --ash:     #3f3f46;
  --smoke:   #a1a1aa;
  --chalk:   #e4e4e7;
  --white:   #fafafa;
  --orange:  #f97316;
  --orange2: #ea580c;

  /* Legacy aliases used throughout shop/admin templates */
  --color-bg:           var(--iron);
  --color-text:         var(--chalk);
  --color-border:       var(--ash);
  --color-accent:       var(--orange);
  --color-gray-light:   var(--steel);
  --color-gray-medium:  var(--smoke);
  --color-gray-dark:    var(--ash);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--iron);
  color: var(--chalk);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1000;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover { color: var(--orange2); opacity: 1; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--ash);
  background: rgba(24,24,27,0.85);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--orange); }

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

nav a {
  color: var(--smoke);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: 'DM Mono', monospace;
}
nav a:hover { color: var(--orange); opacity: 1; }

.nav-cta {
  background: var(--orange);
  color: var(--iron) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  font-weight: 400 !important;
}
.nav-cta:hover { background: var(--orange2) !important; color: var(--white) !important; }

.lang-switch {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.lang-switch a {
  color: var(--ash);
  padding: 0.2rem 0.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
}
.lang-switch a.active {
  color: var(--orange);
  border-color: var(--ash);
}
.lang-switch a:hover { color: var(--orange); }

.cart-icon { position: relative; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--orange);
  color: var(--iron);
  font-size: 0.7rem;
  padding: 0.1rem 0.35rem;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  font-weight: 400;
}

/* ── MAIN CONTENT ── */
main {
  min-height: calc(100vh - 80px);
}

/* Inner pages (non-full-width) add top padding for fixed nav */
.page-content {
  padding-top: calc(80px + 2.5rem);
  padding-bottom: 3rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--ash);
  background: var(--steel);
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--smoke);
  text-decoration: none;
}
.footer-logo span { color: var(--orange); }

.footer-note {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ── FLASH MESSAGES ── */
.flash-messages { margin: 1.5rem 0; }

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--ash);
  background: var(--steel);
  font-size: 0.85rem;
  border-left: 3px solid var(--ash);
}
.alert-success { border-left-color: #22c55e; }
.alert-error   { border-left-color: #ef4444; }
.alert-warning { border-left-color: #f59e0b; }
.alert-info    { border-left-color: #3b82f6; }

/* ── BUTTONS ── */
.btn, .btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--iron);
  padding: 0.75rem 1.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--orange);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}
.btn:hover, .btn-primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  color: var(--white);
  opacity: 1;
  transform: translateY(-1px);
}

.btn-secondary, .btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--chalk);
  padding: 0.75rem 1.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ash);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  opacity: 1;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
  margin: 2rem 0;
}

.product-card {
  background: var(--steel);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { background: #2d2d32; }
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.product-card:hover::after { transform: scaleX(1); }

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--ash);
  overflow: hidden;
}

.product-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--orange);
}

/* ── FORMS ── */
label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: var(--steel);
  border: 1px solid var(--ash);
  color: var(--chalk);
  font-size: 0.9rem;
  font-family: 'DM Mono', monospace;
  border-radius: 2px;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--orange);
}
select option { background: var(--steel); }
textarea { resize: vertical; min-height: 100px; }

.form-group { margin-bottom: 1.5rem; }

/* ── TABLES ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--ash);
}
th {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  background: var(--steel);
  font-weight: 400;
}
tr:hover td { background: rgba(249,115,22,0.03); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* ── LANDING PAGE ── */

/* Noise grid bg */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Mono', monospace;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--orange);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-headline em { font-style: normal; color: var(--orange); }
.hero-headline .outline {
  -webkit-text-stroke: 1px var(--ash);
  color: transparent;
}

.hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--smoke);
  max-width: 38ch;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Blueprint rings */
.blueprint-rings { position: relative; width: 480px; height: 480px; }

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateRing 20s linear infinite;
}
.ring:nth-child(1) { width: 120px; height: 120px; border-color: rgba(249,115,22,0.5); border-style: dashed; animation-duration: 8s; }
.ring:nth-child(2) { width: 220px; height: 220px; animation-duration: 14s; animation-direction: reverse; }
.ring:nth-child(3) { width: 330px; height: 330px; animation-duration: 22s; }
.ring:nth-child(4) { width: 440px; height: 440px; animation-duration: 30s; animation-direction: reverse; border-style: dashed; border-color: rgba(249,115,22,0.07); }

.ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--iron);
  box-shadow: 0 0 40px rgba(249,115,22,0.4);
}

.ring-label {
  position: absolute;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  font-family: 'DM Mono', monospace;
}
.ring-label.top    { top: 6%; left: 50%; transform: translateX(-50%); }
.ring-label.right  { right: 6%; top: 50%; transform: translateY(-50%); }
.ring-label.bottom { bottom: 6%; left: 50%; transform: translateX(-50%); color: var(--orange); }

.crosshair { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.crosshair::before, .crosshair::after {
  content: '';
  position: absolute;
  background: rgba(249,115,22,0.2);
}
.crosshair::before { width: 440px; height: 1px; top: 0; left: -220px; }
.crosshair::after  { width: 1px; height: 440px; left: 0; top: -220px; }

@keyframes rotateRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Stat bar */
.stat-bar {
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--steel);
}
.stat {
  padding: 1.75rem 2.5rem;
  border-right: 1px solid var(--ash);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-number span { color: var(--orange); }
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* Sections */
.lp-section { padding: 7rem 5rem; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Mono', monospace;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 3rem;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Manifesto */
.manifesto {
  background: var(--steel);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}
.manifesto-body {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--smoke);
  line-height: 1.8;
}
.manifesto-body p { margin-bottom: 1.25rem; }
.manifesto-body strong { color: var(--chalk); font-weight: 700; }
.manifesto-body em { color: var(--orange); font-style: italic; }

.manifesto-right { display: flex; flex-direction: column; gap: 1.5rem; }

.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--ash);
  border-radius: 3px;
  transition: border-color 0.3s, background 0.3s;
}
.principle:hover { border-color: var(--orange); background: rgba(249,115,22,0.04); }
.principle-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--ash);
  line-height: 1;
  transition: color 0.3s;
}
.principle:hover .principle-num { color: var(--orange); }
.principle-text h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: 0.4rem;
}
.principle-text p { font-size: 0.82rem; color: var(--smoke); line-height: 1.65; }

/* Offer */
.offer { background: var(--iron); }
.offer-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.offer-intro {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--smoke);
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--ash);
  background: var(--ash);
}
.card {
  background: var(--steel);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover { background: #2d2d32; }
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover::after { transform: scaleX(1); }
.card-icon {
  font-size: 1.5rem;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ash);
  border-radius: 2px;
  color: var(--orange);
}
.card h3 {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}
.card p { font-size: 0.85rem; color: var(--smoke); line-height: 1.7; flex: 1; }
.card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  width: fit-content;
  font-family: 'DM Mono', monospace;
}

/* How it works */
.how {
  background: var(--steel);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ash) 20%, var(--ash) 80%, transparent);
}
.step { display: flex; flex-direction: column; gap: 1rem; }
.step-num {
  width: 3rem; height: 3rem;
  background: var(--iron);
  border: 1px solid var(--ash);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--smoke);
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.step:hover .step-num { background: var(--orange); color: var(--iron); border-color: var(--orange); }
.step h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}
.step p { font-size: 0.83rem; color: var(--smoke); line-height: 1.65; }

/* Community */
.community {
  background: var(--iron);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.community .section-label { justify-content: center; }
.community .section-label::after { display: none; }
.community .section-label::before {
  content: '';
  max-width: 3rem;
  height: 1px;
  background: var(--orange);
}
.community-body {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--smoke);
  max-width: 55ch;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.community-body strong { color: var(--chalk); font-weight: 700; }
.community-actions { display: flex; gap: 1rem; justify-content: center; }

/* ── FADE-UP ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.25s; }
.fade-up.d3 { animation-delay: 0.4s; }
.fade-up.d4 { animation-delay: 0.55s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BLOG PUBLIC ── */

/* Shared tag pill */
.post-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  transition: background 0.2s, color 0.2s;
}
.post-tag:hover { background: var(--orange); color: var(--iron); }

/* Blog index */
.blog-page { max-width: 900px; margin: 0 auto; }

.blog-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ash);
}

.blog-filter-bar {
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-family: 'DM Mono', monospace;
  color: var(--smoke);
  letter-spacing: 0.08em;
}

.post-list { display: flex; flex-direction: column; }

.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--ash);
  border-top: none;
  background: var(--steel);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.post-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.post-card:hover::after { transform: scaleX(1); }
.post-card:first-child { border-top: 1px solid var(--ash); }
.post-card:hover { background: #2d2d32; }
.post-card.no-image { grid-template-columns: 1fr; }

.post-card-thumb { overflow: hidden; }
.post-card-thumb img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.post-card-body {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.post-meta-sep { color: var(--ash); }

.post-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.05;
  display: block;
  transition: color 0.2s;
}
.post-card-title:hover { color: var(--orange); }

.post-card-excerpt {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.7;
  flex: 1;
}

.post-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.post-card-read {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  transition: color 0.2s;
}
.post-card-read::after { content: ' →'; }
.post-card-read:hover { color: var(--white); }

.blog-empty {
  padding: 4rem 2rem;
  background: var(--steel);
  border: 1px solid var(--ash);
  text-align: center;
  color: var(--smoke);
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-top: 1rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ash);
}
.blog-pagination-info {
  font-size: 0.72rem;
  color: var(--smoke);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
}

/* Blog detail */
.post-article { max-width: 800px; margin: 0 auto; }

.post-article-header { margin-bottom: 2.5rem; }

.post-article-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.post-article-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.post-article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }

.post-hero-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  margin-bottom: 2.5rem;
  border: 1px solid var(--ash);
}

.post-body { line-height: 1.9; color: var(--chalk); }
.post-body h1, .post-body h2, .post-body h3 { margin-top: 2rem; color: var(--white); }
.post-body p { margin-bottom: 1.25rem; }
.post-body pre { background: var(--steel); padding: 1rem; border-left: 3px solid var(--orange); overflow-x: auto; margin-bottom: 1.25rem; }
.post-body code { background: var(--steel); padding: 0.1em 0.35em; font-family: 'DM Mono', monospace; font-size: 0.9em; }
.post-body blockquote { border-left: 3px solid var(--orange); padding-left: 1rem; margin-bottom: 1.25rem; color: var(--smoke); font-style: italic; }

.post-related {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ash);
}
.post-related-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.75rem;
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.post-related-label::after {
  content: '';
  flex: 1;
  max-width: 3rem;
  height: 1px;
  background: var(--orange);
}

.post-article-footer {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ash);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 1rem 1.5rem; }
  nav { gap: 1rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 2rem 4rem; }

  .stat-bar { grid-template-columns: 1fr 1fr; }
  .lp-section { padding: 4rem 2rem; }
  .manifesto { grid-template-columns: 1fr; gap: 3rem; }
  .offer-header { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 1rem; }

  .post-card { grid-template-columns: 1fr; }
  .post-card-thumb img { min-height: 200px; max-height: 240px; }
  .blog-page-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
