/* ============================================================
   Célian Dorneval — "Dimension" design system
   Pre-dawn glassmorphic command deck
   ============================================================ */

:root {
  /* Colors */
  --color-void: #0a0a0a;
  --color-char: #1d1d1d;
  --color-iron: #3d3d3d;
  --color-slate: #505050;
  --color-smoke: #797979;
  --color-graphite: #161616;
  --color-ink: #282828;
  --color-fog: #686868;
  --color-mist: #c2c2c2;
  --color-ash: #b2b2b2;
  --color-bone: #e5e5e5;
  --color-paper: #ffffff;
  --color-onyx: #000000;
  --color-indigo: #6b62f2;

  --gradient-indigo-haze: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(107,98,242,0.565) 50%, rgba(0,0,0,0) 60%, rgba(0,0,0,0));
  --gradient-dawn-wash: linear-gradient(180deg, rgb(72,103,175) 0%, rgb(156,175,184) 50%, rgb(196,149,119) 100%);

  /* Fonts */
  --font-dm-sans: 'DM Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-geist: 'Geist', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --text-caption: 14px;
  --text-body: 16px;
  --text-body-lg: 18px;
  --text-subheading: 24px;
  --text-heading-sm: 32px;
  --text-heading: 40px;
  --text-heading-lg: 48px;
  --text-display: 72px;

  /* Spacing */
  --section-gap: 80px;
  --page-max-width: 1200px;

  /* Radius */
  --radius-pill: 9999px;
  --radius-cards: 24px;
  --radius-inputs: 10px;
  --radius-large: 40px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-void);
  color: var(--color-bone);
  font-family: var(--font-dm-sans);
  font-size: var(--text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }

.section-label {
  font-family: var(--font-dm-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fog);
  margin: 0 0 20px;
}

.section-title {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: clamp(32px, 5vw, var(--text-heading-lg));
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-paper);
  margin: 0 0 20px;
  max-width: 640px;
}

.section-intro {
  color: var(--color-mist);
  font-size: var(--text-body-lg);
  max-width: 620px;
  margin: 0 0 48px;
}

.hairline {
  height: 1px;
  width: 100%;
  border: 0;
  background: rgba(229, 229, 229, 0.08);
  margin: 0;
}

.hairline--indigo {
  height: 1px;
  background: var(--gradient-indigo-haze);
  opacity: 0.9;
}

/* ============================================================
   HEADER — floating pill nav (top)
   ============================================================ */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: 1100px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 56px;
  padding: 0 8px 0 20px;
  border-radius: var(--radius-pill);
  background: rgba(29, 29, 29, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 229, 229, 0.10);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-paper);
  white-space: nowrap;
}

.nav__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-indigo);
  box-shadow: 0 0 12px 2px rgba(107, 98, 242, 0.7);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-bone);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: rgba(229, 229, 229, 0.08);
  color: var(--color-paper);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--color-paper);
  color: var(--color-void);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.nav__cta:hover { opacity: 0.86; }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 229, 229, 0.1);
  background: transparent;
  color: var(--color-bone);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__burger svg { width: 18px; height: 18px; }

/* ============================================================
   HERO — dawn wash gradient band
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--gradient-dawn-wash);
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.hero__spot {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 35%, rgba(107, 98, 242, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 28px;
  border-radius: var(--radius-pill);
  background: rgba(29, 29, 29, 0.5);
  border: 1px solid rgba(229, 229, 229, 0.12);
  font-size: 13px;
  color: var(--color-mist);
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-indigo);
  box-shadow: 0 0 8px 1px rgba(107,98,242,0.8);
}

.hero__title {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: clamp(40px, 8vw, var(--text-display));
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--color-paper);
  margin: 0 0 24px;
  max-width: 560px;
}

.hero__lede {
  font-size: var(--text-body-lg);
  color: var(--color-mist);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--color-paper); color: var(--color-void); }
.btn--primary:hover { opacity: 0.86; }
.btn--ghost {
  background: rgba(29, 29, 29, 0.4);
  color: var(--color-bone);
  border-color: rgba(229, 229, 229, 0.14);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: rgba(229, 229, 229, 0.3); }

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero__stat .num {
  font-family: var(--font-geist);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-paper);
  letter-spacing: -0.02em;
}
.hero__stat .lab {
  font-size: 13px;
  color: var(--color-fog);
  letter-spacing: 0.04em;
}

/* ---------- Glass mockup (RTP dashboard) ---------- */
.glass {
  background: rgba(29, 29, 29, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(229, 229, 229, 0.08);
  border-radius: var(--radius-cards);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mockup { padding: 20px; }

.mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 16px;
}
.mockup__title {
  font-family: var(--font-geist);
  font-size: 15px;
  color: var(--color-bone);
  display: flex; align-items: center; gap: 10px;
}
.mockup__avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-ink);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600; color: var(--color-bone);
}
.mockup__pill {
  font-size: 12px; color: var(--color-mist);
  background: var(--color-iron);
  padding: 6px 12px; border-radius: var(--radius-pill);
}

.mockup__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-top: 1px solid rgba(229, 229, 229, 0.06);
  font-family: var(--font-geist);
}
.mockup__row .name { font-size: 14px; color: var(--color-mist); }
.mockup__row .name b { color: var(--color-bone); font-weight: 600; }
.mockup__row .val { font-size: 14px; color: var(--color-bone); font-variant-numeric: tabular-nums; }

.bar {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--color-ink);
  overflow: hidden;
}
.bar > span {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(107,98,242,0.35), rgba(107,98,242,0.85));
}

.mockup__dock {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-pill);
  background: #2a2a2a;
}
.dock__well {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--color-ink);
  display: grid; place-items: center;
  color: var(--color-ash);
}
.dock__well svg { width: 18px; height: 18px; }
.dock__badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: var(--radius-pill);
  background: #ef4444;
  color: #fff;
  font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}

/* ============================================================
   Generic cards
   ============================================================ */
.card {
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.08);
  border-radius: var(--radius-cards);
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: rgba(229, 229, 229, 0.18); transform: translateY(-2px); }

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

.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.1);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-mist);
}

.card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-graphite);
  border: 1px solid rgba(229,229,229,0.06);
  display: grid; place-items: center;
  color: var(--color-bone);
  margin-bottom: 18px;
}
.card__icon svg { width: 20px; height: 20px; }
.card h3 {
  font-family: var(--font-geist);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-paper);
  margin: 0 0 10px;
}
.card p { color: var(--color-mist); font-size: 15px; margin: 0; }

/* ---------- About / photo blocks ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.photo-frame {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid rgba(229, 229, 229, 0.1);
  background: var(--color-char);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.photo-frame__tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
}

.about__body p { color: var(--color-mist); font-size: var(--text-body-lg); }
.about__body p + p { margin-top: 18px; }
.about__signature {
  font-family: var(--font-geist);
  color: var(--color-bone);
  font-style: italic;
  margin-top: 24px;
}

/* ---------- Expertise weighted list ---------- */
.weight-list { display: flex; flex-direction: column; gap: 20px; }
.weight-row .top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.weight-row .top .k { font-size: 16px; color: var(--color-bone); }
.weight-row .top .v {
  font-family: var(--font-geist);
  font-size: 14px; color: var(--color-fog);
  font-variant-numeric: tabular-nums;
}
.weight-track {
  height: 8px; border-radius: var(--radius-pill);
  background: var(--color-ink); overflow: hidden;
}
.weight-track > span {
  display: block; height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(107,98,242,0.3), rgba(107,98,242,0.85));
}

/* ---------- Numbered method list ---------- */
.method-list { display: flex; flex-direction: column; }
.method-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(229, 229, 229, 0.06);
}
.method-row:first-child { border-top: 0; }
.method-row .ord {
  font-family: var(--font-geist);
  font-size: 14px; color: var(--color-fog);
  padding-top: 4px;
}
.method-row h3 {
  font-family: var(--font-geist);
  font-size: 20px; font-weight: 600;
  color: var(--color-paper); margin: 0 0 8px;
}
.method-row p { color: var(--color-mist); font-size: 15px; margin: 0; }

/* ---------- Testimonials ---------- */
.quote { display: flex; flex-direction: column; gap: 18px; }
.quote p {
  font-family: var(--font-geist);
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-bone);
  margin: 0;
}
.quote .who { font-size: 14px; color: var(--color-fog); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.08);
  border-radius: var(--radius-inputs);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--color-bone);
  font-family: var(--font-dm-sans);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.faq__q .plus {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  position: relative;
  color: var(--color-fog);
  transition: transform 0.25s ease;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: ""; position: absolute; background: currentColor;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq__q .plus::before { width: 14px; height: 1.5px; }
.faq__q .plus::after { width: 1.5px; height: 14px; transition: transform 0.25s ease; }
.faq__item.open .plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--color-mist);
  font-size: 15px;
}

/* ---------- Responsible gaming band ---------- */
.responsible {
  background: var(--color-graphite);
  border: 1px solid rgba(229, 229, 229, 0.08);
  border-radius: var(--radius-large);
  padding: 44px;
}
.responsible__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.responsible h2 { font-family: var(--font-dm-sans); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; color: var(--color-paper); margin: 0 0 14px; }
.responsible p { color: var(--color-mist); font-size: 15px; margin: 0 0 10px; }
.responsible ul { display: flex; flex-direction: column; gap: 12px; }
.responsible li { display: flex; gap: 12px; align-items: flex-start; color: var(--color-mist); font-size: 15px; }
.responsible li b { color: var(--color-bone); font-weight: 600; }
.responsible li .dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--color-indigo); margin-top: 7px; box-shadow: 0 0 8px 1px rgba(107,98,242,0.6); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.social {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.1);
  color: var(--color-bone);
  font-size: 15px; font-weight: 500;
  transition: border-color 0.2s ease;
}
.social:hover { border-color: rgba(229, 229, 229, 0.28); }
.social svg { width: 18px; height: 18px; }

/* ============================================================
   BLOG
   ============================================================ */
.page-hero {
  position: relative;
  padding: 150px 0 40px;
  isolation: isolate;
  overflow: hidden;
}
.page-hero__spot {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px; z-index: -1;
  background: radial-gradient(50% 50% at 50% 35%, rgba(107, 98, 242, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
}
.page-hero h1 {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--color-paper);
  margin: 20px 0 20px;
  max-width: 720px;
}
.page-hero p { color: var(--color-mist); font-size: var(--text-body-lg); max-width: 620px; }

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

.post-card {
  display: flex; flex-direction: column;
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.08);
  border-radius: var(--radius-cards);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.post-card:hover { border-color: rgba(229, 229, 229, 0.2); transform: translateY(-3px); }
.post-card__thumb {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(107,98,242,0.35), rgba(29,29,29,0) 55%),
    var(--gradient-dawn-wash);
  position: relative;
}
.post-card__thumb .glass-mini {
  position: absolute; inset: auto 16px 16px 16px;
  background: rgba(29,29,29,0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(229,229,229,0.1);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font-geist);
  font-size: 13px; color: var(--color-bone);
  display: flex; justify-content: space-between;
}
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--color-fog); }
.post-card h2 {
  font-family: var(--font-geist);
  font-size: 22px; font-weight: 600; line-height: 1.2;
  color: var(--color-paper); margin: 0;
}
.post-card p { color: var(--color-mist); font-size: 15px; margin: 0; flex: 1; }
.post-card__more { display: inline-flex; align-items: center; gap: 8px; color: var(--color-bone); font-weight: 500; font-size: 15px; margin-top: 4px; }

.post-card--soon { opacity: 0.55; }
.post-card--soon .post-card__thumb { filter: grayscale(0.4); }

/* ============================================================
   ARTICLE
   ============================================================ */
.article { padding: 130px 0 60px; }
.article__wrap { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--color-fog); font-size: 14px; margin-bottom: 20px; }
.article h1 {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-paper);
  margin: 0 0 24px;
}
.article__lede { font-size: 20px; color: var(--color-mist); line-height: 1.5; margin: 0 0 40px; }
.article__hero-img {
  border-radius: var(--radius-cards);
  overflow: hidden;
  margin-bottom: 44px;
  aspect-ratio: 16/9;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(107,98,242,0.4), rgba(29,29,29,0) 55%),
    var(--gradient-dawn-wash);
}
.prose { color: var(--color-mist); font-size: var(--text-body-lg); line-height: 1.7; }
.prose h2 {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--color-paper);
  margin: 48px 0 16px;
}
.prose h3 {
  font-family: var(--font-geist);
  font-size: 21px; font-weight: 600;
  color: var(--color-bone);
  margin: 32px 0 12px;
}
.prose p { margin: 0 0 18px; }
.prose ul.bullets { margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.prose ul.bullets li { display: flex; gap: 12px; }
.prose ul.bullets li .dot { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--color-indigo); margin-top: 11px; }
.prose strong { color: var(--color-bone); }
.prose a { color: var(--color-bone); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(229,229,229,0.3); }

.callout {
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.1);
  border-left: 2px solid var(--color-indigo);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 28px 0;
}
.callout .lab { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-indigo); font-weight: 600; margin-bottom: 8px; }
.callout p { margin: 0; color: var(--color-bone); font-size: 16px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: var(--font-geist);
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(229, 229, 229, 0.08);
}
.data-table thead th {
  background: var(--color-graphite);
  color: var(--color-bone);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.data-table td { color: var(--color-mist); }
.data-table td:last-child, .data-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.data-table tbody tr:last-child td { border-bottom: 0; }

.author-box {
  display: flex; gap: 20px; align-items: center;
  margin-top: 56px; padding: 24px;
  background: var(--color-char);
  border: 1px solid rgba(229, 229, 229, 0.08);
  border-radius: var(--radius-cards);
}
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.author-box .name { font-family: var(--font-geist); font-weight: 600; color: var(--color-paper); }
.author-box .role { color: var(--color-fog); font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(229, 229, 229, 0.08);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer__grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { font-size: 18px; font-weight: 500; color: var(--color-paper); display: flex; align-items: center; gap: 10px; }
.footer__tag { color: var(--color-fog); font-size: 14px; margin-top: 10px; max-width: 320px; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-fog); margin: 0 0 14px; }
.footer__col a { display: block; color: var(--color-mist); font-size: 15px; padding: 5px 0; }
.footer__col a:hover { color: var(--color-bone); }
.footer__legal { margin-top: 40px; color: var(--color-fog); font-size: 13px; line-height: 1.6; }
.footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--color-fog); color: var(--color-bone);
  font-weight: 700; font-size: 13px; margin-right: 10px; vertical-align: middle;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__grid, .responsible__grid, .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .site-header.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(29,29,29,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229,229,229,0.1);
    border-radius: 20px; padding: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .site-header.open .nav__links a { padding: 12px 16px; }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .blog-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .nav__brand span.long { display: none; }
  .responsible, .card { padding: 24px 20px; }
}
