@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #1c50ff;
  --blue-dark: #1237c9;
  --cyan: #8beaff;
  --navy: #081954;
  --ink: #10172a;
  --muted: #5b6375;
  --paper: #ffffff;
  --soft: #f3f6fb;
  --line: #dce2ed;
  --max: 1240px;
  --radius: 999px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow-soft: 0 1px 2px rgba(16, 23, 42, .04), 0 12px 40px -12px rgba(16, 23, 42, .12);
  --shadow-lift: 0 2px 4px rgba(16, 23, 42, .04), 0 30px 60px -20px rgba(16, 23, 42, .25);
  --glass-shadow-light: 0 0 6px rgba(0,0,0,.03), 0 2px 6px rgba(0,0,0,.08), inset 3px 3px .5px -3px rgba(0,0,0,.9), inset -3px -3px .5px -3px rgba(0,0,0,.85), inset 1px 1px 1px -.5px rgba(0,0,0,.6), inset -1px -1px 1px -.5px rgba(0,0,0,.6), inset 0 0 6px 6px rgba(0,0,0,.12), inset 0 0 2px 2px rgba(0,0,0,.06), 0 0 12px rgba(255,255,255,.15);
  --glass-shadow-dark: 0 0 8px rgba(0,0,0,.03), 0 2px 6px rgba(0,0,0,.08), inset 3px 3px .5px -3.5px rgba(255,255,255,.09), inset -3px -3px .5px -3.5px rgba(255,255,255,.85), inset 1px 1px 1px -.5px rgba(255,255,255,.6), inset -1px -1px 1px -.5px rgba(255,255,255,.6), inset 0 0 6px 6px rgba(255,255,255,.12), inset 0 0 2px 2px rgba(255,255,255,.06), 0 0 12px rgba(0,0,0,.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(28, 80, 255, .08), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(139, 234, 255, .12), transparent 60%),
    var(--paper);
  background-repeat: no-repeat;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "cv11", "ss01";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection { color: #fff; background: var(--blue); }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0 0 .55em; line-height: .98; letter-spacing: -.052em; text-wrap: balance; }
h1 { font-size: clamp(3.7rem, 8.2vw, 8rem); font-weight: 650; }
h2 { font-size: clamp(2.7rem, 5.4vw, 5.2rem); font-weight: 620; }
h3 { font-size: 1.55rem; letter-spacing: -.035em; }
p { margin: 0 0 1.25rem; text-wrap: pretty; }

.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .7rem 1rem; color: #fff; background: var(--ink); border-radius: 12px; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.services-band :focus-visible, .contact-band :focus-visible, .cta-panel :focus-visible, .article-cta :focus-visible, .site-footer :focus-visible, .cookie-banner :focus-visible, .case-confidential :focus-visible { outline-color: #fff; }

/* Liquid glass · KokonutUI (https://kokonutui.com/docs/cards/liquid-glass-card) */
.glass-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.glass { isolation: isolate; }
.glass-filter, .glass-shadow { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; }
.glass-filter { z-index: -1; overflow: hidden; backdrop-filter: url("#liquid-glass"); }
.glass-shadow { box-shadow: var(--glass-shadow-light); }
.glass-dark .glass-shadow { box-shadow: var(--glass-shadow-dark); }
.button-glass {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: transparent;
  box-shadow: 0 14px 40px -14px rgba(8, 25, 84, .6);
  white-space: nowrap;
  transition: transform .2s, background .2s;
}
.button-glass .glass-filter { backdrop-filter: url("#liquid-glass-button"); }
.button-glass > span:last-child { position: relative; z-index: 1; }
.button-glass:hover { color: #fff; background: rgba(255, 255, 255, .2); box-shadow: 0 14px 40px -14px rgba(8, 25, 84, .6); transform: scale(1.05); }
.button-glass:active { transform: scale(.97); }

.topbar { display: flex; justify-content: flex-end; max-width: calc(var(--max) - 32px); margin: 0 auto; padding: 10px 22px 0; }
.topbar a { color: var(--muted); font-size: .76rem; font-weight: 600; letter-spacing: .02em; }
.topbar a:hover { color: var(--blue); }
.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--max) - 32px);
  height: 74px;
  margin: 8px auto 0;
  padding: 0 12px 0 22px;
  background: rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px -18px rgba(16, 23, 42, .22);
}
.brand img { width: 168px; height: 56px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a:not(.button) {
  padding: .55rem .95rem;
  color: var(--ink);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 600;
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.main-nav > a:not(.button):hover { color: var(--blue); background: rgba(28, 80, 255, .08); text-decoration: none; }
.main-nav > a[aria-current="page"] { color: var(--blue); background: rgba(28, 80, 255, .1); box-shadow: inset 0 0 0 1px rgba(28, 80, 255, .25); }
.main-nav .button { margin-left: 8px; }
.menu-toggle { display: none; padding: .6rem 1rem; color: var(--ink); background: rgba(255,255,255,.7); border: 1px solid rgba(16,23,42,.15); border-radius: var(--radius); font: inherit; font-weight: 650; cursor: pointer; }

.section { max-width: var(--max); margin: auto; padding: 112px 28px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.8rem;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; background: currentColor; border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent); }
.lead { max-width: 760px; color: #394158; font-size: clamp(1.16rem, 2vw, 1.42rem); }
.lead-small { max-width: 520px; color: var(--muted); font-size: 1.1rem; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 1rem 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, #3767ff, var(--blue));
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 10px 30px -10px rgba(28, 80, 255, .7);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: background .25s var(--ease-out), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.button:hover { color: #fff; background: linear-gradient(180deg, #2d5cff, var(--blue-dark)); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 16px 40px -12px rgba(28, 80, 255, .85); text-decoration: none; transform: translateY(-2px); }
.button:active { transform: scale(.97); }
.button-secondary { color: var(--ink); background: transparent; border-color: rgba(16,23,42,.3); box-shadow: none; }
.button-secondary:hover { color: #fff; background: var(--ink); box-shadow: none; }
.button-light { color: var(--blue); background: #fff; border-color: #fff; box-shadow: 0 14px 40px -12px rgba(8, 25, 84, .6); }
.button-light:hover { color: var(--blue); background: #eef3ff; }
.button-small { padding: .72rem 1.1rem; font-size: .85rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); font-weight: 650; }
.arrow-link span { display: inline-grid; width: 32px; height: 32px; place-items: center; color: var(--blue); background: rgba(28, 80, 255, .08); border-radius: 50%; transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out); }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover span { color: #fff; background: var(--blue); transform: translateX(4px); }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 2.4rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: 60px;
  min-height: 760px;
  padding-top: 70px;
  padding-bottom: 90px;
}
.hero-copy h1 span {
  color: var(--blue);
  background: linear-gradient(100deg, var(--blue) 10%, #3aa0ff 55%, var(--blue) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy .lead { margin-top: 2rem; }

.grainient { position: absolute; inset: 0; z-index: 0; overflow: hidden; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .8s var(--ease-out); }
.grainient.is-ready { opacity: 1; }

.hero-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(120% 90% at 20% 10%, #3aa0ff 0%, var(--blue) 45%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -30px rgba(18, 55, 201, .55), inset 0 0 0 1px rgba(255,255,255,.12);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 30% 30%, #000 20%, transparent 75%);
}
.hero-globe {
  position: absolute;
  top: 4%;
  right: -38%;
  z-index: 2;
  width: 120%;
  aspect-ratio: 1;
}
.hero-globe canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: grab;
  contain: layout paint size;
  transition: opacity .5s;
}
.hero-globe canvas.is-ready { opacity: 1; }
.hero-badge {
  position: absolute;
  left: 6%;
  bottom: 6%;
  z-index: 3;
  padding: 26px 30px 30px;
  background: rgba(8, 25, 84, .3);
  border-radius: 26px;
  pointer-events: none;
}
.hero-badge p {
  position: relative;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.07em;
  text-shadow: 0 10px 40px rgba(8, 25, 84, .45);
}
.hero-badge p span { color: rgba(255, 255, 255, .6); }

.credentials-bar { color: var(--ink); background: linear-gradient(180deg, transparent, var(--soft) 18%, var(--soft) 82%, transparent); }
.credentials-inner { max-width: var(--max); margin: auto; padding: 100px 28px; }
.credentials-title { max-width: 860px; }
.credentials-title .eyebrow { color: var(--blue); }
.credentials-title h2 { font-size: clamp(2.4rem, 4.6vw, 4.4rem); }
.credentials-title p:last-child { max-width: 640px; margin: 0; color: var(--muted); font-size: 1.12rem; }
.platform-logos, .cert-row {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.platform-logos { grid-template-columns: repeat(3, 1fr); margin-top: 56px; }
.cert-row { grid-template-columns: repeat(4, 1fr); margin-top: 14px; }
.platform-logos li, .cert-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 22px 18px;
  text-align: center;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(220, 226, 237, .8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.platform-logos li:hover, .cert-row li:hover { border-color: rgba(28, 80, 255, .35); box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
}
.logo-slot img {
  width: 180px;
  max-width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: center;
}
.platform-logos > li > span:last-child,
.cert-row > li > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.logo-slot-cert { height: 52px; margin-bottom: 16px; }
.logo-slot-cert img { width: 150px; height: 44px; }
.logo-slot-databricks { height: 78px; }
.logo-slot-databricks img { width: 118px; height: 72px; }
.cert-row strong { max-width: 220px; font-size: 1.12rem; line-height: 1.15; letter-spacing: -.02em; }
.cert-row .ens-item { padding: 12px; }
.cert-row .ens-logo { width: min(168px, 88%); height: auto; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 58px; }
.section-heading > p { max-width: 420px; color: var(--muted); }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 34px;
  overflow: hidden;
  color: var(--ink);
  background: #e8efff;
  border: 1px solid rgba(16, 23, 42, .05);
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at 100% 0%, rgba(255,255,255,.55), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease-out);
}
.case-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.case-card:hover::after { opacity: 1; }
.case-confidential { color: #fff; background: radial-gradient(120% 100% at 0% 0%, #3aa0ff 0%, var(--blue) 45%, var(--navy) 120%); }
.case-confidential::after { background: radial-gradient(600px circle at 100% 0%, rgba(255,255,255,.18), transparent 45%); }
.case-orange { background: linear-gradient(160deg, #fff4ee, #ffe3d3); }
.case-red { background: linear-gradient(160deg, #faf5f5, #efe4e4); }
.case-sand { background: linear-gradient(160deg, #f6f2ec, #e9e1d4); }
.case-museum { background: linear-gradient(160deg, #f2effa, #e2dcf2); }
.case-sico { background: linear-gradient(160deg, #eff9f6, #dcefe8); }
.case-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
}
.case-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: .45rem .7rem;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(16, 23, 42, .08);
  border-radius: var(--radius);
  font: 700 .75rem/1 ui-monospace, monospace;
}
.case-confidential .case-number { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.25); }
.brand-anonymous { font-size: 1rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.client-logo, .confidential-logo {
  width: 240px;
  max-width: 86%;
  height: 88px;
  object-fit: contain;
  object-position: center;
}
.logo-leboncoin { width: 220px; height: 96px; }
.logo-thyssen { mix-blend-mode: multiply; }
.case-copy { position: relative; z-index: 1; max-width: 620px; margin-top: auto; }
.case-copy > p:first-child { margin-bottom: 1rem; font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.case-copy h3 { max-width: 720px; font-size: clamp(2rem, 3.6vw, 4rem); }
.case-copy > p:last-child { max-width: 610px; margin-bottom: 0; opacity: .78; }

.services-band, .contact-band {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(8px, 2vw, 24px);
  color: #fff;
  background: radial-gradient(120% 120% at 0% 0%, var(--blue) 0%, #1741d6 45%, #0b2687 100%);
  border-radius: var(--radius-lg);
}
.services-band > .section, .contact-band > .section { position: relative; z-index: 1; }
.services-band .section-heading .eyebrow { color: #dce6ff; }
.services-band .section-heading > p { color: #dce6ff; }
.service-list { border-top: 1px solid rgba(255,255,255,.3); }
.service-list > a {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 22px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  transition: background .4s var(--ease-out), padding .4s var(--ease-out);
}
.service-list > a:hover { background: rgba(255, 255, 255, .08); text-decoration: none; }
.service-list > a > span { font: 700 .75rem/1 ui-monospace, monospace; color: #dce6ff; }
.service-list h3 { margin-bottom: .35rem; font-size: clamp(1.8rem, 3vw, 3.1rem); }
.service-list p { max-width: 700px; margin: 0; color: #dce6ff; }
.service-list strong {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out), color .4s var(--ease-out);
}
.service-list > a:hover strong { color: var(--blue); background: #fff; transform: rotate(45deg); }

.difference-intro { max-width: 950px; }
.difference-intro h2 span { color: var(--blue); }
.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 80px; }
.difference-grid article {
  padding: 32px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(220, 226, 237, .8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.difference-grid article:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.difference-grid article > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #3aa0ff, var(--blue));
  border-radius: 14px;
  box-shadow: 0 10px 24px -8px rgba(28, 80, 255, .6);
  font: 700 .75rem/1 ui-monospace, monospace;
}
.difference-grid h3 { margin-top: 2.5rem; }
.difference-grid p { margin: 0; color: var(--muted); }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.post-card, .detail-panel, .contact-options article, .contact-form, .empty-state, .service-card, .problem-strip article {
  padding: 30px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(220, 226, 237, .8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.post-card { display: flex; flex-direction: column; min-height: 390px; padding: 14px 14px 26px; transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.post-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.post-card > :not(img) { margin-right: 14px; margin-left: 14px; }
.post-card img { width: 100%; aspect-ratio: 16 / 9; margin-bottom: 26px; object-fit: cover; border-radius: 14px; transition: transform .6s var(--ease-out); }
.post-card h2, .post-card h3 { font-size: 1.55rem; line-height: 1.1; }
.post-card h2 a, .post-card h3 a { color: var(--ink); }
.post-card p:not(.post-meta) { color: var(--muted); }
.post-card .arrow-link, .read-more { margin-top: auto; }
.read-more { font-weight: 650; }
.post-meta, .card-index { color: var(--blue); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-card { display: flex; flex-direction: column; min-height: 330px; }
.service-card h3 { font-size: 2rem; }
.service-card p { color: var(--muted); }
.service-card a { margin-top: auto; font-weight: 700; }

.contact-band { margin-top: 20px; margin-bottom: 20px; }
.contact-band .section { padding-top: 110px; padding-bottom: 110px; }
.contact-band .eyebrow { color: #dce6ff; }
.contact-band h2 { max-width: 900px; }
.contact-band p:not(.eyebrow) { max-width: 620px; color: #e1e9ff; font-size: 1.13rem; }
.contact-band .button { margin-top: 1.5rem; }

.page-hero { padding-top: 110px; padding-bottom: 90px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-bottom: 1px solid var(--line); }
.detail-panel { padding: 34px; }
.detail-panel ul { margin: 0; padding: 0; list-style: none; }
.detail-panel li { position: relative; padding: .9rem 0 .9rem 2rem; border-bottom: 1px solid var(--line); }
.detail-panel li:last-child { border-bottom: 0; }
.detail-panel li::before { content: ""; position: absolute; top: 1.3rem; left: .2rem; width: 10px; height: 10px; background: linear-gradient(135deg, #3aa0ff, var(--blue)); border-radius: 50%; box-shadow: 0 0 0 4px rgba(28, 80, 255, .12); }
.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 60px;
  margin-bottom: 90px;
  padding: 65px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(120% 120% at 0% 0%, var(--blue) 0%, #1741d6 45%, #0b2687 100%);
  border-radius: var(--radius-lg);
}
.cta-panel > :not(.grainient) { position: relative; z-index: 1; }
.cta-panel .eyebrow, .cta-panel p { color: #dce6ff; }
.sector-start { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-bottom: 1px solid var(--line); }
.sector-start h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.sector-start-text p { color: #394158; font-size: 1.15rem; }
.ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.ladder-step {
  position: relative;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.ladder-step:nth-child(1) { margin-top: 96px; }
.ladder-step:nth-child(2) { margin-top: 72px; }
.ladder-step:nth-child(3) { margin-top: 48px; }
.ladder-step:nth-child(4) { margin-top: 24px; }
.ladder-index { color: var(--blue); font: 700 .75rem/1 ui-monospace, monospace; }
.ladder-phase { margin: 1.4rem 0 .3rem; color: var(--blue); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ladder-step h3 { margin-bottom: 1rem; font-size: 1.45rem; }
.ladder-step ul { display: grid; gap: 12px; margin: 0; padding: 12px 0 0; border-top: 1px solid var(--line); list-style: none; }
.ladder-step li { display: grid; gap: 2px; }
.ladder-step strong { font-size: .98rem; line-height: 1.3; }
.ladder-step span { color: var(--muted); font-size: .88rem; line-height: 1.4; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 24px; }
.contact-options { display: grid; gap: 18px; }
.contact-options article a { display: block; margin: .45rem 0; }
.contact-options article a.button { display: inline-flex; }
.contact-form { display: grid; gap: 18px; padding: 38px; }
.contact-form h2 { font-size: 2.1rem; }
.contact-form label { display: grid; gap: 7px; font-size: .9rem; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: .95rem 1.05rem; color: var(--ink); background: #fff; border: 1px solid #8591a5; border-radius: 14px; font: inherit; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px rgba(28, 80, 255, .15); }
.check { grid-template-columns: auto 1fr !important; align-items: start; min-height: 24px; }
.check input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--blue); cursor: pointer; }
.honeypot { position: absolute !important; left: -9999px; }
.form-errors { padding: 12px 20px; background: #fff0f0; border-left: 3px solid #c62828; border-radius: 12px; }
.form-success { padding: 16px; background: #e8f8ee; border-left: 3px solid #1e8e4d; border-radius: 12px; }

.article-header { max-width: 980px; }
.article-header h1 { font-size: clamp(3rem, 6.2vw, 6rem); }
.back-link { display: inline-flex; margin-bottom: 3rem; padding: .5rem 1rem; background: rgba(28, 80, 255, .08); border-radius: var(--radius); font-weight: 600; }
.back-link:hover { text-decoration: none; background: rgba(28, 80, 255, .14); }
.article-image { max-width: 1184px; margin: 0 auto 70px; padding: 0 28px; }
.article-image img { width: 100%; max-height: 650px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.article-body { max-width: 800px; margin: auto; padding: 0 28px 110px; color: #30384c; font-size: 1.08rem; }
.article-body h2, .article-body h3 { margin-top: 2em; color: var(--ink); }
.article-body a { text-decoration: underline; text-underline-offset: 3px; }
.article-body img { border-radius: var(--radius-md); }
.article-body pre { overflow: auto; padding: 20px; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; }
.article-cta { position: relative; max-width: 800px; margin: 0 auto 100px; padding: 48px; overflow: hidden; color: #fff; background: radial-gradient(120% 120% at 0% 0%, var(--blue) 0%, #1741d6 45%, #0b2687 100%); border-radius: var(--radius-lg); }
.article-cta > :not(.grainient) { position: relative; z-index: 1; }
.article-cta .eyebrow, .article-cta p { color: #dce6ff; }
.legal-page { max-width: 840px; }
.legal-page h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.legal-page h2 { margin-top: 2.1em; font-size: 1.9rem; }
.legal-page p, .legal-page dd { color: #465066; }
.legal-page dl { display: grid; grid-template-columns: 150px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.legal-page dt, .legal-page dd { margin: 0; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.legal-page dt { font-weight: 800; }
.cookie-table { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.cookie-table > div { display: grid; grid-template-columns: 1fr 2fr 1fr; }
.cookie-table span, .cookie-table strong { padding: 12px; border-bottom: 1px solid var(--line); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a { display: grid; width: 44px; height: 44px; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 50%; font-weight: 600; transition: border-color .2s, transform .2s; }
.pagination a:hover { border-color: var(--blue); text-decoration: none; transform: translateY(-2px); }
.pagination a[aria-current] { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 10px 24px -8px rgba(28, 80, 255, .6); }
.error-page { min-height: 65vh; }
.empty-state { text-align: center; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
  max-width: var(--max);
  margin: auto;
  padding: 76px 28px 34px;
  color: #fff;
  background: var(--ink);
  border-top: 0;
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}
.site-footer img { object-fit: contain; }
.site-footer h2 { font-size: .82rem; letter-spacing: .04em; }
.site-footer p, .site-footer a, .text-button { display: block; margin: .55rem 0; color: #b9c1d1; font-size: .86rem; transition: color .2s; }
.site-footer a:hover, .text-button:hover { color: #fff; text-decoration: none; }
.text-button { padding: 0; background: none; border: 0; cursor: pointer; font: inherit; font-size: .86rem; text-align: left; }
.copyright { grid-column: 1 / -1; margin-top: 25px !important; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.whatsapp-float {
  position: fixed;
  left: max(18px, env(safe-area-inset-left, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(16, 23, 42, .22), inset 0 1px 0 rgba(255,255,255,.3);
  transition: background .2s, transform .3s var(--ease-out);
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  background: #1ebe57;
  text-decoration: none;
  transform: translateY(-3px) scale(1.04);
}
.whatsapp-float svg { width: 32px; height: 32px; }

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 25px;
  max-width: 1080px;
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 24px 28px;
  overflow-y: auto;
  color: #fff;
  background: rgba(16, 23, 42, .78);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 70px rgba(15, 22, 40, .3);
  backdrop-filter: blur(2px);
}
.cookie-banner > div { position: relative; }
.cookie-banner[hidden], .cookie-settings[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.3rem; }
.cookie-banner p { margin: .3rem 0; color: #c5cbd8; font-size: .84rem; line-height: 1.5; }
.cookie-banner a { color: #a9c5ff; }
.cookie-banner .button-secondary { color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-copy { flex: 1 1 520px; }
.cookie-actions { display: flex; flex-shrink: 0; flex-wrap: wrap; gap: 9px; }
.cookie-settings { display: grid; flex-basis: 100%; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.cookie-option { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: rgba(255,255,255,.06); border-radius: 14px; font-size: .84rem; color: #c5cbd8; cursor: pointer; }
.cookie-option input { margin-top: .2rem; accent-color: var(--blue); }
.cookie-option strong { display: block; color: #fff; }
.cookie-settings .button { justify-self: end; }

/* Diagrama del dato */
.dflow h2 span { color: var(--blue); }

.dflow-heading { max-width: 980px; margin-bottom: 56px; }
.dflow-lead { max-width: 760px; color: #394158; font-size: 1.15rem; }
.dflow-sectors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.6rem; }
.dflow-sectors button {
  padding: .6rem 1.05rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #8591a5;
  border-radius: var(--radius);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out), color .2s var(--ease-out);
}
.dflow-sector-link { margin-top: 1.4rem; }
.dflow-sector-link [data-dflow-link-name] { display: inline; width: auto; height: auto; color: var(--blue); background: none; border-radius: 0; transform: none; }
.dflow-sectors button:hover { border-color: var(--blue); color: var(--blue); }
.dflow-sectors button[aria-pressed="true"] { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 22px -10px rgba(28, 80, 255, .7); }

.dflow-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-areas: ". . out" "in core out" "note note out" ". . out";
  gap: 24px 72px;
}
.dflow-col-in { grid-area: in; }
.dflow-col-center { grid-area: core; }
.dflow-col-out { grid-area: out; }
.dflow-svg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.dflow-col { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.dflow-col-center, .dflow-col-in { justify-content: center; }

.dflow-card {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), opacity .25s var(--ease-out);
}
.dflow-card h3 { margin: 0 0 .35rem; font-size: 1.25rem; }
.dflow-card p, .dflow-card small { margin: 0; color: var(--muted); }
.dflow-card small { display: block; margin-top: .6rem; font-size: .8rem; }
.dflow-kind { margin-bottom: .3rem !important; color: var(--blue) !important; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.dflow-sources { background: var(--soft); box-shadow: none; }
.dflow-lake { border-color: rgba(28, 80, 255, .35); box-shadow: 0 0 0 4px rgba(28, 80, 255, .06), var(--shadow-soft); }
.dflow-lake h3 { font-size: 1.6rem; }

.dflow-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 0; padding: 0; list-style: none; }
.dflow-chips li { padding: .3rem .65rem; color: var(--blue-dark); background: rgba(28, 80, 255, .07); border-radius: var(--radius); font-size: .78rem; font-weight: 600; }

.dflow-items { display: grid; gap: 8px; margin: .6rem 0 0; padding: .6rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.dflow-items li { display: grid; gap: 1px; }
.dflow-items strong { font-size: .95rem; line-height: 1.3; }
.dflow-items span { color: var(--muted); font-size: .85rem; line-height: 1.4; }
.dflow-items.is-changing { opacity: 0; transition: opacity .15s; }
.dflow-items { transition: opacity .3s; }

.dflow-line { fill: none; stroke: #b9c6e8; stroke-width: 1.5; transition: stroke .25s, opacity .25s; }
.dflow-flow { fill: none; stroke: var(--blue); stroke-width: 1.5; stroke-dasharray: 3 9; opacity: .55; animation: dflow-dash 1.6s linear infinite; transition: opacity .25s; }
@keyframes dflow-dash { to { stroke-dashoffset: -24; } }

.dflow-stage[data-focus] .dflow-card[tabindex]:not(.is-focus) { opacity: .5; }
.dflow-stage[data-focus] .dflow-line:not(.is-focus), .dflow-stage[data-focus] .dflow-flow:not(.is-focus) { opacity: .15; }
.dflow-card.is-focus { border-color: rgba(28, 80, 255, .45); }
.dflow-line.is-focus { stroke: var(--blue); stroke-width: 2; }
.dflow-flow.is-focus { opacity: .9; }

.dflow-note {
  position: relative;
  z-index: 1;
  display: flex;
  grid-area: note;
  align-self: start;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
}
.dflow-note p { flex: 1 1 380px; margin: 0; color: #394158; }
.dflow-note strong { color: var(--ink); }

.dflow-brands { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0 0 14px; padding: 0 0 14px; border-bottom: 1px solid var(--line); list-style: none; }
.dflow-brands li { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .8rem; font-weight: 600; }
.dflow-brands svg { display: block; width: auto; height: 16px; fill: currentColor; }

@media (max-width: 960px) {
  .dflow-stage { grid-template-columns: 1fr; grid-template-rows: none; grid-template-areas: "in" "core" "note" "out"; gap: 28px; }
  .dflow-svg { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .dflow-flow { animation: none; }
}

@media (max-width: 900px) {
  .site-header { margin-right: 12px; margin-left: 12px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(16, 23, 42, .14);
  }
  .main-nav .button { margin: 6px 0 0; }
  .main-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 440px; }
  .hero-globe { top: -10%; right: -20%; width: 95%; }
  .platform-logos, .cert-row { grid-template-columns: 1fr 1fr; }
  .section-heading, .cta-panel { align-items: flex-start; flex-direction: column; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid h3 { margin-top: 1.8rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .service-detail, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .sector-start { grid-template-columns: 1fr; gap: 20px; }
  .ladder { grid-template-columns: 1fr 1fr; }
  .ladder-step:nth-child(n) { margin-top: 0; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}

@media (max-width: 600px) {
  h1 { font-size: 3.35rem; }
  .site-header { top: 10px; height: 64px; margin-top: 10px; padding: 0 8px 0 16px; }
  .brand img { width: 138px; }
  .section { padding: 78px 18px; }
  .hero { padding-top: 55px; }
  .hero-art { min-height: 360px; }
  .hero-globe { right: -35%; width: 115%; }
  .credentials-inner { padding: 75px 18px; }
  .platform-logos, .cert-row, .case-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: 1fr; }
  .platform-logos li, .cert-row li { min-height: 128px; }
  .case-card { min-height: 430px; padding: 25px; }
  .case-copy h3 { font-size: 2.45rem; }
  .service-list > a { grid-template-columns: 38px 1fr auto; gap: 12px; padding: 26px 8px; }
  .service-list strong { width: 44px; height: 44px; }
  .service-list p { display: none; }
  .cta-panel { margin-right: 18px; margin-left: 18px; padding: 38px 24px; }
  .site-footer { grid-template-columns: 1fr; padding-right: 18px; padding-left: 18px; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; max-height: calc(100vh - 24px); padding: 20px 20px 0; }
  .cookie-actions { position: sticky; bottom: 0; margin: 0 -20px; padding: 14px 20px 20px; background: rgba(16, 23, 42, .96); }
  .cookie-actions .button { width: 100%; }
  .cookie-settings { padding-bottom: 20px; }
  .legal-page dl { grid-template-columns: 1fr; }
  .cookie-table > div { grid-template-columns: 1fr; }
  .cookie-table > div:first-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .button, .service-list strong, .whatsapp-float, .case-card, .post-card, .platform-logos li, .cert-row li, .difference-grid article, .arrow-link span { transition: none; }
  .button-glass { transition: none; }
  .button-glass:hover, .button-glass:active, .case-card:hover, .post-card:hover, .platform-logos li:hover, .cert-row li:hover, .difference-grid article:hover { transform: none; }
}
