/* kidjo.nl — black and orange (Clifford, 2026-08-06).
 *
 * Its own site because it is its own product. vloka.nl is a white, quiet, engineering site; this
 * one is the opposite by design, and the two must not be mistaken for each other. What they DO
 * share is the discipline: no claim here that the software does not do, and the same sentence
 * about what leaves your network.
 *
 * The palette is measured off the delivered logo (site/art/kidjo-*.png), not chosen:
 *   #0D172C  the mark's dark          -> the page, deepened to near-black for contrast
 *   #FF642D  the mark's orange        -> the one accent, and it is never decoration
 * Orange means "this is the thing" — a heading that matters, the one call to action. A page where
 * everything is orange says nothing is.
 */

:root{
  --ink:#0B0F19;            /* the page: the mark's navy taken down to near-black */
  --ink-2:#121828;          /* a panel that has to lift off it */
  --line:#232B3D;
  --text:#E8ECF4;
  --muted:#9AA5B8;
  --faint:#6B7488;
  --orange:#FF642D;
  --orange-soft:rgba(255,100,45,.14);
  --white:#FFFFFF;
}

*,*::before,*::after{box-sizing:border-box;}
body{margin:0;background:var(--ink);color:var(--text);
  font-family:"IBM Plex Sans",system-ui,-apple-system,sans-serif;line-height:1.6;
  -webkit-font-smoothing:antialiased;}
a{color:var(--orange);text-decoration:none;}
a:hover{text-decoration:underline;}
h1,h2,h3{line-height:1.15;letter-spacing:-.02em;margin:0;}
.mono{font-family:"IBM Plex Mono",monospace;}

.wrap{max-width:1080px;margin:0 auto;padding:0 24px;}

/* ---------------------------------------------------------------------------- header */
.kh{position:sticky;top:0;z-index:20;background:rgba(11,15,25,.86);
  backdrop-filter:blur(8px);border-bottom:1px solid var(--line);}
.kh-in{display:flex;align-items:center;gap:18px;max-width:1080px;margin:0 auto;padding:14px 24px;}
.kh-brand{display:flex;align-items:center;}
.kh-brand img{height:30px;width:auto;display:block;}
.kh-nav{display:flex;gap:6px;margin-left:auto;flex-wrap:wrap;}
.kh-nav a{padding:7px 12px;border-radius:8px;color:var(--muted);font-size:14px;font-weight:500;}
.kh-nav a:hover{background:var(--ink-2);color:var(--text);text-decoration:none;}
/* Same two-link switch as vloka.nl, in this site's clothes. */
.kh-lang{display:flex;flex:none;border:1px solid var(--line);border-radius:8px;overflow:hidden;}
.kh-lang a{padding:6px 10px;font-family:"IBM Plex Mono",monospace;font-size:12px;color:var(--faint);}
.kh-lang a:hover{background:var(--ink-2);color:var(--text);text-decoration:none;}
.kh-lang a.on{background:var(--orange-soft);color:var(--orange);font-weight:600;}

/* ---------------------------------------------------------------------------- hero */
.hero{padding:88px 0 72px;border-bottom:1px solid var(--line);position:relative;overflow:hidden;}
/* One soft orange glow, off to the right, so the black is not flat. It is the only decoration
   on the page and it carries no meaning — which is why it is this quiet. */
.hero::after{content:"";position:absolute;right:-160px;top:-120px;width:520px;height:520px;
  background:radial-gradient(circle,rgba(255,100,45,.16),transparent 62%);pointer-events:none;}
.hero-in{position:relative;z-index:1;max-width:1080px;margin:0 auto;padding:0 24px;}
.eyebrow{font-family:"IBM Plex Mono",monospace;font-size:11.5px;letter-spacing:.2em;
  text-transform:uppercase;color:var(--orange);margin-bottom:18px;}
.hero h1{font-size:clamp(32px,5.4vw,58px);font-weight:700;max-width:17ch;}
.hero h1 em{font-style:normal;color:var(--orange);}
.hero .lead{font-size:17.5px;color:var(--muted);max-width:60ch;margin:22px 0 0;}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px;}

.btn{display:inline-flex;align-items:center;justify-content:center;height:46px;padding:0 22px;
  border-radius:10px;font-size:15px;font-weight:600;border:1px solid var(--line);
  background:transparent;color:var(--text);cursor:pointer;font-family:inherit;}
.btn:hover{background:var(--ink-2);text-decoration:none;}
.btn-primary{background:var(--orange);border-color:var(--orange);color:#12060A;}
.btn-primary:hover{filter:brightness(1.08);background:var(--orange);text-decoration:none;}

/* ---------------------------------------------------------------------------- sections */
.sec{padding:72px 0;border-bottom:1px solid var(--line);}
.sec h2{font-size:clamp(24px,3.4vw,36px);font-weight:700;max-width:22ch;}
.sec .sub{color:var(--muted);max-width:64ch;margin:16px 0 0;font-size:16.5px;}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px;margin-top:36px;}
.card{background:var(--ink-2);border:1px solid var(--line);border-radius:14px;padding:26px 24px;}
.card h3{font-size:18px;font-weight:650;margin-bottom:10px;}
.card p{color:var(--muted);font-size:14.8px;margin:0;}
.card p + p{margin-top:12px;}

/* The two products, side by side, because the difference between them IS the product story. */
.two{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:18px;margin-top:36px;}
.kcard{background:var(--ink-2);border:1px solid var(--line);border-radius:16px;padding:30px 28px;}
.kcard.sky{border-color:rgba(255,100,45,.35);}
.kcard img{height:44px;width:auto;display:block;margin-bottom:18px;}
.kname{font-family:"IBM Plex Mono",monospace;font-size:15px;letter-spacing:.06em;
  color:var(--text);font-weight:600;}
.ksub{color:var(--orange);font-size:13px;font-weight:600;margin:6px 0 14px;
  font-family:"IBM Plex Mono",monospace;}
.kcard p{color:var(--muted);font-size:14.8px;margin:0;}

.plain{background:var(--ink-2);border-left:3px solid var(--orange);border-radius:0 12px 12px 0;
  padding:20px 22px;margin-top:20px;color:var(--muted);font-size:15px;}
.plain b{color:var(--text);}

ul.clean{margin:22px 0 0;padding-left:20px;color:var(--muted);font-size:15.5px;}
ul.clean li{margin-bottom:12px;}
ul.clean b{color:var(--text);}

/* ---------------------------------------------------------------------------- footer */
.kf{padding:44px 0 56px;color:var(--faint);font-size:14px;}
.kf-in{max-width:1080px;margin:0 auto;padding:0 24px;display:flex;gap:24px;flex-wrap:wrap;
  align-items:center;}
.kf a{color:var(--muted);}
.kf .sp{margin-left:auto;}

@media (max-width:760px){
  .hero{padding:60px 0 52px;}
  .sec{padding:52px 0;}
  .kh-nav{display:none;}
}
