/* Over Stekker — stekker.com/nl/over-stekker/ en /about/
   Licht instrumentenpaneel, zelfde taal als het logboek.
   Geen verloop, geen aankleding. Eén bewegend element: de pulse bij het meest recente cijfer. */

.stka {
  --a-ground: #ffffff;
  --a-surface: #f4f6fa;
  --a-rule: #dfe4ee;
  --a-ink: #000538;
  --a-ink-2: #4d5470;
  --a-ink-3: #646b81;
  --a-live: #009154;
  --a-poppins: "Poppins", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;

  min-width: 0;
  max-width: 100%;
  width: 100%;
  background: transparent;
  color: var(--a-ink);
  border: 0;
  padding: 0 0 clamp(2.5rem, 6vw, 4rem);
  font-size: 16px;
  line-height: 1.6;
}

.stka * { box-sizing: border-box; }

.stka h1,
.stka h2,
.stka h3 {
  font-family: var(--a-poppins);
  color: var(--a-ink);
  margin: 0;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.stka h1 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
}

.stka .a-intro {
  margin: 0.7rem 0 0;
  color: var(--a-ink-2);
  max-width: 52ch;
  font-size: 1rem;
}

.stka .a-section { margin-top: clamp(3rem, 6vw, 4.5rem); min-width: 0; max-width: 100%; }

.stka .a-section > h2 {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
}

.stka .a-section > p { color: var(--a-ink-2); max-width: 56ch; margin: 0.6rem 0 0; }

/* cijfers eerst */

.stka > .a-tiles { margin-top: clamp(3rem, 6vw, 4.5rem); }

.stka .a-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 1px;
  background: var(--a-rule);
  border: 1px solid var(--a-rule);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.6rem;
  min-width: 0;
  max-width: 100%;
}

.stka .a-tile { background: var(--a-surface); padding: 15px 18px; min-width: 0; }

.stka .a-num {
  margin: 0;
  font-family: var(--a-poppins);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 27px;
  font-variant-numeric: tabular-nums;
  color: var(--a-ink);
}

.stka .a-cap {
  margin: 3px 0 0;
  font-family: var(--a-poppins);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--a-ink-3);
}

/* de pulse: twee keer, dan stil */

.stka .a-live {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--a-live);
  margin-right: 8px;
  vertical-align: 3px;
}

.stka .a-live::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--a-live);
  animation: a-ping 1.6s cubic-bezier(0, 0, 0.2, 1) 2;
}

@keyframes a-ping {
  75%, 100% { transform: scale(2.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .stka .a-live::after { animation: none; }
}

/* wat Stekker doet */

.stka .a-facets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--a-rule);
  border: 1px solid var(--a-rule);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.4rem;
}

.stka .a-facet { background: var(--a-surface); padding: 1.15rem 1.25rem; min-width: 0; }

.stka .a-facet img {
  width: 22px;
  height: 22px;
  display: block;
  margin-bottom: 0.7rem;
}

.stka .a-facet h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.stka .a-facet p {
  margin: 0.4rem 0 0;
  color: var(--a-ink-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* bewijs: verwijzingen naar de datapagina's */

.stka .a-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

@media (max-width: 640px) {
  .stka .a-proof { grid-template-columns: 1fr; }
}

.stka a.a-card {
  display: block;
  background: var(--a-surface);
  border: 1px solid var(--a-rule);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}

.stka a.a-card:hover { border-color: var(--a-live); }

.stka a.a-card strong {
  font-family: var(--a-poppins);
  font-weight: 700;
  display: block;
  color: var(--a-ink);
}

.stka a.a-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--a-ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* bedrijfsgegevens */

.stka .a-facts {
  margin-top: 1.4rem;
  border: 1px solid var(--a-rule);
  border-radius: 10px;
  overflow: hidden;
}

.stka .a-facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1px;
  background: var(--a-rule);
}

.stka .a-facts div { background: var(--a-surface); padding: 13px 18px; }

.stka .a-facts dt {
  font-family: var(--a-poppins);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a-ink-3);
  margin: 0;
}

.stka .a-facts dd a { color: var(--a-live); }

.stka .a-facts dd {
  margin: 3px 0 0;
  font-variant-numeric: tabular-nums;
  color: var(--a-ink);
  font-size: 0.95rem;
}

.stka .a-facts dd .a-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--a-ink-3);
}

.stka .a-note {
  margin-top: 1.2rem;
  color: var(--a-ink-3);
  font-size: 0.85rem;
}

.stka .a-note a { color: var(--a-live); }

.stka .a-mark { display: block; width: 44px; height: 44px; margin: 0 0 1rem; }

/* Hero — teruggehaald van de oude about-pagina (zonsopkomst, zon en wolken).
   Laag 2 van de design-taal: aankleding mag op een marketingpagina, boven het paneel.
   Geen parallax: de pulse in de tegels blijft het enige bewegende element. */

.stka-hero {
  position: relative;
  overflow: hidden;
  color: #000538;
  border-radius: 14px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.6rem, 4.5vw, 3rem) clamp(3.4rem, 9vw, 7rem);
  margin-bottom: 1.4rem;
  background: linear-gradient(180deg, #fffdf6 0%, #fff5e0 22%, #ffead0 46%, #fcdcd0 66%, #fad3e0 82%, #ece2f7 100%);
}

.stka-hero * { box-sizing: border-box; }

.stka-hero .stka-sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.stka-hero .stka-sun {
  position: absolute;
  top: -200px;
  left: 60%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,253,246,.85) 0%, rgba(253,216,127,.22) 42%, rgba(253,216,127,0) 74%);
  filter: blur(18px);
}

.stka-hero .stka-cloud {
  position: absolute;
  background: rgba(255,255,255,.55);
  border-radius: 100px;
  filter: blur(8px);
}

.stka-hero .stka-cloud::before,
.stka-hero .stka-cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.stka-hero .stka-cl1 { width: 300px; height: 56px; top: 34%; left: 60%; }
.stka-hero .stka-cl1::before { width: 120px; height: 120px; top: -52px; left: 44px; }
.stka-hero .stka-cl1::after { width: 88px; height: 88px; top: -32px; left: 160px; }

.stka-hero .stka-cl2 { width: 150px; height: 34px; top: 20%; left: 82%; }
.stka-hero .stka-cl2::before { width: 66px; height: 66px; top: -28px; left: 20px; }
.stka-hero .stka-cl2::after { width: 48px; height: 48px; top: -16px; left: 74px; }

.stka-hero .stka-inner { position: relative; z-index: 3; }

.stka-hero .stka-eyebrow {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c7370d;
  margin: 0 0 .6rem;
}

.stka-hero h1 {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #000538;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}

.stka-hero .stka-vision {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #3a2f4a;
  max-width: 40ch;
  margin: 1.2rem 0 0;
  font-weight: 500;
  line-height: 1.5;
}

.stka-hero .stka-sub {
  color: #4a3340;
  max-width: 46ch;
  margin: .9rem 0 0;
  line-height: 1.6;
}

/* Hero op de laadcurve in plaats van de lucht, gelijk aan /nl/opbrengsten/ (backlog #2189).
   Gescoped op de twee about-pagina's, zodat andere ere-landing-hero's ongemoeid blijven. */

body.page-id-1607 .ere-hero,
body.page-id-17 .ere-hero {
  background:
    linear-gradient(90deg, rgba(0,5,56,.92) 0%, rgba(0,5,56,.72) 38%, rgba(0,5,56,0) 68%),
    #000538 url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20320%20180%27%20preserveAspectRatio%3D%27none%27%3E%3Crect%20width%3D%27320%27%20height%3D%27180%27%20fill%3D%27%23000538%27%2F%3E%3Cpath%20d%3D%27M0%20118%20C%2040%20118%2C%2055%2058%2C%2095%2058%20S%20150%20138%2C%20190%20138%20S%20250%2052%2C%20320%2076%20L320%20180%20L0%20180%20Z%27%20fill%3D%27%230feb88%27%20opacity%3D%270.10%27%2F%3E%3Cpath%20d%3D%27M0%20118%20C%2040%20118%2C%2055%2058%2C%2095%2058%20S%20150%20138%2C%20190%20138%20S%20250%2052%2C%20320%2076%27%20fill%3D%27none%27%20stroke%3D%27%230feb88%27%20stroke-width%3D%273%27%20opacity%3D%270.85%27%2F%3E%3Ccircle%20cx%3D%27190%27%20cy%3D%27138%27%20r%3D%275%27%20fill%3D%27%230feb88%27%2F%3E%3C%2Fsvg%3E") center / cover no-repeat;
  padding-top: 6rem;
  padding-bottom: 5.5rem;
}

body.page-id-1607 .ere-hero .sky-sun,
body.page-id-1607 .ere-hero .sky-cloud,
body.page-id-17 .ere-hero .sky-sun,
body.page-id-17 .ere-hero .sky-cloud { display: none; }

body.page-id-1607 .ere-hero-title,
body.page-id-17 .ere-hero-title { color: #ffffff; }

body.page-id-1607 .ere-hero-lead,
body.page-id-17 .ere-hero-lead { color: #cfd6e6; }

/* Tekst links, bedrijfsgegevens rechts op desktop */

.stka .a-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}

.stka .a-split-text > p {
  color: var(--a-ink-2);
  max-width: 46ch;
  margin: 0.9rem 0 0;
}

.stka .a-split h2 { font-size: clamp(1.05rem, 2.4vw, 1.25rem); font-weight: 700; }

.stka .a-split-facts .a-facts { margin-top: 1rem; }
.stka .a-split-facts .a-facts dl { grid-template-columns: 1fr; }
.stka .a-split-facts .a-note { margin-top: 0.9rem; }

@media (max-width: 860px) {
  .stka .a-split { grid-template-columns: 1fr; }
}

/* Stekker Engine */

.stka .a-engine > p { color: var(--a-ink-2); max-width: 58ch; }

.stka .a-engine img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 1.8rem auto 0;
}

/* Verwijzingen onder de Engine, en de doorlink bij de bedrijfsgegevens */

.stka .a-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin: 0.6rem 0 0;
}

.stka .a-more { margin: 1rem 0 0; }
