/* ============================================================
   FlirtForge Media Company — pop maximalism / neo-brutalist
   Shared stylesheet for the whole multi-page site (IT + EN).
   Mobile-first. No framework, no build step.
   ============================================================ */

:root {
  --black:   #0A0A0A;
  --white:   #FFFFFF;
  --magenta: #FF2E92;
  --acid:    #F5FF3D;
  --blue:    #2B5FFF;
  --grey:    #3A3A3A;
  --paper:   #F4F1E8;

  --ok:  #2BD07A;
  --err: #FF3B3B;

  --font-display: 'Anton', 'Arial Narrow', 'Arial Black', sans-serif;
  --font-ui:      'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --bd: 3px solid var(--black);
  --shadow: 7px 7px 0 var(--black);
  --shadow-lg: 12px 12px 0 var(--black);

  --wrap: 1120px;
  --header-h: 66px;

  --halftone: radial-gradient(rgba(10,10,10,.14) 1.3px, transparent 1.4px);
  --spark: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%20100'%3E%3Cpath%20d='M50%202l11%2030%2030-11-22%2025%2022%2025-30-11-11%2030-11-30-30%2011%2022-25-22-25%2030%2011z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
strong { font-weight: 700; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--acid);
  color: var(--black);
  border: var(--bd);
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  transition: top .1s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- focus ---------- */
:focus-visible { outline: 4px solid var(--blue); outline-offset: 3px; }
.section-blue :focus-visible,
.section-dark :focus-visible { outline-color: var(--acid); }

/* ---------- utility ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ============================================================
   BRAND SPARK  (recurring signature mark)
   ============================================================ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.brand-spark { width: 26px; height: 26px; fill: var(--magenta); flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  line-height: 1;
}

.spark-mark {
  display: inline-block;
  width: .9em; height: .9em;
  background-color: var(--magenta);
  -webkit-mask: var(--spark) center / contain no-repeat;
          mask: var(--spark) center / contain no-repeat;
}

/* ============================================================
   HEADER / NAV  (injected from /partials/header.html)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--bd);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--acid);
  border: var(--bd);
  padding: 7px 13px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--black);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--black);
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  background: var(--black);
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -6px; }
.nav-toggle-bars::after  { position: absolute; top: 6px; }

.site-nav { display: none; }
.site-nav.is-open {
  display: block;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--white);
  border-bottom: var(--bd);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px 16px;
  display: flex;
  flex-direction: column;
}
.site-nav a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active { color: var(--magenta); border-bottom-color: var(--magenta); }
.site-nav .nav-cta {
  color: var(--blue);
  font-weight: 700;
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { color: var(--blue); border-bottom-color: var(--blue); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-bg: var(--white);
  --btn-fg: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: var(--bd);
  box-shadow: 5px 5px 0 var(--black);
  cursor: pointer;
  transition: transform .08s linear, box-shadow .08s linear;
}
.btn:hover,
.btn:focus-visible { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--black); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--black); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn-primary { --btn-bg: var(--magenta); --btn-fg: var(--black); }
.btn-line    { --btn-bg: var(--white);   --btn-fg: var(--black); }
.btn-acid    { --btn-bg: var(--acid);    --btn-fg: var(--black); }

/* ============================================================
   BADGES  (die-cut stickers)
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 2.5px solid var(--black);
  white-space: nowrap;
  rotate: -2deg;
}
.badge-ico { rotate: 2deg; font-size: .95em; }
.badge-hot       { background: var(--magenta); color: var(--black); }
.badge-community { background: var(--blue);    color: var(--white); }
.badge-review    { background: var(--white);   color: var(--black); }

/* ============================================================
   SECTION SYSTEM
   ============================================================ */
.section { padding-block: clamp(3rem, 9vw, 5.5rem); }
.section-light { background: var(--white); color: var(--black); }
.section-paper { background: var(--paper); color: var(--black); }
.section-dark  { background: var(--black); color: var(--white); border-block: var(--bd); }
.section-blue  { background: var(--blue);  color: var(--white); border-bottom: var(--bd); }
.section-acid  { background: var(--acid);  color: var(--black); border-bottom: var(--bd); }
.section + .section-light,
.section + .section-paper { border-top: var(--bd); }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: .7rem;
}
.section-kicker .spark-mark { background-color: var(--magenta); }
.section-dark .section-kicker .spark-mark,
.section-blue .section-kicker .spark-mark { background-color: var(--acid); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: .93;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
h3.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .8rem;
}

.section-intro { max-width: 60ch; font-size: 1.14rem; font-weight: 500; margin-bottom: 2.4rem; }
.prose { max-width: 62ch; }
.prose p + p { margin-top: 1rem; }
.prose.lead { font-size: 1.16rem; }

.section-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   PAGE HERO  (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: clip;
  background: var(--white);
  background-image: var(--halftone);
  background-size: 22px 22px;
  border-bottom: var(--bd);
  padding-block: clamp(2.4rem, 7vw, 4rem) clamp(2.6rem, 8vw, 4.5rem);
}
.page-hero.on-blue  { background-color: var(--blue);  color: var(--white); }
.page-hero.on-acid  { background-color: var(--acid);  color: var(--black); }
.page-hero.on-dark  { background-color: var(--black);  color: var(--white); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5.4rem);
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero .hero-lead { font-size: 1.2rem; font-weight: 500; max-width: 46ch; }

.breadcrumb {
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  margin-bottom: 1rem;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .55; }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: clip;
  background: var(--white);
  background-image: var(--halftone);
  background-size: 22px 22px;
  padding-block: clamp(2.5rem, 9vw, 5.5rem) clamp(3rem, 10vw, 6rem);
  border-bottom: var(--bd);
}
.hero-inner { position: relative; z-index: 2; }

.blob {
  position: absolute;
  z-index: 1;
  border: var(--bd);
  pointer-events: none;
}
.blob-a {
  width: 46vw; max-width: 340px; aspect-ratio: 1;
  background: var(--blue);
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  top: -40px; right: -60px; rotate: 12deg;
}
.blob-b {
  width: 40vw; max-width: 260px; aspect-ratio: 1;
  background: var(--acid);
  border-radius: 40% 60% 65% 35% / 55% 40% 60% 45%;
  bottom: -70px; left: -70px;
}

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
}
.on-acid .eyebrow, .on-blue .eyebrow { background: var(--black); color: var(--white); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 13.5vw, 7rem);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 .line { display: block; }
.hero h1 .hl {
  background: var(--acid);
  color: var(--black);
  border: var(--bd);
  padding: 0 .14em;
  box-shadow: var(--shadow);
  width: max-content;
  max-width: 100%;
  rotate: -1.5deg;
  margin-top: .12em;
}

.hero-lead { font-size: 1.2rem; font-weight: 500; max-width: 40ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero-note {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 500; font-size: .95rem; margin: 0;
}
.hero-note span:last-child { max-width: 34ch; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--black);
  color: var(--acid);
  border-bottom: var(--bd);
  overflow: hidden;
  padding-block: 12px;
}
.marquee-track {
  display: flex; align-items: center; gap: 26px;
  width: max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.marquee .tick { width: 17px; height: 17px; fill: var(--magenta); flex: none; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STAT STRIP / NUMBERS
   ============================================================ */
.stat-strip {
  list-style: none; margin: 2.6rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: var(--bd);
}
.stat-strip li {
  padding: 1.1rem 1rem;
  border: 1.5px solid var(--black);
  display: flex; flex-direction: column; gap: .1rem;
}
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 3.1rem); line-height: 1; }
.stat-strip li:nth-child(4n+1) { background: var(--magenta); color: var(--black); }
.stat-strip li:nth-child(4n+2) { background: var(--acid);    color: var(--black); }
.stat-strip li:nth-child(4n+3) { background: var(--blue);    color: var(--white); }
.stat-strip li:nth-child(4n+4) { background: var(--white);   color: var(--black); }
.stat-label {
  font-family: var(--font-ui); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
}

/* ============================================================
   I NOSTRI MONDI — sticker cards
   ============================================================ */
.worlds {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1.6rem, 5vw, 2.4rem);
}
.world {
  --card-accent: var(--magenta);
  flex: 1 1 260px;
  max-width: 340px;
  background: var(--white); color: var(--black);
  border: var(--bd);
  box-shadow: 8px 8px 0 var(--card-accent), 8px 8px 0 3px var(--black);
  padding: 1.5rem 1.4rem 1.6rem;
  transition: transform .1s linear, box-shadow .1s linear;
}
.world-community { --card-accent: var(--blue); }
.world:nth-child(odd)  { rotate: -1.4deg; }
.world:nth-child(even) { rotate: 1.4deg; }
.world:hover,
.world:focus-within {
  transform: translate(-3px, -3px) rotate(0deg);
  box-shadow: 14px 14px 0 var(--card-accent), 14px 14px 0 3px var(--black);
}
.world-ico {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin-bottom: 1rem;
  border: var(--bd); background: var(--white);
  color: var(--card-accent);
}
.world-ico svg { width: 38px; height: 38px; }
.world-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; margin-bottom: .6rem;
}
.world-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5.2vw, 1.6rem);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.world-head .tld { color: var(--grey); }
.world-head .badge { margin-top: 3px; }
.world-payoff { font-size: 1rem; margin-bottom: 1.3rem; }
.btn-world {
  --btn-bg: var(--card-accent);
  --btn-fg: var(--black);
  font-size: .95rem; padding: 11px 18px;
  box-shadow: 4px 4px 0 var(--black);
}
.world-community .btn-world { --btn-fg: var(--white); }

/* ============================================================
   PILLARS — numbered blocks (Cosa ci accomuna / Trust pilastri)
   ============================================================ */
.pillars {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
  border: var(--bd);
}
.pillar { padding: 1.5rem 1.4rem 1.6rem; border: 1.5px solid var(--black); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.6rem; line-height: 1;
  color: var(--magenta);
  -webkit-text-stroke: 1.5px var(--black);
  display: block; margin-bottom: .3rem;
}
.pillar:nth-child(even) .pillar-num { color: var(--blue); }
.section-dark .pillar { border-color: #fff; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; text-transform: uppercase; line-height: 1;
  margin-bottom: .5rem;
}
.pillar p { font-size: 1rem; margin: 0; }

/* ============================================================
   FEATURE CARDS  (advertising formats, partnership benefits, teasers)
   ============================================================ */
.card-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.4rem, 4vw, 2rem);
}
.s-card {
  --card-accent: var(--magenta);
  background: var(--white); color: var(--black);
  border: var(--bd);
  box-shadow: 7px 7px 0 var(--card-accent), 7px 7px 0 3px var(--black);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column;
}
.s-card.accent-blue { --card-accent: var(--blue); }
.s-card.accent-acid { --card-accent: var(--acid); }
.s-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; text-transform: uppercase; line-height: 1;
  margin-bottom: .5rem;
}
.s-card p { font-size: 1rem; }
.s-card .badge { align-self: flex-start; margin-bottom: .7rem; }
.s-card .s-card-foot { margin-top: auto; padding-top: 1rem; }
.s-card a.text-link {
  font-family: var(--font-ui); font-weight: 700;
  text-decoration: none; border-bottom: 3px solid var(--black);
}
.s-card a.text-link:hover { color: var(--magenta); border-color: var(--magenta); }

/* ============================================================
   STEPS  (come funziona / how it works)
   ============================================================ */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.2rem, 4vw, 1.8rem);
  counter-reset: step;
}
.step {
  border: var(--bd);
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 1.4rem 1.3rem;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.4rem; line-height: 1;
  color: var(--blue);
  -webkit-text-stroke: 1.5px var(--black);
  display: block; margin-bottom: .3rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; text-transform: uppercase; line-height: 1;
  margin-bottom: .4rem;
}
.step p { font-size: 1rem; margin: 0; }

/* ============================================================
   POLICY TABLE  (trust & safety)
   ============================================================ */
.table-wrap { overflow-x: auto; border: var(--bd); box-shadow: var(--shadow); }
.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: .98rem;
}
.policy-table th, .policy-table td {
  text-align: left;
  padding: 12px 14px;
  border: 1.5px solid var(--black);
}
.policy-table thead th {
  background: var(--black); color: var(--white);
  font-family: var(--font-ui); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; font-size: .8rem;
}
.policy-table tbody th {
  background: var(--acid);
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; font-size: 1rem;
  white-space: nowrap;
}
.policy-table td a { font-weight: 600; text-underline-offset: 3px; }
.policy-table td a:hover { color: var(--magenta); }

/* ============================================================
   PRODUCT BREAKDOWN (media kit)
   ============================================================ */
.breakdown {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0; border: var(--bd);
}
.breakdown li {
  display: grid; gap: .2rem;
  padding: 1.1rem 1.2rem;
  border: 1.5px solid var(--black);
}
.breakdown .bd-name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.2rem;
}
.breakdown .bd-meta { font-family: var(--font-ui); font-weight: 600; font-size: .92rem; }
.breakdown .bd-meta span { color: var(--grey); }

/* ============================================================
   FORMS  (advertising / partnership)
   ============================================================ */
.form-card {
  background: var(--white); color: var(--black);
  border: var(--bd); box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 5vw, 2.4rem);
  max-width: 640px;
}
.field { margin-bottom: 1.1rem; display: grid; gap: .35rem; }
.field label {
  font-family: var(--font-ui); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; font-size: .82rem;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 12px 12px;
  border: var(--bd);
  background: var(--white); color: var(--black);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--magenta), 4px 4px 0 3px var(--black);
}
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none;
  margin-bottom: 1.1rem;
  padding: 12px 14px;
  border: var(--bd);
  font-family: var(--font-ui); font-weight: 700;
}
.form-status.is-shown { display: block; }
.form-status.is-loading { background: var(--white); }
.form-status.is-ok  { background: var(--acid); color: var(--black); }
.form-status.is-err { background: var(--magenta); color: var(--black); }

.form-consent {
  font-size: .85rem; margin-top: .8rem; color: var(--grey);
}

/* ============================================================
   BLOG
   ============================================================ */
.post-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.6rem, 5vw, 2.4rem);
}
.post-card {
  background: var(--white); color: var(--black);
  border: var(--bd);
  box-shadow: 8px 8px 0 var(--magenta), 8px 8px 0 3px var(--black);
  display: flex; flex-direction: column;
  transition: transform .1s linear, box-shadow .1s linear;
}
.post-card:nth-child(even) { box-shadow: 8px 8px 0 var(--blue), 8px 8px 0 3px var(--black); }
.post-card:hover, .post-card:focus-within { transform: translate(-3px,-3px); }
.post-card a.post-link { text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.post-cover {
  aspect-ratio: 16 / 9;
  border-bottom: var(--bd);
  background: var(--acid);
  display: grid; place-items: center;
}
.post-cover .spark-mark { width: 40px; height: 40px; background-color: var(--black); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-meta {
  font-family: var(--font-ui); font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--grey);
}
.post-card h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  text-transform: uppercase; line-height: 1;
}
.post-card p { font-size: .98rem; margin: 0; }
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: .6rem; }
.tag {
  font-family: var(--font-ui); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .03em;
  border: 2px solid var(--black); padding: 2px 7px;
  background: var(--white);
}

.article { max-width: 720px; }
.article-head { margin-bottom: 2rem; }
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  text-transform: uppercase; line-height: .95;
  margin: .6rem 0 .8rem;
}
.article-body { font-size: 1.1rem; }
.article-body > * + * { margin-top: 1.1rem; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  text-transform: uppercase; line-height: 1;
  margin-top: 2rem;
}
.article-body a { text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--magenta); }
.article-body blockquote {
  border-left: 6px solid var(--magenta);
  padding-left: 1rem; font-weight: 500;
}
.article-back {
  display: inline-flex; margin-top: 2.5rem;
}

/* ============================================================
   ORIXON
   ============================================================ */
.orixon-box {
  display: grid; gap: 1.6rem; align-items: center;
  background: var(--white); color: var(--black);
  border: var(--bd); box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 5vw, 2.8rem);
}
.orixon-box .section-kicker .spark-mark { background-color: var(--magenta); }
.orixon-art { width: min(52vw, 180px); justify-self: center; color: var(--blue); }

/* ============================================================
   TEASERS (home -> B2B pages)
   ============================================================ */
.teasers { margin-top: 0; }

/* ============================================================
   FOOTER  (injected from /partials/footer.html)
   ============================================================ */
.site-footer {
  background: var(--black); color: var(--white);
  border-top: var(--bd);
  padding-block: 2.8rem 1.4rem;
}
.site-footer .brand-name { font-size: 1.6rem; }
.footer-inner { display: grid; gap: 1.8rem; }
.footer-brand p {
  font-family: var(--font-ui); font-weight: 500;
  color: #C9C9C9; margin: .7rem 0 1rem;
}
.footer-col h4 {
  font-family: var(--font-ui); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .78rem; color: #9A9A9A; margin-bottom: .7rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-col a { text-decoration: none; font-family: var(--font-ui); font-weight: 600; }
.footer-col a:hover { color: var(--acid); }

.social { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.social a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 2.5px solid var(--white); color: var(--white);
}
.social svg { width: 20px; height: 20px; }
.social a:hover { background: var(--magenta); border-color: var(--magenta); color: var(--black); }

.footer-bottom {
  margin-top: 2rem; padding-top: 1.2rem;
  border-top: 2px solid #333;
  font-size: .86rem; color: #B5B5B5;
  display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; justify-content: space-between;
}
.footer-bottom p { margin: 0; }

/* ============================================================
   HERO LOAD-IN  (css only, staggered)
   ============================================================ */
.eyebrow,
.hero h1 .line,
.hero-lead,
.hero-actions,
.hero-note { animation: rise .45s cubic-bezier(.2,.7,.3,1) backwards; }
.eyebrow        { animation-delay: .02s; }
.hero h1 .line:nth-child(1) { animation-delay: .08s; }
.hero h1 .line:nth-child(2) { animation-delay: .14s; }
.hero h1 .line:nth-child(3) { animation-delay: .20s; }
.hero-lead      { animation-delay: .28s; }
.hero-actions   { animation-delay: .34s; }
.hero-note      { animation-delay: .40s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 620px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .breakdown li { grid-template-columns: 1fr 2fr; align-items: baseline; }
}

@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; align-items: start; }
}

@media (min-width: 1000px) {
  :root { --header-h: 74px; }
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 18px; padding: 0; flex-wrap: wrap; justify-content: flex-end; }
  .site-nav a { font-size: .92rem; padding: 6px 0; }

  .hero h1 { font-size: clamp(4rem, 8vw, 6.4rem); }
  .hero-lead { font-size: 1.28rem; max-width: 44ch; }

  .pillars.pillars-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }

  .orixon-box { grid-template-columns: 1.6fr 1fr; gap: 2.4rem; }
  .orixon-art { justify-self: end; width: 190px; }

  .two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.6rem; align-items: start; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee-track { animation: none; transform: none; }
  .btn:hover, .btn:focus-visible,
  .world:hover, .world:focus-within,
  .post-card:hover, .post-card:focus-within { transform: none; }
}

@media print {
  .site-header, .marquee, .nav-toggle { display: none; }
  .hero, .page-hero, .section-dark, .section-blue, .section-acid {
    background: #fff !important; color: #000 !important;
  }
}
