/* =========================================================
   Pangolin Home Page - exported from Figma
   Fonts: Hanken Grotesk (headings), Inter (body), JetBrains Mono (labels)
   ========================================================= */

:root {
  --ink:        #334155;  /* primary heading */
  --slate:      #565e74;  /* body text */
  --slate-alt:  #5c647a;  /* badge label */
  --accent:     #ff6b35;  /* orange */
  --accent-dk:  #ab3500;  /* delta text */
  --tan:        #e1bfb5;  /* card border / muted bars */
  --badge-bg:   #dae2fd;
  --hero-bg:    #f7f9fb;
  --insights-bg:#f7f9fb;
  --cta-bg:     #0f172a;
  --cta-text:   #bec6e0;
  --card-border:#e0e3e5;
  --chart-bg:   #f2f4f6;
  --max:        1440px;
}

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

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate);
  background: #fff;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn:hover { background: #f2601f; }
.btn--wide { width: 220px; padding: 16px 32px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--hero-bg);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-header__logo { display: inline-flex; }
.site-header__logo img { height: 40px; width: auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--hero-bg);
  padding: 80px 0 30px;
}

.hero__inner {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.hero__text {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--badge-bg);
  border-radius: 12px;
}
.badge__icon { width: 13.33px; height: 8px; }
.badge__label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.6px;
  line-height: 14px;
  color: var(--slate-alt);
}

.hero__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: var(--ink);
}
.hero__title-accent { color: var(--accent); font-weight: 400; }

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 576px;
}
.hero__copy p {
  font-size: 18px;
  line-height: 28px;
  color: var(--slate);
}

.hero__cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

/* Hero dashboard card */
.hero__image { flex: 1 0 0; min-width: 0; }

.dash-card {
  background: #fff;
  border: 1px solid var(--tan);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.dash-card__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.dash-card__label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--slate);
  text-transform: uppercase;
}
.dash-card__value {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.32px;
  color: var(--ink);
}
.dash-card__delta {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--accent-dk);
}

.dash-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.bar {
  width: 8px;
  border-radius: 2px 2px 0 0;
  display: block;
}
.bar--muted  { background: var(--tan); }
.bar--accent { background: var(--accent); }

.dash-card__chart {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--chart-bg);
  border: 1px solid var(--card-border);
  border-radius: 2px;
  overflow: hidden;
}
.dash-card__chart > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.dash-card__legend {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.legend-pill { width: 48px; height: 8px; border-radius: 12px; display: block; }
.legend-pill--blue   { background: #0a66c2; }
.legend-pill--orange { background: var(--accent); }

/* Benefits row */
.benefits {
  padding-top: 51px;
  text-align: center;
}
.benefits p {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #000;
}

/* Trusted by */
.trusted {
  padding-top: 20px;
}
.trusted__label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
}
.trusted__logos {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trusted__logos img { object-fit: contain; }

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  background: #fff;
  border-top: 1px solid var(--tan);
  border-bottom: 1px solid var(--tan);
  padding: 97px 0;
}
.features__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.features__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.section-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 40px;
  letter-spacing: -0.32px;
  color: var(--ink);
}
.features__sub {
  max-width: 672px;
  font-size: 20px;
  line-height: 24px;
  color: var(--slate);
}

.features__grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.feature {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10.8px;
  padding: 33px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon img { width: 18px; height: 18px; }
.feature__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: var(--ink);
  padding-top: 13.2px;
  min-height: 96px;
  display: flex;
  align-items: center;
}
.feature__body {
  font-size: 16px;
  line-height: 22.75px;
  color: var(--slate);
}

/* =========================================================
   INSIGHTS
   ========================================================= */
.insights {
  background: var(--insights-bg);
  padding: 96px 0;
}
.insights__inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.insights__media {
  flex: 1 0 0;
  min-width: 0;
}
.insights__media img {
  width: 500px;
  max-width: 100%;
  height: auto;
}
.insights__content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.insights__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.32px;
  color: var(--ink);
}
.insights__intro {
  font-size: 16px;
  line-height: 24px;
  color: var(--slate);
}

.insights__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
.insight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.insight-item__check {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
}
.insight-item__strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
}
.insight-item__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--slate);
  margin-top: 2.5px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  background: var(--cta-bg);
  padding: 80px 192px;
  overflow: hidden;
}
.cta__inner {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.cta__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.96px;
  color: #fff;
}
.cta__text {
  font-size: 18px;
  line-height: 28px;
  color: var(--cta-text);
}
.cta__note {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--cta-text);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--cta-bg);
  border-top: 1px solid #3f465c;
  padding: 33px 0 32px;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__brand { display: inline-flex; }
.site-footer__brand img { height: 40px; width: auto; }

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-footer__links a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--cta-text);
  text-decoration: none;
}
.site-footer__links a:hover { color: #fff; }
.site-footer__social { display: inline-flex; }
.site-footer__social img { height: 21px; width: auto; }

.site-footer__copy {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  opacity: 0.6;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 80px 0 96px;
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact__head {
  text-align: center;
  margin-bottom: 40px;
}
.contact__head .section-title { line-height: 56px; }
.contact__sub {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--slate);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-field { flex: 1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--slate-alt);
}
.form-field .req { color: var(--accent); }

.form-field input,
.form-field textarea {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 2px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-error {
  font-size: 14px;
  line-height: 20px;
  color: var(--accent-dk);
}
.form-alert {
  padding: 14px 16px;
  border: 1px solid var(--tan);
  border-radius: 2px;
  background: #fdf0ea;
  color: var(--accent-dk);
  font-size: 15px;
  margin-bottom: 24px;
}
.form-note {
  font-size: 14px;
  line-height: 20px;
  color: var(--slate);
}
.form-note .req { color: var(--accent); }

/* honeypot - visually hidden */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__success {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--hero-bg);
}
.contact__success-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* =========================================================
   HEADER NAV
   ========================================================= */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__navlink {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
}
.site-header__navlink:hover { color: var(--accent); }

/* =========================================================
   COOKIE CONSENT
   ========================================================= */
.consent {
  position: fixed;
  z-index: 100;
  left: 24px;
  bottom: 24px;
  max-width: 420px;
}
.consent__card {
  background: #fff;
  border: 1px solid var(--tan);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}
.consent__label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--slate-alt);
  margin-bottom: 8px;
}
.consent__text {
  font-size: 14px;
  line-height: 21px;
  color: var(--slate);
}
.consent__text a { color: var(--accent-dk); }
.consent__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
/* Both choices deliberately identical - rejecting is as easy as accepting */
.consent__btn {
  flex: 1;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.consent__btn:hover { background: var(--ink); color: #fff; }
.consent__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-hero {
  background: var(--hero-bg);
  padding: 72px 0 48px;
}
.blog-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.blog-hero__sub {
  max-width: 620px;
  font-size: 18px;
  line-height: 28px;
  color: var(--slate);
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
}
.tag-pill {
  display: inline-flex;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.8px;
  line-height: 16px;
  color: var(--slate-alt);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.tag-pill:hover { border-color: var(--accent); color: var(--accent-dk); }
.tag-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tag-pill--active:hover { color: #fff; }

.blog-list { padding: 64px 0 96px; }

.blog-empty {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: var(--slate);
}
.blog-empty a { color: var(--accent-dk); }

/* Signature: each post carries a small "distribution" derived from its slug */
.post-motif {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-bottom: 20px;
}
.post-motif--featured {
  height: 48px;
  margin: 0;
  align-self: center;
  flex-shrink: 0;
  gap: 8px;
}
.post-motif--featured .bar { width: 24px; border-radius: 3px 3px 0 0; }

.post-meta {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 18px;
  color: var(--slate-alt);
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.post-card:hover {
  border-color: var(--tan);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.08);
}

.post-card--featured {
  flex-direction: row;
  align-items: center;
  gap: 64px;
  padding: 48px;
  border: 1px solid var(--tan);
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  margin-bottom: 48px;
}
.post-card__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.post-card__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--ink);
}
.post-card__title--lg {
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  letter-spacing: -0.5px;
}
.post-card__title a {
  color: inherit;
  text-decoration: none;
}
.post-card__title a:hover { color: var(--accent); }

.post-card__excerpt {
  font-size: 15px;
  line-height: 24px;
  color: var(--slate);
}
.post-card--featured .post-card__excerpt { font-size: 17px; line-height: 27px; }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.post-card__more {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.7px;
  color: var(--accent-dk);
  text-decoration: none;
}
.post-card__more:hover { color: var(--accent); }

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

/* ---------- Single post ---------- */
.blog-post { padding: 72px 0 96px; }
.blog-post__inner { max-width: 720px; margin: 0 auto; }

.blog-post__back {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--slate-alt);
  text-decoration: none;
}
.blog-post__back:hover { color: var(--accent-dk); }

.blog-post .post-meta { margin-top: 32px; }

.blog-post__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-top: 12px;
}
.blog-post .post-tags { margin-top: 20px; }
.blog-post__notfound { margin-top: 16px; font-size: 17px; line-height: 27px; }
.blog-post__notfound a { color: var(--accent-dk); }

.blog-post__body { margin-top: 40px; }
.blog-post__body > * + * { margin-top: 18px; }
.blog-post__body h2,
.blog-post__body h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.blog-post__body h2 { font-size: 27px; line-height: 36px; margin-top: 44px; }
.blog-post__body h3 { font-size: 20px; line-height: 28px; margin-top: 32px; }
.blog-post__body p,
.blog-post__body li {
  font-size: 17px;
  line-height: 28px;
  color: var(--slate);
}
.blog-post__body strong { color: var(--ink); }
.blog-post__body a { color: var(--accent-dk); }
.blog-post__body ul,
.blog-post__body ol { padding-left: 24px; }
.blog-post__body li + li { margin-top: 8px; }
.blog-post__body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  background: var(--chart-bg);
  border-radius: 2px;
  padding: 1px 5px;
}
.blog-post__body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.blog-post__body blockquote p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 32px;
  color: var(--ink);
}

.blog-post__cta {
  margin-top: 64px;
  background: var(--cta-bg);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}
.blog-post__cta-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  color: #fff;
}
.blog-post__cta-text {
  margin: 10px 0 24px;
  font-size: 16px;
  line-height: 24px;
  color: var(--cta-text);
}

/* =========================================================
   LEGAL (privacy notice)
   ========================================================= */
.legal { padding: 72px 0 96px; }
.legal__inner { max-width: 760px; margin: 0 auto; }

.legal__title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-top: 12px;
}
.legal__intro {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
  color: var(--slate);
}
.legal h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  color: var(--ink);
  margin-top: 48px;
}
.legal h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 27px;
  color: var(--ink);
  margin-top: 28px;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 26px;
  color: var(--slate);
  margin-top: 12px;
}
.legal ul { padding-left: 24px; }
.legal li { margin-top: 8px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--accent-dk); }
.legal code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  background: var(--chart-bg);
  border-radius: 2px;
  padding: 1px 5px;
}

.legal__tablewrap { overflow-x: auto; margin-top: 16px; }
.legal__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border: 1px solid var(--card-border);
}
.legal__table th {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: left;
  color: var(--slate-alt);
  background: var(--hero-bg);
}
.legal__table th, .legal__table td {
  border: 1px solid var(--card-border);
  padding: 10px 12px;
  font-size: 14px;
  line-height: 21px;
  vertical-align: top;
}
.legal__table td { color: var(--slate); }

.legal__consent {
  margin-top: 32px;
  padding: 24px;
  background: var(--hero-bg);
  border: 1px solid var(--tan);
  border-radius: 4px;
}
.legal__consent h3 { margin-top: 0; }
.legal__consent .consent__actions { max-width: 420px; }
.legal__consent-note { font-size: 14px; line-height: 21px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-card--featured { flex-direction: column-reverse; align-items: flex-start; gap: 32px; padding: 32px; }
  .post-motif--featured { align-self: flex-start; }

  .hero__inner { flex-direction: column; }
  .hero__text  { align-items: center; text-align: center; }
  .hero__title { text-align: center; }
  .hero__image { width: 100%; max-width: 568px; }

  .features__grid { flex-direction: column; align-items: stretch; }
  .feature__title { min-height: 0; }

  .insights__inner { flex-direction: column; align-items: flex-start; }
  .insights__media img { width: 100%; }

  .cta { padding: 80px 24px; }
}

@media (max-width: 560px) {
  .hero__title, .section-title, .cta__title { font-size: 34px; line-height: 42px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .benefits p, .trusted__label { letter-spacing: 1px; font-size: 13px; }

  .site-footer__inner { flex-direction: column; text-align: center; gap: 20px; }

  .form-row { flex-direction: column; gap: 20px; }

  .consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .consent__actions { flex-direction: column; }
  .blog-post__title, .legal__title { font-size: 30px; line-height: 40px; }
  .post-card__title--lg { font-size: 26px; line-height: 34px; }
}
