/* ============================================
   facebookadsalmelo.nl
   Bold-conversion · direct-response
   ============================================ */

:root {
  --bg: #FAFAF7;
  --bg-soft: #F2F2EC;
  --surface: #FFFFFF;
  --surface-dark: #0A0A0F;
  --ink: #0A0A0F;
  --ink-soft: #404048;
  --muted: #8A8A95;
  --line: #E5E5DD;
  --line-dark: #1A1A22;
  --electric: #2E5BFF;
  --electric-dark: #1E3FBF;
  --electric-light: #E8EEFF;
  --magenta: #FF1F88;
  --magenta-dark: #C8156A;
  --magenta-soft: #FFE8F3;
  --yellow: #FFE600;
  --green: #00C374;
  --container: 1280px;
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Space Grotesk', -apple-system, system-ui, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--electric); text-decoration: none; transition: all .15s ease; }
a:hover { color: var(--magenta); }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; letter-spacing: -0.02em; }
p { margin-bottom: 1rem; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--electric);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: var(--electric-light);
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
}
.eyebrow::before {
  content: '●';
  color: var(--electric);
  font-size: 0.625rem;
}
.eyebrow.magenta {
  color: var(--magenta);
  background: var(--magenta-soft);
}
.eyebrow.magenta::before { color: var(--magenta); }

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  font-weight: 400;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 3rem 0; }
@media (max-width: 768px) { .section { padding: 3.5rem 0; } }

/* Marquee strip */
.marquee {
  background: var(--surface-dark);
  color: var(--bg);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.marquee-item { display: inline-flex; align-items: center; gap: 1rem; }
.marquee-item::after {
  content: '✦';
  color: var(--magenta);
  margin-left: 3rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--electric);
  color: var(--bg);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.brand-slash {
  color: var(--magenta);
  font-weight: 700;
  margin: 0 -0.125rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-menu a {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-menu a:hover { color: var(--electric); }
.nav-menu a.active { color: var(--electric); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
  padding: 0.625rem 1.125rem !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: all .15s ease !important;
}
.nav-cta:hover {
  background: var(--electric) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .25s ease;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: inline-block; }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.25rem 0 0;
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  color: var(--muted);
  position: relative;
  z-index: 2;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after {
  content: '→';
  color: var(--electric);
  margin-left: 0.5rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--electric); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all .15s ease;
  cursor: pointer;
  letter-spacing: -0.015em;
  text-decoration: none;
  text-transform: none;
}
.btn-primary {
  background: var(--electric);
  color: var(--bg);
  border-color: var(--electric);
  box-shadow: 0 4px 0 var(--electric-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--electric-dark);
  color: var(--bg);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--electric-dark);
}
.btn-magenta {
  background: var(--magenta);
  color: var(--bg);
  border-color: var(--magenta);
  box-shadow: 0 4px 0 var(--magenta-dark);
}
.btn-magenta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--magenta-dark);
  color: var(--bg);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  color: var(--electric);
  padding: 0.625rem 0;
  font-weight: 700;
  font-family: var(--font-display);
}
.btn-ghost::after { content: ' →'; display: inline-block; transition: transform .15s ease; }
.btn-ghost:hover { color: var(--magenta); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-lg { padding: 1.25rem 2.25rem; font-size: 1.125rem; }

/* Hero */
.hero {
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 3rem 0; }
}
.hero h1 { letter-spacing: -0.045em; }
.hero h1 .highlight {
  background: var(--yellow);
  padding: 0 0.15em;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: 0 4px 0 var(--surface-dark);
}
.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 6px;
  color: var(--muted);
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 460px;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -10px;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--bg);
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.8125rem; color: var(--ink-soft); line-height: 1.4; }
.hero-proof-text strong { color: var(--ink); }

/* Stats card hero visual */
.stats-card {
  background: var(--surface-dark);
  color: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 24px 48px -12px rgba(10, 10, 15, 0.25), 8px 8px 0 var(--magenta);
}
.stats-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.1);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stats-card-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 600;
}
.stats-card-live::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.stats-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(250, 250, 247, 0.1);
}
.stats-card-row:last-child { border-bottom: none; }
.stats-card-label {
  font-size: 0.875rem;
  color: rgba(250, 250, 247, 0.6);
}
.stats-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.stats-card-value .up {
  color: var(--green);
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 600;
}
.stats-card-value .down {
  color: var(--magenta);
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-weight: 600;
}
.stats-card-footnote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Metric bar */
.metric-bar {
  background: var(--surface-dark);
  color: var(--bg);
  padding: 3rem 0;
  position: relative;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .metric-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }
.metric-item {
  text-align: left;
}
.metric-item-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--electric);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.metric-item-value.magenta { color: var(--magenta); }
.metric-item-value.yellow { color: var(--yellow); }
.metric-item-value.green { color: var(--green); }
.metric-item-label {
  font-size: 0.875rem;
  color: rgba(250, 250, 247, 0.7);
  line-height: 1.4;
}

/* Section header */
.section-header {
  max-width: 760px;
  margin-bottom: 4rem;
}
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .eyebrow { display: inline-flex; }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .15s ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.service-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.service-card.accent {
  background: var(--surface-dark);
  color: var(--bg);
  box-shadow: 4px 4px 0 var(--magenta);
}
.service-card.accent:hover { box-shadow: 8px 8px 0 var(--magenta); }
.service-card.accent h3 { color: var(--bg); }
.service-card.accent p { color: rgba(250, 250, 247, 0.75); }
.service-card.accent .service-card-tag { background: var(--magenta); color: var(--bg); }
.service-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--electric);
  color: var(--bg);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.service-card h3 {
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ROI Calculator visual */
.roi-section {
  background: var(--surface-dark);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.roi-section h2 { color: var(--bg); }
.roi-section .eyebrow { background: rgba(46, 91, 255, 0.2); color: var(--electric); }
.roi-section p { color: rgba(250, 250, 247, 0.7); }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; gap: 3rem; } }

.roi-table {
  background: rgba(250, 250, 247, 0.05);
  border: 1px solid rgba(250, 250, 247, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.roi-table-header {
  background: var(--electric);
  color: var(--bg);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-table-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.08);
  align-items: center;
}
.roi-table-row:last-child { border-bottom: none; background: rgba(46, 91, 255, 0.15); }
.roi-table-label { font-size: 0.9375rem; color: rgba(250, 250, 247, 0.85); }
.roi-table-value { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.roi-table-value.magenta { color: var(--magenta); }
.roi-table-value.green { color: var(--green); }

/* Process - DR step layout */
.dr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .dr-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .dr-steps { grid-template-columns: 1fr; } }
.dr-step {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.dr-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--ink);
}
.dr-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.dr-step p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all .15s ease;
}
.pricing-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.pricing-card.featured {
  background: var(--surface-dark);
  color: var(--bg);
  box-shadow: 4px 4px 0 var(--electric);
}
.pricing-card.featured:hover { box-shadow: 8px 8px 0 var(--electric); }
.pricing-card.featured h3 { color: var(--bg); }
.pricing-card.featured .pricing-amount { color: var(--electric); }
.pricing-card.featured .pricing-description { color: rgba(250, 250, 247, 0.7); }
.pricing-card.featured .pricing-features li { color: rgba(250, 250, 247, 0.85); }
.pricing-card.featured .pricing-features { border-top-color: rgba(250, 250, 247, 0.1); }
.pricing-card.featured::before {
  content: 'BEST DEAL';
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border: 2px solid var(--ink);
  border-radius: 100px;
}
.pricing-card-tier {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--electric);
  margin: 1rem 0 0.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-amount .unit {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-description {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1.25rem 0 0;
  border-top: 2px dashed var(--line);
  flex-grow: 1;
}
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: 500;
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

/* FAQ - bold accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all .15s ease;
}
.faq-item.open {
  box-shadow: 4px 4px 0 var(--electric);
  transform: translate(-2px, -2px);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.02em;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--magenta);
  transition: transform .2s ease;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 700;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--ink-soft);
  padding: 0 1.75rem;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.75rem 1.5rem;
}
.faq-answer p { margin-bottom: 0; color: var(--ink-soft); font-size: 1rem; }

/* Article body */
.article-header {
  padding: 4rem 0 2rem;
}
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.article-meta-dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.article-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--electric);
  color: var(--bg);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}
.article-body h2 {
  font-size: 2rem;
  margin: 2.75rem 0 1rem;
  letter-spacing: -0.03em;
}
.article-body h3 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
}
.article-body p { margin-bottom: 1.5rem; color: var(--ink-soft); }
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; color: var(--ink-soft); }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body code {
  background: var(--electric-light);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: var(--font-mono);
  color: var(--electric-dark);
}
.article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--electric-light);
  border-left: 4px solid var(--electric);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .15s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 0 var(--ink);
}
.blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--electric);
}
.blog-card-cover {
  aspect-ratio: 16/10;
  background: var(--electric);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--ink);
}
.blog-card-cover.magenta { background: var(--magenta); }
.blog-card-cover.yellow { background: var(--yellow); }
.blog-card-cover::after {
  content: attr(data-label);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--bg);
  letter-spacing: -0.04em;
  padding: 1rem;
  text-align: center;
  line-height: 1;
}
.blog-card-cover.yellow::after { color: var(--ink); }
.blog-card-content { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.875rem;
  display: block;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  flex-grow: 1;
  letter-spacing: -0.025em;
}
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--electric); }
.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 1rem;
  margin-top: auto;
  font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-block {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 4px 4px 0 var(--ink);
}
.contact-info-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--line);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--electric);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-info-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--electric); }

.form { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: all .15s ease;
  font-weight: 500;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 4px 4px 0 var(--electric);
  transform: translate(-2px, -2px);
}
.form textarea { min-height: 140px; resize: vertical; }

/* Page header */
.page-header {
  padding: 4rem 0 3rem;
  border-bottom: 2px solid var(--ink);
}
.page-header h1 { margin-bottom: 1rem; }

/* CTA section */
.cta-section {
  background: var(--magenta);
  color: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: var(--bg); max-width: 760px; letter-spacing: -0.035em; }
.cta-section p { color: rgba(255, 255, 255, 0.9); max-width: 620px; margin-bottom: 2.5rem; font-size: 1.125rem; }
.cta-section .btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: 0 4px 0 #000;
}
.cta-section .btn-primary:hover { box-shadow: 0 6px 0 #000; }
.cta-decor {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.85;
  bottom: -5rem;
  right: -3rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* Footer */
.footer {
  background: var(--surface-dark);
  color: rgba(250, 250, 247, 0.7);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: var(--bg); margin-bottom: 1rem; }
.footer-brand .brand-icon { background: var(--electric); color: var(--bg); }
.footer-brand p {
  font-size: 1rem;
  margin-bottom: 1rem;
  max-width: 320px;
  color: rgba(250, 250, 247, 0.7);
}
.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.7);
}
.footer-contact a { color: var(--electric); }
.footer-contact a:hover { color: var(--magenta); }
.footer-col h4 {
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  color: rgba(250, 250, 247, 0.65);
  font-size: 0.9375rem;
}
.footer-col a:hover { color: var(--electric); }
.footer-bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(250, 250, 247, 0.5);
}
.footer-bottom p { margin: 0; color: rgba(250, 250, 247, 0.5); }
.footer-bottom a { color: rgba(250, 250, 247, 0.6); }

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utilities */
.text-electric { color: var(--electric); }
.text-magenta { color: var(--magenta); }
hr { border: none; border-top: 2px solid var(--ink); margin: 2.5rem 0; }
.mono { font-family: var(--font-mono); }
