/* weDISCOVR site-v3 shared styles
   Palette discipline: magenta primary, lime secondary, violet identity.
   Cyan/gold/coral reserved for data viz only.
*/
:root {
  /* Extended tokens used only in shared.css — base tokens live in styles/globals.css */
  --magenta-deep: #C2104F;
  --lime-deep:    #95B41A;
  --ink-card:     #141414;
  --t-100: rgba(255,245,230,1);
  --t-25:  rgba(255,245,230,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 60% 50% at 12% 8%, rgba(255,27,110,0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 88% 14%, rgba(212,242,58,0.06), transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(149,119,240,0.10), transparent 60%),
    var(--ink);
  background-attachment: fixed;
  color: var(--cream);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wedi-logo { height: 36px; width: 108px; display: block; }
.wedi-logo.lg { height: 44px; width: 132px; }

/* ── STATUS STRIP ─────────────────────────────────────── */
.status-strip {
  background: linear-gradient(90deg, rgba(255,27,110,0.18), rgba(149,119,240,0.14) 50%, rgba(212,242,58,0.18));
  border-bottom: 1px solid var(--hairline);
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 13px; font-weight: 700;
  color: var(--cream); letter-spacing: 0.01em;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 8px var(--lime); }
  50% { transform: scale(1.3); box-shadow: 0 0 14px var(--lime), 0 0 22px rgba(212,242,58,0.5); }
}
.status-strip a {
  color: var(--cream); text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 4px; text-decoration-thickness: 2px;
  font-weight: 800;
}
.status-strip a:hover { color: var(--lime); }

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 40px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; height: 44px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li > a, .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--t-70); font-size: 14px; font-weight: 700;
  padding: 10px 16px; border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav-links > li > a:hover, .nav-has-dropdown:hover .nav-trigger { background: rgba(255,245,230,0.08); color: var(--cream); }
.nav-links > li > a.active { background: rgba(212,242,58,0.16); color: var(--lime); }
.nav-trigger .chev {
  width: 9px; height: 9px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.2s;
}
.nav-has-dropdown:hover .chev { transform: rotate(-135deg) translateY(-2px); }
.nav-cta {
  background: var(--cream); color: var(--ink);
  font-size: 14px; font-weight: 800;
  padding: 12px 24px; border-radius: 999px;
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}
.nav-cta:hover { background: var(--lime); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }

.nav-has-dropdown { position: relative; }
.nav-mega {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding-top: 8px;
  width: 620px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.nav-mega-inner {
  background: var(--ink-card);
  border: 1px solid var(--hairline-2);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
}
.nav-has-dropdown:hover .nav-mega { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.nav-mega-item {
  display: block; padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.nav-mega-item:hover { background: rgba(255,245,230,0.06); border-color: var(--hairline-2); }
.nav-mega-num { display: inline-block; font-size: 10px; font-weight: 900; letter-spacing: 1.4px; color: var(--magenta); margin-bottom: 8px; }
.nav-mega-item h5 { font-size: 16px; font-weight: 900; color: var(--cream); margin-bottom: 6px; letter-spacing: -0.3px; }
.nav-mega-item p { font-size: 12.5px; color: var(--t-55); line-height: 1.5; }
.nav-mega-foot {
  margin-top: 8px; padding: 16px 20px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.nav-mega-foot .live { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-mega-foot .live .ldot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s ease infinite; }
.nav-mega-foot a { color: var(--cream); font-weight: 800; }
.nav-mega-foot a:hover { color: var(--lime); }

/* ── COMMON ───────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
section { padding: 88px 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1.8px;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow.magenta { color: var(--magenta); background: rgba(255,27,110,0.14); border: 1px solid rgba(255,27,110,0.4); }
.eyebrow.lime    { color: var(--lime);    background: rgba(212,242,58,0.14); border: 1px solid rgba(212,242,58,0.4); }
.eyebrow.violet  { color: var(--violet);  background: rgba(149,119,240,0.18); border: 1px solid rgba(149,119,240,0.5); }

h1.page-title {
  font-weight: 900;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -2.6px;
  margin-bottom: 26px;
}
h1.page-title em, h2.section-h2 em, .gradient-text {
  font-style: normal;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--lime) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
h2.section-h2 {
  font-weight: 900;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
  max-width: 920px;
}
p.section-intro {
  font-size: 18px; color: var(--t-70);
  line-height: 1.6; max-width: 680px;
  margin-bottom: 56px;
}
p.section-intro strong { color: var(--cream); font-weight: 800; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-sticker {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--ink);
  font-size: 15px; font-weight: 900; letter-spacing: 0.2px;
  padding: 15px 28px; border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}
.btn-sticker:hover { background: var(--lime); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-sticker.magenta { background: var(--magenta); color: var(--cream); }
.btn-sticker.magenta:hover { background: var(--magenta-deep); }
.btn-ghost {
  color: var(--cream); border: 1.5px solid rgba(255,245,230,0.22);
  background: transparent;
  font-size: 15px; font-weight: 700;
  padding: 14px 24px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(255,245,230,0.06); }

/* ── BREADCRUMB ───────────────────────────────────────── */
.crumb {
  padding: 24px 0 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--t-40);
}
.crumb a { color: var(--t-55); transition: color 0.15s; }
.crumb a:hover { color: var(--cream); }
.crumb .sep { color: var(--t-25); }
.crumb .here { color: var(--magenta); }

/* ── KDK PROOF CTA (reusable) ─────────────────────────── */
.kdk-proof {
  background: var(--magenta);
  padding: 128px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  color: var(--cream);
}
.kdk-video {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: url('kdk-poster.jpg');
  background-size: cover;
  background-position: center;
}
.kdk-video iframe,
.kdk-video video {
  position: absolute; inset: -10% -10%;
  width: 120%; height: 120%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}
.kdk-overlay {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,242,58,0.28), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(149,119,240,0.30), transparent 55%),
    linear-gradient(180deg, rgba(12,12,12,0.55), rgba(12,12,12,0.78));
}
.kdk-proof > .kdk-proof-tag,
.kdk-proof > h2,
.kdk-proof > p,
.kdk-proof > .kdk-partners,
.kdk-proof > .kdk-btns { position: relative; z-index: 2; }
.kdk-partners { margin: 40px auto 36px; max-width: 600px; }
.kdk-partners-label {
  display: block;
  font-size: 11px; font-weight: 900;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,245,230,0.6);
  margin-bottom: 16px;
}
.kdk-partners-logos { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.kdk-partner-pill {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  border-radius: 16px;
  padding: 14px 22px;
  width: 200px; height: 72px;
  box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.kdk-partner-pill img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  display: block;
}
.kdk-proof-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 900; letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--cream);
}
.kdk-proof-tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 6px var(--lime); animation: pulse 1.6s ease infinite; }
.kdk-proof h2 {
  font-weight: 900; font-size: clamp(48px, 6.4vw, 80px);
  line-height: 1.0; letter-spacing: -2.6px;
  color: var(--cream);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.kdk-proof h2 em { font-style: normal; color: var(--lime); }
.kdk-proof p {
  font-size: 19px; color: rgba(255,245,230,0.85);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.5; font-weight: 600;
  position: relative; z-index: 1;
}
.kdk-btns { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }
.btn-cream-sticker {
  background: var(--cream); color: var(--ink);
  font-weight: 900; font-size: 15px;
  padding: 16px 32px; border-radius: 999px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cream-sticker:hover { background: var(--lime); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-outline-cream {
  color: var(--cream);
  border: 2px solid rgba(255,245,230,0.5);
  font-weight: 900; font-size: 15px;
  padding: 14px 28px; border-radius: 999px;
  transition: border-color 0.15s, background 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-cream:hover { border-color: var(--cream); background: rgba(255,245,230,0.1); }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: #060606; border-top: 1px solid var(--hairline); padding: 96px 40px 0; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 64px; }
.footer-brand p { font-size: 14px; color: var(--t-55); line-height: 1.65; max-width: 320px; margin-top: 20px; }
.patent-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,245,230,0.06);
  border: 1px solid var(--hairline);
  padding: 8px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--t-70);
  margin-top: 24px;
}
.patent-pill .accent { color: var(--lime); font-weight: 900; }
.footer-col h5 { font-size: 12px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; color: var(--t-55); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--t-55); transition: color 0.15s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--t-25);
}
.footer-bottom a { color: var(--t-25); margin-left: 22px; }
.footer-bottom a:hover { color: var(--t-55); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1080px) {
  section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-mega { width: 92vw; max-width: 540px; }
  .kdk-proof { padding: 96px 32px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .status-strip { padding: 10px 16px; font-size: 12px; gap: 8px; }
  .kdk-proof { padding: 80px 20px; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(255,245,230,0.12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,245,230,0.22); }
