/* ==========================================================================
   Luxima — shared stylesheet (used by /en, /en-gb, /pl)
   Brand: purple ramp #26215C (900) → #EEEDFE (50), primary #534AB7
   Aesthetic benchmark: Stripe / Linear / Vercel — clean, precise, spacious
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Purple ramp */
  --p-50:  #EEEDFE;
  --p-100: #AFA9EC;
  --p-200: #7F77DD;
  --p-300: #6A61C9;
  --p-400: #534AB7;  /* primary */
  --p-600: #3C3489;
  --p-800: #26215C;  /* darkest in use */
  --p-900: #130F2A;

  /* Neutrals */
  --ink:        #1A1830;  /* primary text on light */
  --ink-soft:   #4A4866;  /* secondary text */
  --ink-faint:  #7C7A93;  /* hints / captions */
  --line:       #E7E6F0;  /* hairline borders */
  --surface:    #FFFFFF;
  --surface-2:  #F7F6FC;  /* tinted section background */

  /* Brand semantic */
  --brand:        var(--p-400);
  --brand-strong: var(--p-600);
  --brand-ink:    var(--p-800);

  /* Type */
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1120px;
  --radius: 14px;
  --radius-lg: 20px;
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 500; line-height: 1;
  padding: 13px 22px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-strong); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--p-100); background: var(--surface-2); }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.nav-brand svg { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: 112px 96px; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(83,74,183,.10), transparent 70%),
    radial-gradient(40% 40% at 85% 20%, rgba(127,119,221,.08), transparent 70%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--brand-ink);
  background: var(--p-50); border: 1px solid var(--p-100);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px); line-height: 1.05; letter-spacing: -.025em;
  font-weight: 700; max-width: 16ch; margin-inline: auto;
}
.hero h1 .accent { color: var(--brand); }
.hero-sub {
  font-size: clamp(17px, 2.1vw, 20px); color: var(--ink-soft); line-height: 1.55;
  max-width: 56ch; margin: 24px auto 0;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-trust { margin-top: 44px; font-size: 13px; color: var(--ink-faint); }
.hero-trust strong { color: var(--ink-soft); font-weight: 500; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface-2); padding-block: 56px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 3fr; gap: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.footer-brand svg { width: 28px; height: 28px; }
.footer-tagline { font-size: 14px; color: var(--ink-faint); margin-top: 14px; max-width: 30ch; line-height: 1.55; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--ink); }
.footer-col a svg { width: 16px; height: 16px; flex: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-faint); }
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--ink); }

/* ---- Active nav item ---------------------------------------------------- */
.nav-links a.is-current { color: var(--ink); }

/* ---- Subpage hero ------------------------------------------------------- */
.page-hero { position: relative; overflow: hidden; padding-block: 88px 56px; text-align: center; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(55% 60% at 50% 0%, rgba(83,74,183,.08), transparent 70%);
}
.page-hero h1 {
  font-size: clamp(30px, 4.6vw, 48px); line-height: 1.08; letter-spacing: -.025em;
  font-weight: 700; max-width: 18ch; margin-inline: auto;
}
.page-hero .lead {
  font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); line-height: 1.55;
  max-width: 56ch; margin: 20px auto 0;
}

/* ---- Section heading block --------------------------------------------- */
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; line-height: 1.12; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 18px; }

/* ---- Card grids --------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--p-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card h3 { font-size: 19px; letter-spacing: -.01em; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* ---- Industries: category cards ---------------------------------------- */
.cat-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); }
.ind-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease; }
.ind-card:hover { border-color: var(--p-100); transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(38,33,92,.22); }
.ind-head { position: relative; height: 86px; display: flex; align-items: flex-end; padding: 12px; }
.ind-ico { position: absolute; top: 10px; right: 12px; color: #fff; opacity: .32; line-height: 0; }
.ind-ico svg { width: 46px; height: 46px; }
.ind-year { font-size: 12px; font-weight: 500; background: rgba(255,255,255,.92); padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.ind-body { flex: 1; padding: 13px 15px 16px; }
.ind-body .name { font-weight: 500; font-size: 15.5px; letter-spacing: -.01em; }
.ind-body .reg { font-size: 12px; color: var(--ink-faint); margin: 3px 0 11px; }
.ind-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-chips span { font-size: 11px; background: var(--surface-2); color: var(--ink-soft); padding: 3px 9px; border-radius: 7px; border: 1px solid var(--line); }

/* ---- Feature list (passport) ------------------------------------------- */
.feature-list { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico {
  flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--p-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.feature h3 { font-size: 17px; letter-spacing: -.01em; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 15px; }

/* ---- Steps (how it works) ---------------------------------------------- */
.steps { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff;
  font-weight: 700; font-size: 15px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; letter-spacing: -.01em; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---- Contact form ------------------------------------------------------- */
.form { max-width: 560px; margin-inline: auto; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 7px; }
.field .opt { color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--p-50);
}
.form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--ink-faint); text-align: center; margin-top: 16px; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--p-800); border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.02em; }
.cta-band p { color: var(--p-100); font-size: 18px; margin-top: 14px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.btn-on-dark { background: #fff; color: var(--brand-ink); }
.btn-on-dark:hover { background: var(--p-50); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

/* ---- Prose helpers ------------------------------------------------------ */
.measure { max-width: 68ch; margin-inline: auto; }
.lead-block p { font-size: 18px; color: var(--ink-soft); margin-bottom: 18px; }

/* ---- Animated zero-touch flow ------------------------------------------ */
.flow-track { display: flex; align-items: stretch; gap: 0; }
.flow-stage {
  flex: 1 1 0; min-width: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; position: relative;
  animation: stagePulse 7.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.9s);
}
@keyframes stagePulse {
  0%, 16%, 100% { border-color: var(--line); box-shadow: none; }
  5%, 11%       { border-color: var(--p-100); box-shadow: 0 0 0 3px var(--p-50); }
}
.flow-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; margin-bottom: 12px;
}
.flow-tag.you  { background: #FAECE7; color: #993C1D; }
.flow-tag.auto { background: var(--p-50); color: var(--brand-strong); }
.flow-stage h3 { font-size: 16px; letter-spacing: -.01em; margin-bottom: 7px; }
.flow-stage p  { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.flow-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.flow-chips span {
  font-size: 11.5px; padding: 3px 9px; border-radius: 7px;
  background: var(--surface-2); color: var(--ink-soft); border: 1px solid var(--line);
}

/* connector with flowing "data" highlight */
.flow-link {
  flex: 0 0 34px; align-self: center; height: 3px; border-radius: 3px;
  background: var(--line); position: relative; overflow: hidden;
}
.flow-link::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--p-200), transparent);
  background-size: 60% 100%; background-repeat: no-repeat;
  animation: flowMove 1.8s linear infinite;
}
@keyframes flowMove { from { background-position: -60% 0; } to { background-position: 160% 0; } }

/* mini passport / QR at the publish stage */
.flow-passport { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.flow-qr { position: relative; width: 40px; height: 40px; border-radius: 7px; overflow: hidden; border: 1px solid var(--line); }
.flow-qr::after {
  content: ""; position: absolute; left: 0; right: 0; height: 30%;
  background: linear-gradient(180deg, rgba(83,74,183,.35), transparent);
  animation: scanMove 2.2s ease-in-out infinite;
}
@keyframes scanMove { 0%,100% { top: -30%; } 50% { top: 100%; } }
.flow-passport .url { font-size: 12px; color: var(--ink-faint); }

/* ---- Coloured icon tiles ----------------------------------------------- */
.ico-teal  { background: #E1F5EE; color: #0F6E56; }
.ico-coral { background: #FAECE7; color: #993C1D; }
.ico-green { background: #EAF3DE; color: #3B6D11; }

/* ---- Tinted section backgrounds ---------------------------------------- */
.section-tint   { background: var(--surface-2); }
.section-purple { background: var(--p-50); }

/* ---- Showcase (text + product visual) ---------------------------------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showcase .lead { font-size: 18px; color: var(--ink-soft); margin: 16px 0 24px; line-height: 1.6; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; color: var(--brand); }
.link-arrow:hover { gap: 11px; }

/* ---- Passport mock card ------------------------------------------------- */
.passport {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px;
  box-shadow: 0 28px 64px -30px rgba(38,33,92,.45); max-width: 400px; margin-inline: auto;
}
.passport-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.passport-name { font-weight: 500; font-size: 16px; }
.passport-gtin { font-size: 12px; color: var(--ink-faint); font-family: var(--font-mono, monospace); margin-top: 3px; }
.passport-qr { flex: none; border: 1px solid var(--line); border-radius: 8px; }
.passport-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin: 20px 0 12px; }
.impact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.impact-row .lbl { width: 58px; font-size: 13px; color: var(--ink-soft); }
.bar { flex: 1; height: 8px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: 6px; }
.bar.teal  > span { background: #1D9E75; }
.bar.blue  > span { background: #378ADD; }
.bar.amber > span { background: #EF9F27; }
.passport-foot { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.pill { font-size: 11.5px; font-weight: 500; padding: 4px 11px; border-radius: 999px; background: var(--p-50); color: var(--brand-strong); }
.pill-eu { background: #EAF3DE; color: #3B6D11; }

/* ---- Timeline strip ----------------------------------------------------- */
.timeline { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.tl { display: flex; flex-direction: column; gap: 6px; align-items: center; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; min-width: 132px; }
.tl .yr { font-weight: 700; font-size: 22px; letter-spacing: -.02em; }
.tl .cats { font-size: 12.5px; color: var(--ink-faint); text-align: center; line-height: 1.4; }
.tl .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ---- Blog index --------------------------------------------------------- */
.post-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; box-shadow: 0 6px 18px -10px rgba(38,33,92,.18);
  transition: box-shadow .15s ease, transform .12s ease, border-color .15s ease;
}
.post-card:hover { border-color: var(--p-100); transform: translateY(-3px); box-shadow: 0 14px 32px -12px rgba(38,33,92,.28); }
.post-thumb { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; display: block; background: #26215C; }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.post-cat { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand); margin-bottom: 9px; }
.post-card h2 { font-size: 16px; letter-spacing: -.01em; line-height: 1.3; margin-bottom: 8px; }
.post-card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); flex: 1; }
.post-meta { font-size: 12.5px; color: var(--ink-faint); margin-top: 16px; }

/* article hero thumbnail */
.article-thumb { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); margin-bottom: 36px; background: #26215C; }

/* ---- Article ------------------------------------------------------------ */
.article { max-width: 720px; margin-inline: auto; }
.article-head { text-align: center; margin-bottom: 44px; }
.article-head .post-cat { display: inline-block; }
.article-head h1 { font-size: clamp(29px, 4vw, 44px); line-height: 1.12; letter-spacing: -.025em; margin-bottom: 18px; }
.article-meta { font-size: 14px; color: var(--ink-faint); }
.article-body { font-size: 17px; line-height: 1.78; color: #2B2945; }
.article-body h2 { font-size: 24px; letter-spacing: -.015em; margin: 38px 0 14px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 9px; }
.article-body strong { font-weight: 500; color: var(--ink); }
.article-body a { color: var(--brand); border-bottom: 1px solid var(--p-100); }
.pullquote { border-left: 3px solid var(--brand); padding-left: 22px; margin: 28px 0; font-size: 20px; line-height: 1.5; color: var(--ink); }
.article-cta { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); text-align: center; }

/* ---- Brand page --------------------------------------------------------- */
.brand-section { margin-top: 56px; }
.brand-section > h2 { font-size: 24px; letter-spacing: -.02em; margin-bottom: 6px; }
.brand-section > .sub { color: var(--ink-soft); margin-bottom: 24px; }

/* logo rows */
.logo-rows { display: flex; flex-direction: column; gap: 14px; }
.logo-row { display: flex; align-items: center; gap: 20px; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.logo-row .prev { flex: none; width: 104px; height: 76px; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 12px; }
.logo-row .prev.dark { background: #26215C; }
.logo-row .prev.light { background: var(--surface-2); }
.logo-row .prev img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.logo-row .info { flex: 1; min-width: 0; }
.logo-row .info .name { font-size: 15px; font-weight: 500; }
.logo-row .info .desc { font-size: 13px; color: var(--ink-faint); margin-top: 3px; }
.logo-row .dls { display: flex; gap: 10px; flex-wrap: wrap; }
.dlbtn { font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 9px; padding: 8px 14px; color: var(--ink); }
.dlbtn:hover { border-color: var(--p-100); background: var(--surface-2); }

/* copy-our-words blocks */
.wording { display: flex; flex-direction: column; gap: 14px; }
.word-block { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.word-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.word-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.word-text { font-size: 16px; line-height: 1.6; color: var(--ink); }
.copy-btn { font-family: inherit; font-size: 13px; font-weight: 500; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 9px; padding: 7px 13px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; flex: none; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.copy-btn:hover { border-color: var(--p-100); background: var(--surface-2); }
.copy-btn.copied { color: #3B6D11; border-color: #C0DD97; background: #EAF3DE; }

.dodont { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.rule { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.rule h3 { font-size: 15px; margin-bottom: 12px; }
.rule ul { margin: 0; list-style: none; }
.rule li { font-size: 14px; color: var(--ink-soft); margin-bottom: 9px; padding-left: 22px; position: relative; }
.rule li::before { position: absolute; left: 0; font-weight: 700; }
.rule.do li::before { content: "✓"; color: #3B6D11; }
.rule.dont li::before { content: "✕"; color: #A32D2D; }

/* ---- Hero: name meaning ------------------------------------------------- */
.hero-meaning { margin: 40px auto 0; max-width: 50ch; font-size: 14.5px; color: var(--ink-faint); line-height: 1.6; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-meaning strong { color: var(--ink-soft); font-weight: 500; }
.hero-meaning em { font-style: italic; }

/* ---- Industry icons (industries page) ----------------------------------- */
.cat { gap: 14px; }
.cat-ico { flex: none; width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.cat-ico svg { width: 22px; height: 22px; }
.cat-main { flex: 1; min-width: 0; }

/* ---- How it works: automatic loop --------------------------------------- */
.flow-loop { position: relative; margin-top: 34px; }
.flow-loop-line { height: 46px; border: 2px dashed var(--p-100); border-top: none; border-radius: 0 0 24px 24px; }
.flow-loop-arrow { position: absolute; left: -7px; top: -8px; color: var(--brand); }
.flow-loop-tag {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  font-size: 14px; font-weight: 500; color: var(--brand-ink);
  box-shadow: 0 6px 18px -10px rgba(38,33,92,.28);
}
.flow-loop-tag .spin { color: var(--brand); animation: spin 3.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Mobile nav menu ---------------------------------------------------- */
.nav-toggle svg { display: block; }

/* ---- Disclosure: public / private DPP card ----------------------------- */
.disclosure { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.disclosure .feat { display: flex; gap: 14px; margin-top: 22px; }
.disclosure .feat .fico { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--p-50); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.disclosure .feat h4 { font-size: 15px; margin-bottom: 3px; }
.disclosure .feat p { font-size: 14px; color: var(--ink-soft); }

.dpp-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: 0 26px 60px -32px rgba(38,33,92,.45); }
.dpp-toggle { display: inline-flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px; margin-bottom: 16px; }
.dpp-tab { font-family: inherit; font-size: 13px; font-weight: 500; padding: 7px 18px; border: 0; background: transparent; border-radius: 999px; cursor: pointer; color: var(--ink-soft); transition: background .15s ease, color .15s ease; }
.dpp-tab.active { background: #fff; color: var(--brand); box-shadow: 0 1px 4px rgba(38,33,92,.14); }
.dpp-inner { border: 1px solid var(--line); border-radius: 14px; padding: 18px; background: var(--surface-2); }
.dpp-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.dpp-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); }
.dpp-title { font-size: 18px; font-weight: 500; margin-top: 4px; }
.dpp-sub { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.dpp-status { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-strong); background: var(--p-50); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.dpp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.dpp-cell { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 13px; }
.dpp-cell .k { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.dpp-cell .val { font-size: 15px; font-weight: 500; margin-top: 8px; }
.dpp-lock { display: inline-flex; align-items: center; gap: 5px; color: var(--ink-faint); font-weight: 400; }
.dpp-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin: 16px 0 8px; }
.dpp-card.is-public .v-full { display: none; }
.dpp-card.is-full .v-public { display: none; }

/* ---- Iceberg: what Luxima handles -------------------------------------- */
.iceberg { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.iceberg-vis { position: relative; max-width: 440px; margin-inline: auto; width: 100%; }
.iceberg-vis > svg { width: 100%; display: block; }
.ice-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; box-shadow: 0 16px 32px -16px rgba(38,33,92,.32); width: 60%; }
.ice-top { top: 6%; right: 0; }
.ice-bottom { bottom: 5%; left: 0; }
.ice-card .ice-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 8px; }
.ice-card ul { list-style: none; }
.ice-card li { font-size: 12.5px; color: var(--ink-soft); padding-left: 15px; position: relative; margin-bottom: 5px; line-height: 1.3; }
.ice-card li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--p-200); }
.ice-bottom li::before { background: var(--brand); }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { padding: 22px 0; border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-item h3 { font-size: 18px; letter-spacing: -.01em; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.faq-item p a { color: var(--brand); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 760px) {
  .section { padding-block: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding-block: 72px 64px; }
  .page-hero { padding-block: 60px 44px; }
  .cta-band { padding: 48px 24px; }
  .showcase { grid-template-columns: 1fr; gap: 36px; }

  /* mobile dropdown menu */
  .site-header.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 6px 0; box-shadow: 0 16px 30px -14px rgba(38,33,92,.25);
  }
  .site-header.nav-open .nav-links a { padding: 13px 24px; font-size: 16px; }
  .site-header.nav-open .nav-links a:hover { background: var(--surface-2); }

  /* disclosure + iceberg stack */
  .disclosure, .iceberg { grid-template-columns: 1fr; gap: 36px; }
  .ice-card { width: 68%; }

  /* footer stacks */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  /* loop tag wraps on small screens */
  .flow-loop-tag { white-space: normal; max-width: 84%; text-align: center; }

  /* flow stacks vertically; connector points downward */
  .flow-track { flex-direction: column; }
  .flow-link { flex-basis: 28px; width: 3px; height: 28px; align-self: center; }
  .flow-link::after {
    background: linear-gradient(180deg, transparent, var(--p-200), transparent);
    background-size: 100% 60%; animation: flowMoveV 1.8s linear infinite;
  }
}
@keyframes flowMoveV { from { background-position: 0 -60%; } to { background-position: 0 160%; } }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .flow-stage, .flow-link::after, .flow-qr::after, .flow-loop-tag .spin { animation: none; }
}

/* ---- Careers ------------------------------------------------------------ */
.job-list { display: flex; flex-direction: column; gap: 16px; max-width: 840px; margin-inline: auto; }
.job-card {
  display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.job-card:hover { border-color: var(--p-100); transform: translateY(-2px); box-shadow: 0 14px 32px -14px rgba(38,33,92,.25); }
.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.job-card h3 { font-size: 19px; letter-spacing: -.01em; }
.job-sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 5px; max-width: 52ch; }
.job-card .link-arrow { flex: none; font-size: 14px; margin-top: 4px; white-space: nowrap; }

.job-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.job-tags span { font-size: 12px; font-weight: 500; padding: 4px 11px; border-radius: 999px; background: var(--p-50); color: var(--brand-strong); }
.job-tags span.tag-neutral { background: var(--surface-2); color: var(--ink-soft); border: 1px solid var(--line); }

/* job detail page */
.job-head { text-align: center; margin-bottom: 40px; }
.job-head h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: -.025em; margin-bottom: 10px; }
.job-head .job-dept { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--brand); display: block; margin-bottom: 14px; }
.job-head .job-tags { justify-content: center; margin-top: 18px; }

.job-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin-bottom: 40px; }
.job-fact { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.job-fact .k { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }
.job-fact .v { font-size: 14.5px; font-weight: 500; margin-top: 5px; line-height: 1.4; }

@media (max-width: 600px) {
  .job-card-top { flex-direction: column; gap: 8px; }
  .job-card .link-arrow { margin-top: 6px; }
}

/* ---- AI passport demo (home: what gets published) ----------------------- */
.ai-demo {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  box-shadow: 0 28px 64px -30px rgba(38,33,92,.45); max-width: 420px; margin-inline: auto; width: 100%;
}
.ai-demo .flow-tag { margin-bottom: 12px; }

.ai-field { margin-bottom: 10px; }
.ai-field label {
  display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px;
}
.ai-input {
  display: flex; align-items: center; min-height: 36px;
  border: 1px solid var(--line); border-radius: 9px; padding: 7px 11px;
  font-size: 14px; font-weight: 500; background: var(--surface-2);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.ai-input.typing { border-color: var(--brand); box-shadow: 0 0 0 3px var(--p-50); background: #fff; }
.ai-caret { flex: none; width: 1.5px; height: 16px; background: var(--brand); margin-left: 1px; opacity: 0; }
.ai-input.typing .ai-caret { opacity: 1; animation: aiBlink .9s steps(1) infinite; }
@keyframes aiBlink { 50% { opacity: 0; } }

.ai-gen {
  display: flex; align-items: center; gap: 9px; padding: 13px 2px;
  font-size: 13px; font-weight: 500; color: var(--brand-strong);
}
.ai-gen svg { flex: none; }
.ai-gen .ico-done, .ai-gen .txt-done { display: none; }
.ai-gen.done .ico-run, .ai-gen.done .txt-run, .ai-gen.done .ai-gen-line { display: none; }
.ai-gen.done .ico-done { display: block; color: #0F6E56; }
.ai-gen.done .txt-done { display: inline; color: #0F6E56; }
.ai-gen .ico-run { animation: spin 3s linear infinite; color: var(--brand); }
.ai-gen-line { flex: 1; height: 2px; border-radius: 2px; background: var(--p-50); position: relative; overflow: hidden; }
.ai-gen-line::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--p-200), transparent);
  background-size: 50% 100%; background-repeat: no-repeat;
  animation: flowMove 1.4s linear infinite;
}

.ai-out-row { display: flex; gap: 12px; align-items: baseline; padding: 9px 0; border-top: 1px solid var(--line); }
.ai-out-row .k {
  flex: none; width: 74px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-faint);
}
.ai-out-row .v { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.45; }
.ai-demo .passport-label { margin: 14px 0 10px; }
.ai-demo .impact-row .num { flex: none; width: 92px; text-align: right; font-size: 12.5px; font-weight: 500; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.ai-demo .bar > span { transition: width 1s cubic-bezier(.2, .7, .2, 1); }

.ai-foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.ai-foot .url { font-size: 12px; color: var(--ink-faint); word-break: break-all; }
.ai-ready {
  margin-left: auto; flex: none; font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: #0F6E56; background: #E1F5EE; padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}

/* animation states: only when JS drives the demo (.anim); static & no-JS see the finished card */
.ai-demo.anim .rv { opacity: 0; transform: translateY(7px); transition: opacity .45s ease, transform .45s ease; }
.ai-demo.anim .rv.show { opacity: 1; transform: none; }
.ai-demo.anim .ai-gen { opacity: 0; transition: opacity .4s ease; }
.ai-demo.anim .ai-gen.show { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .ai-gen-line::after, .ai-gen .ico-run, .ai-input.typing .ai-caret { animation: none; }
}

/* ---- Scale: whole catalogue & zero-touch (home) -------------------------- */
.scale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.scale-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px;
  background: #fff; display: flex; flex-direction: column;
}
.scale-tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  background: var(--p-50); color: var(--brand-strong); margin-bottom: 18px;
}
.scale-card h3 { font-size: 22px; letter-spacing: -.015em; line-height: 1.25; }
.scale-card > p { color: var(--ink-soft); font-size: 15.5px; margin-top: 12px; }

.scale-vis { display: flex; align-items: center; margin-top: auto; padding-top: 26px; }
.scale-node { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: var(--surface-2); }
.scale-node .t { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.scale-node .t svg { flex: none; color: var(--brand); }
.scale-node .s { font-size: 12px; color: var(--ink-faint); margin-top: 4px; line-height: 1.4; }
.scale-num { font-size: 26px; font-weight: 700; letter-spacing: -.02em; color: var(--brand); font-variant-numeric: tabular-nums; line-height: 1.1; }
.scale-vis .flow-link { flex: 0 0 30px; }

.scale-card.dark { background: var(--p-800); border-color: var(--p-600); }
.scale-card.dark h3 { color: #fff; }
.scale-card.dark > p { color: var(--p-100); }
.scale-card.dark .scale-tag { background: rgba(255,255,255,.14); color: #fff; }
.scale-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 26px; }
.scale-chips > span {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500;
  color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  padding: 7px 13px; border-radius: 999px;
}
.scale-chips .live-dot { flex: none; width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: #4ADE80; animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); } }
.scale-card.dark .link-arrow { color: #fff; margin-top: 20px; }

@media (max-width: 860px) { .scale-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .scale-chips .live-dot { animation: none; } }

/* ---- Industries: year sections ------------------------------------------ */
.year-jump { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 780px; margin: 30px auto 0; }
.year-jump a {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500;
  color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; transition: border-color .15s ease, background .15s ease;
}
.year-jump a:hover { border-color: var(--p-100); background: var(--p-50); }
.year-jump .yj { font-size: 11px; font-weight: 700; color: var(--brand); letter-spacing: .02em; }

.year-section { scroll-margin-top: 84px; }
.year-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.year-split .year-media { order: 2; }
.year-split.flip .year-media { order: -1; }
.year-kicker { display: flex; align-items: baseline; gap: 16px; margin-bottom: 6px; }
.year-kicker .yr { font-size: clamp(52px, 6vw, 76px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--brand); }
.year-kicker .tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.year-split h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.02em; line-height: 1.2; margin-top: 6px; }
.year-intro { color: var(--ink-soft); font-size: 15.5px; margin-top: 10px; }
.year-list { margin-top: 20px; }
.year-item { padding: 14px 0; border-top: 1px solid var(--line); }
.year-item:last-child { padding-bottom: 0; }
.year-item .n { font-size: 16px; font-weight: 500; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.year-item .r { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.year-item .ind-chips { margin-top: 9px; }
.year-media img {
  width: 100%; height: 460px; object-fit: cover; display: block;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: 0 28px 64px -30px rgba(38,33,92,.35);
}

.year-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.duo-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.duo-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.duo-body { padding: 24px 26px 26px; }
.duo-body .year-kicker .yr { font-size: 42px; }

@media (max-width: 860px) {
  .year-split { grid-template-columns: 1fr; gap: 32px; }
  .year-split .year-media, .year-split.flip .year-media { order: 2; }
  .year-media img { height: 260px; }
  .year-duo { grid-template-columns: 1fr; }
}

/* slot-machine number in the scale headline */
.scale-headnum {
  display: inline-block; min-width: 5.4ch; text-align: center;
  color: var(--brand); font-variant-numeric: tabular-nums;
  transition: transform .13s ease-out, opacity .13s ease-out;
}
.scale-headnum.tick { transform: translateY(16px); opacity: 0; transition: none; }
.scale-headnum.pop { animation: numPop .5s cubic-bezier(.2, 1.6, .4, 1); }
@keyframes numPop { 0% { transform: scale(.92); } 55% { transform: scale(1.14); } 100% { transform: scale(1); } }
