/* Blockanalys – delad stilmall för landningssidor (matchar startsidan) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1a18;
  --ink-muted: #6b6b65;
  --ink-faint: #a8a89f;
  --paper: #f6f4ef;
  --paper-warm: #ede9e0;
  --accent: #c8401a;
  --accent-muted: #e8d5cf;
  --border: rgba(26,26,24,0.12);
  --border-strong: rgba(26,26,24,0.25);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 0.5px solid var(--border);
}
.logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--accent); }
.nav-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); border: 0.5px solid var(--border-strong); padding: 0.3rem 0.75rem; border-radius: 2px; }

/* URGENCY BAND */
.urgency-band { background: var(--ink); color: var(--paper); padding: 0.85rem 3rem; display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.82rem; letter-spacing: 0.02em; }
.urgency-band strong { color: #e8b89a; }
.urgency-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* LAYOUT */
.container { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.breadcrumb { max-width: 760px; margin: 1.75rem auto 0; padding: 0 1.5rem; font-size: 0.8rem; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* ARTICLE HEAD */
.article-head { padding: 2.5rem 0 1.5rem; }
.eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--accent); }
h1 { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
h1 em { font-style: italic; color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--ink-muted); line-height: 1.7; }

/* PROSE */
.prose { padding: 0.5rem 0 2rem; }
.prose h2 { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; margin: 2.25rem 0 0.85rem; }
.prose h3 { font-size: 1.05rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; color: #2c2c28; }
.prose ul { margin: 0 0 1rem 1.2rem; color: #2c2c28; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* FAQ */
.faq { border-top: 0.5px solid var(--border); padding-top: 0.5rem; margin-top: 1rem; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 1.15rem 0; }
.faq-item h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; margin-bottom: 0.4rem; }
.faq-item p { color: var(--ink-muted); margin: 0; }

/* CTA BAND + FORM */
.cta { background: #fff; border: 0.5px solid var(--border-strong); border-radius: 4px; padding: 2.25rem; margin: 2.5rem 0; }
.cta h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.cta p { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 1.4rem; }
.leadForm { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.leadForm input[type="email"] { flex: 1 1 240px; padding: 0.8rem 1rem; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--paper); border: 0.5px solid var(--border-strong); border-radius: 2px; outline: none; transition: border-color 0.2s; }
.leadForm input[type="email"]:focus { border-color: var(--ink); }
.leadForm button { padding: 0.8rem 1.5rem; background: var(--ink); color: var(--paper); font-family: var(--sans); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
.leadForm button:hover { background: var(--accent); }
.form-note { font-size: 0.75rem; color: var(--ink-faint); margin-top: 0.9rem; }
.success-msg { display: none; padding: 0.5rem 0; }
.success-msg .icon { width: 42px; height: 42px; border: 1.5px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 0.8rem; }
.success-msg h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 0.3rem; }
.success-msg p { color: var(--ink-muted); margin: 0; }

/* RELATED LINKS */
.related { border-top: 0.5px solid var(--border); padding: 1.75rem 0 0; margin-top: 1rem; }
.related h2 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.75rem; }
.related a { display: block; color: var(--accent); text-decoration: none; padding: 0.35rem 0; font-size: 0.95rem; }
.related a:hover { text-decoration: underline; }

/* OM BLOCKANALYS (team-E-E-A-T) */
.trust-team { background: var(--paper-warm); border: 0.5px solid var(--border); border-radius: 4px; padding: 1.25rem 1.5rem; margin: 2rem 0 0; font-size: 0.92rem; color: var(--ink-muted); line-height: 1.65; }
.trust-team strong { color: var(--ink); }

/* FOOTER-MENY */
.footer-nav { max-width: 760px; margin: 2.5rem auto 0; padding: 2rem 1.5rem 0; border-top: 0.5px solid var(--border); display: flex; flex-wrap: wrap; gap: 2.5rem; }
.footer-col h3 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 0.6rem; font-weight: 500; }
.footer-col a { display: block; color: var(--ink-muted); text-decoration: none; font-size: 0.88rem; padding: 0.22rem 0; }
.footer-col a:hover { color: var(--accent); }

/* FOOTER */
footer { padding: 2rem 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 0.5px solid var(--border); font-size: 0.78rem; color: var(--ink-faint); margin-top: 2rem; }
footer a { color: var(--ink-faint); text-decoration: none; }

@media (max-width: 800px) {
  nav { padding: 1.25rem 1.5rem; }
  .urgency-band { flex-direction: column; gap: 0.4rem; text-align: center; padding: 0.85rem 1.5rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
}
