/* ============================================================
   KIDSCORP CREATIVE STUDIO — Landing page
   Built on the Kidscorp Design System 2.0 tokens.
   Mirrors the visual language of U18 DSP.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Roboto+Mono:wght@400;500&display=swap");

:root {
  --kc-violet-100: #E8DEFF;
  --kc-violet-200: #D3BBFE;
  --kc-violet-300: #C098FD;
  --kc-violet-400: #AF72FC;
  --kc-violet-500: #9F44FB;
  --kc-violet-600: #8812E3;
  --kc-violet-700: #680CAF;
  --kc-violet-800: #4A057D;
  --kc-violet-900: #2F0544;
  --kc-fuchsia-100: #CC95F7;
  --kc-fuchsia-500: #B33AF0;
  --kc-fuchsia-900: #6E1A98;
  --kc-cyan-100: #D1ECFF;
  --kc-cyan-300: #4CCBFF;
  --kc-cyan-900: #008EB8;
  --kc-success-500: #08A045;
  --kc-alert-500: #F35B04;
  --kc-error-500: #D90429;

  --kc-base-0: #FAFAFC;
  --kc-base-100: #DFDFDF;
  --kc-base-200: #C4C4C4;
  --kc-base-300: #A6A6A6;
  --kc-base-400: #8B8B8B;
  --kc-base-500: #6F6F6F;
  --kc-base-600: #575757;
  --kc-base-700: #3E3E3E;
  --kc-base-800: #282828;
  --kc-base-900: #121212;

  --kc-font-display: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --kc-font-body: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --kc-font-mono: "Roboto Mono", ui-monospace, monospace;

  --kc-gradient-ribbon: linear-gradient(135deg, #8D14FA 0%, #9414FA 8%, #C71BFA 70%, #DB1EFA 100%);
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Roboto Mono", monospace;

  --display-mega: clamp(56px, 9.5vw, 156px);
  --display-xxl: clamp(48px, 7.5vw, 124px);
  --display-xl: clamp(40px, 5.4vw, 88px);
  --display-l: clamp(32px, 4.2vw, 68px);
  --display-m: clamp(28px, 3.4vw, 52px);

  --space-section: clamp(80px, 9vw, 160px);
  --space-section-tight: clamp(60px, 6vw, 110px);
  --wrap-max: 1400px;
  --wrap-pad: clamp(20px, 4vw, 64px);

  --r-card: 18px;
  --r-card-lg: 28px;
  --r-pill: 999px;
  --r-notch: 105px;

  --bg: var(--kc-base-0);
  --bg-alt: #F2F2F4;
  --fg: var(--kc-base-900);
  --fg-dim: var(--kc-base-500);
  --fg-faint: var(--kc-base-400);
  --hairline: rgba(18,18,18,0.10);
  --hairline-strong: rgba(18,18,18,0.18);
  --card: #FFFFFF;
  --card-2: #F6F4FA;

  --accent: var(--kc-fuchsia-500);
  --accent-2: var(--kc-cyan-300);
  --accent-3: var(--kc-violet-500);
}

[data-palette="violet"] { --accent: var(--kc-violet-500); --accent-3: var(--kc-fuchsia-500); }
[data-palette="cyan"]   { --accent: var(--kc-cyan-300);   --accent-3: var(--kc-violet-500); }
[data-palette="fuchsia"]{ --accent: var(--kc-fuchsia-500);--accent-3: var(--kc-violet-500); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--kc-font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}
.wrap-wide {
  max-width: 1640px;
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--kc-font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9414FA;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: #9414FA;
  display: inline-block;
  flex-shrink: 0;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #ffffff;
}
.hero .eyebrow::before,
.section-dark .eyebrow::before {
  background: #ffffff;
}

h1, h2, h3, h4 { font-family: var(--kc-font-display); margin: 0; letter-spacing: -0.025em; }
.display-mega { font-size: var(--display-mega); font-weight: 800; line-height: 0.95; letter-spacing: -0.035em; }
.display-xxl  { font-size: var(--display-xxl);  font-weight: 800; line-height: 0.95; letter-spacing: -0.035em; }
.display-xl   { font-size: var(--display-xl);   font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
.display-l    { font-size: clamp(28px, 3vw, 46px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin: 16px 0 20px; }
.display-m    { font-size: clamp(22px, 2.2vw, 34px); font-weight: 700; line-height: 1.1; letter-spacing: -0.018em; margin: 0 0 16px; }

em.brand-em,
.hero h1 em,
h2 em:not([style]) {
  font-style: italic;
  font-weight: 800;
  color: #9414FA;
}

.lead {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 60ch;
  margin-bottom: 28px;
}

.section-lead {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 60ch;
  margin-bottom: 28px;
}

.mono { font-family: var(--kc-font-mono); }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1), background 200ms, color 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.btn .material-symbols-rounded { font-size: 20px; transition: transform 220ms; }
.btn-primary {
  background: #9414FA;
  color: #fff;
}
.btn-primary:hover {
  background: #7a0fd4;
  transform: translateY(-2px);
}
.btn-primary:hover .material-symbols-rounded { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover { background: rgba(179,58,240,0.06); border-color: var(--accent); color: var(--accent); }
.btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,0.20); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: var(--accent-2); color: var(--accent-2); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms cubic-bezier(0.2,0.8,0.2,1), transform 700ms cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
[data-anim="0"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  overflow: hidden;
}
.section-tight { padding-top: var(--space-section-tight); padding-bottom: var(--space-section-tight); }
.section-dark {
  background: var(--kc-base-900);
  color: #F5F2FA;
  --fg: #F5F2FA;
  --fg-dim: rgba(245,242,250,0.62);
  --fg-faint: rgba(245,242,250,0.42);
  --hairline: rgba(255,255,255,0.10);
  --hairline-strong: rgba(255,255,255,0.20);
  --card: rgba(255,255,255,0.04);
  --card-2: rgba(255,255,255,0.06);
  --bg: var(--kc-base-900);
}
.section-light {
  background: var(--kc-base-0);
  color: var(--kc-base-900);
}

/* Blobs */
.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}
.blob-violet  { background: radial-gradient(circle, var(--kc-violet-500)  0%, transparent 60%); }
.blob-fuchsia { background: radial-gradient(circle, var(--kc-fuchsia-500) 0%, transparent 60%); }
.blob-cyan    { background: radial-gradient(circle, var(--kc-cyan-300)    0%, transparent 60%); }

/* Grain */
.grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background: var(--kc-base-900);
  color: #fff;
  --fg: #F5F2FA;
  --fg-dim: rgba(245,242,250,0.62);
  --hairline: rgba(255,255,255,0.10);
  --card: rgba(255,255,255,0.04);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(179,58,240,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(159,68,251,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 0% 50%, rgba(76,203,255,0.12) 0%, transparent 60%),
    var(--kc-base-900);
  z-index: 0;
}
.hero .iso-watermark {
  position: absolute;
  bottom: -180px; right: -120px;
  width: 720px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.hero .blob-1 {
  width: 520px; height: 520px;
  left: -120px; top: 30%;
  z-index: 0; opacity: 0.30;
  will-change: transform;
}
.hero .blob-2 {
  width: 460px; height: 460px;
  right: -100px; bottom: -80px;
  z-index: 0; opacity: 0.40;
  will-change: transform;
}
.hero .wrap-wide { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 28px 0 28px;
}
.hero h1 em {
  font-style: italic;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #9414FA;
  font-weight: 800;
}
.hero .lead { color: rgba(245,242,250,0.75); max-width: 52ch; margin-bottom: 36px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
}
.hero-trust .t { display: flex; flex-direction: column; gap: 4px; }
.hero-trust .t b {
  font-family: var(--kc-font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--kc-fuchsia-100) 0%, #fff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-trust .t span { font-size: 13px; color: rgba(245,242,250,0.50); line-height: 1.4; }
@media (max-width: 720px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Hero UI card ---------- */
.hero-ui {
  perspective: 900px;
}
.hero-ui-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1);
}
.chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chrome .lights { display: flex; gap: 6px; }
.chrome .lights i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  display: block;
}
.chrome .url {
  font-family: var(--kc-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(245,242,250,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brief {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 20px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brief .right { text-align: right; }
.brief .l {
  font-family: var(--kc-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,250,0.40);
  margin-bottom: 4px;
}
.brief .v {
  font-weight: 600;
  font-size: 14px;
  color: rgba(245,242,250,0.90);
}

/* Format selector in hero card */
.format-selector { padding: 16px 20px; }
.format-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,250,0.40);
  margin-bottom: 10px;
}
.format-options { display: flex; flex-direction: column; gap: 6px; }
.format-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  color: rgba(245,242,250,0.65);
  transition: background 200ms, border-color 200ms, color 200ms;
  cursor: default;
}
.format-opt .material-symbols-rounded { font-size: 18px; opacity: 0.6; }
.format-opt.active {
  background: rgba(179,58,240,0.18);
  border-color: rgba(179,58,240,0.50);
  color: #fff;
}
.format-opt.active .material-symbols-rounded { opacity: 1; color: var(--kc-fuchsia-100); }
.fbadge {
  margin-left: auto;
  font-family: var(--kc-font-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: rgba(179,58,240,0.35);
  color: var(--kc-fuchsia-100);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.accent-text {
  background: linear-gradient(135deg, var(--kc-fuchsia-100) 0%, var(--kc-violet-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ============================================================
   PILLARS
   ============================================================ */
.section-intro {
  text-align: center;
  max-width: 72ch;
  margin: 0 auto 72px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #8B8B8B;
  border-radius: var(--r-card-lg);
  padding: 32px 28px;
  transition: transform 300ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 300ms, border-color 300ms;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(179,58,240,0.18);
  border-color: rgba(179,58,240,0.30);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kc-fuchsia-900) 0%, var(--kc-violet-800) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon .material-symbols-rounded { color: var(--kc-fuchsia-100); font-size: 24px; }
.pillar-card h3 {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kc-base-500);
  margin: 0;
}

/* ============================================================
   FORMAT SECTIONS
   ============================================================ */
.format-section { isolation: isolate; }
.format-section .wrap { position: relative; z-index: 2; }

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.format-grid-reverse { direction: rtl; }
.format-grid-reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .format-grid,
  .format-grid-reverse { grid-template-columns: 1fr; direction: ltr; }
  .format-grid-reverse > * { direction: ltr; }
}

.format-text { display: flex; flex-direction: column; }

.format-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px;
  background: #222222;
  border: 1px solid #434343;
  border-radius: var(--r-card);
}
.format-features-light {
  background: #ffffff;
  border-color: #8B8B8B;
}
.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat .material-symbols-rounded {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat div { display: flex; flex-direction: column; gap: 3px; }
.feat strong { font-weight: 600; font-size: 15px; }
.feat span { font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

/* Visual placeholder */
.format-visual { position: relative; }
.placeholder-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(179,58,240,0.15) 0%, rgba(159,68,251,0.10) 50%, rgba(76,203,255,0.08) 100%);
  border: 1px dashed rgba(255,255,255,0.20);
  border-radius: var(--r-card-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
  color: rgba(245,242,250,0.40);
}
.placeholder-visual.placeholder-light {
  background: linear-gradient(135deg, rgba(179,58,240,0.06) 0%, rgba(159,68,251,0.04) 50%, rgba(76,203,255,0.04) 100%);
  border-color: rgba(18,18,18,0.15);
  color: var(--kc-base-400);
}
.placeholder-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--kc-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: inherit;
}
.placeholder-label .material-symbols-rounded { font-size: 36px; opacity: 0.5; }
.placeholder-hint {
  font-size: 11px;
  opacity: 0.5;
  font-family: var(--kc-font-mono);
  letter-spacing: 0.08em;
}
.placeholder-label.dark { color: var(--kc-base-400); }
.placeholder-hint.dark { color: var(--kc-base-400); }

.format-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #222222;
  border: 1px solid #434343;
  border-radius: var(--r-card);
  padding: 16px 22px;
  min-width: 180px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.6);
}
.format-stat-light {
  background: #ffffff;
  border-color: #8B8B8B;
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.12);
}
.stat-big {
  font-family: var(--kc-font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 6px 0 4px;
}
@media (max-width: 600px) {
  .format-stat-card { position: static; margin-top: 16px; }
}

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 880px) {
  .privacy-layout { grid-template-columns: 1fr; }
}

.privacy-text .display-l { margin-bottom: 20px; }

.privacy-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .privacy-badges { grid-template-columns: repeat(2, 1fr); }
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.badge-placeholder {
  width: 72px; height: 72px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kc-font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: rgba(245,242,250,0.35);
  text-align: center;
  padding: 8px;
}
.badge-item span {
  font-family: var(--kc-font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245,242,250,0.45);
  text-align: center;
}

.privacy-card {
  background: #222222;
  border: 1px solid #434343;
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.privacy-layers {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.privacy-layer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.privacy-layer:last-child { border-bottom: 0; padding-bottom: 0; }
.privacy-layer .material-symbols-rounded {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.privacy-layer div { display: flex; flex-direction: column; gap: 4px; }
.privacy-layer strong { font-weight: 600; font-size: 15px; }
.privacy-layer span { font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-panel {
  position: fixed;
  bottom: 28px; right: 28px;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-card);
  padding: 18px 20px;
  width: 240px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: rgba(245,242,250,0.80);
}
.tweaks-panel.open { display: flex; }
.tw-header {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--kc-font-mono);
}
.tw-header button { color: rgba(245,242,250,0.50); font-size: 14px; padding: 0; }
.tw-row { display: flex; align-items: center; gap: 10px; }
.tw-row > span:first-child { min-width: 70px; color: rgba(245,242,250,0.50); font-size: 12px; }
.tw-row input[type="range"] { flex: 1; accent-color: var(--accent); }
.seg {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-pill);
  padding: 3px;
}
.seg button {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-family: var(--kc-font-mono);
  letter-spacing: 0.08em;
  color: rgba(245,242,250,0.50);
  transition: background 200ms, color 200ms;
}
.seg button.on {
  background: var(--accent);
  color: #fff;
}
.palette-swatches {
  display: flex;
  gap: 8px;
}
.palette-swatches button {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 200ms, transform 200ms;
}
.palette-swatches button.on {
  border-color: #fff;
  transform: scale(1.15);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 720px) {
  .hero { padding: 130px 0 80px; }
  .format-stat-card { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .blob { animation: none !important; }
}

/* ============================================================
   CTA FINAL + FORM (matches Home exactly)
   ============================================================ */
.cta-final {
  padding: 160px 0 180px;
  position: relative;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(159,68,251,0.38), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(76,203,255,0.24), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(219,30,250,0.22), transparent 65%);
}
.cta-final__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cta-final__left h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 18px 0 24px;
  color: #fff;
}
.cta-final__p {
  font-size: clamp(15px, 1.2vw, 19px); line-height: 1.5;
  opacity: 0.78; max-width: 520px;
  margin: 0 0 40px;
}
.cta-final__social { display: flex; gap: 14px; margin-top: 48px; }
.cta-final__social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .2s, border-color .2s, transform .2s;
  color: #fff;
}
.cta-final__social a:hover {
  background: rgba(76,203,255,0.1);
  border-color: rgba(76,203,255,0.6);
  transform: translateY(-2px);
}
.form {
  background: rgba(12,12,12,0.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: ""; position: absolute; top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, #4CCBFF, transparent);
  box-shadow: 0 0 24px #4CCBFF;
}
.form__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; margin: 0 0 28px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.form__title .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4CCBFF; box-shadow: 0 0 10px #4CCBFF;
  animation: dotPulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(76,203,255,0.2), 0 0 14px #4CCBFF; }
  50%     { box-shadow: 0 0 0 10px rgba(76,203,255,0), 0 0 22px #4CCBFF; }
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form__row--single { grid-template-columns: 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.6; color: #fff;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: #fff;
  transition: border-color .2s, background .2s;
}
.form__field textarea { min-height: 90px; resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: #4CCBFF;
  background: rgba(76,203,255,0.04);
  box-shadow: 0 0 0 3px rgba(76,203,255,0.15);
}
.form__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.form__submit {
  width: 100%; margin-top: 12px;
  padding: 16px 20px; border-radius: 14px;
  background: var(--kc-gradient-ribbon);
  border: 0; color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 12px 40px -10px rgba(219,30,250,0.7);
}
.form__submit:hover { box-shadow: 0 18px 52px -8px rgba(219,30,250,0.9); transform: translateY(-1px); }
.form__fine { font-size: 12px; opacity: 0.5; margin-top: 16px; text-align: center; color: #fff; }
@media (max-width: 960px) {
  .cta-final__inner { grid-template-columns: 1fr; }
  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER (matches Home exactly)
   ============================================================ */
.footer-home {
  background: #0d0d0d;
  padding: 96px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { max-width: 360px; }
.footer__tagline {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; line-height: 1.35;
  margin: 0 0 20px; color: #fff;
}
.footer__col h5 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 22px; font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer__col a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px; opacity: 0.85; color: #fff;
  transition: color .15s, opacity .15s;
}
.footer__col a:hover { color: #4CCBFF; opacity: 1; }
.footer__bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; opacity: 0.5; color: #fff;
}
.footer__bottom p { margin: 0; max-width: 720px; line-height: 1.5; }
@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Home section-kicker (used in CTA section — dark background) */
.section-kicker {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #ffffff;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-kicker::before {
  content: ""; width: 28px; height: 1px; background: #ffffff;
}

/* ============================================================
   ABOUT PAGE — Hero grid
   ============================================================ */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.hero-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-about-grid { grid-template-columns: 1fr; gap: 60px; }
}
.hero-about-grid h1 {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 28px 0 28px;
}
.hero-about-grid h1 em {
  font-style: italic;
  color: #9414FA;
  font-weight: 800;
}

/* About hero promise card */
.hero-about-visual { perspective: 900px; }
.about-promise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1);
}
.promise-inner {
  padding: 32px 28px 28px;
}
.promise-quote-mark {
  font-family: var(--kc-font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.7;
  color: var(--kc-fuchsia-500);
  margin-bottom: 16px;
  opacity: 0.7;
}
.promise-text {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(245,242,250,0.88);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px;
}
.promise-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   DNA CARDS
   ============================================================ */
.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .dna-grid { grid-template-columns: 1fr; }
}

.dna-card {
  background: #ffffff;
  border: 1px solid #8B8B8B;
  border-radius: var(--r-card-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 300ms, border-color 300ms;
}
.dna-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(179,58,240,0.18);
  border-color: rgba(179,58,240,0.30);
}
.dna-card-accent {
  background: linear-gradient(135deg, var(--kc-fuchsia-900) 0%, var(--kc-violet-800) 100%);
  border-color: transparent;
  color: #fff;
}
.dna-card-accent p { color: rgba(245,242,250,0.72); }
.dna-card-accent .dna-number { color: rgba(255,255,255,0.25); }
.dna-card-accent .dna-icon { background: rgba(255,255,255,0.10); }
.dna-card-accent .dna-icon .material-symbols-rounded { color: #fff; }
.dna-card-accent h3 { color: #fff; }

.dna-number {
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--kc-base-400);
  margin-bottom: 20px;
  display: block;
}
.dna-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--kc-fuchsia-900) 0%, var(--kc-violet-800) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.dna-icon .material-symbols-rounded { color: var(--kc-fuchsia-100); font-size: 26px; }
.dna-card h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.dna-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--kc-base-500);
  margin: 0;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 880px) {
  .mission-layout { grid-template-columns: 1fr; }
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 600px) {
  .mission-stats { grid-template-columns: 1fr; }
}
.mstat { display: flex; flex-direction: column; gap: 6px; }
.mstat-val {
  font-family: var(--kc-font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mstat-label {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.4;
}

.mission-card {
  background: #222222;
  border: 1px solid #434343;
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.mission-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mission-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mission-item:last-child { border-bottom: 0; padding-bottom: 0; }
.mission-item .material-symbols-rounded {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mission-item div { display: flex; flex-direction: column; gap: 4px; }
.mission-item strong { font-weight: 600; font-size: 15px; }
.mission-item span { font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

/* ============================================================
   PROMISE STRIP
   ============================================================ */
.promise-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
}
.promise-strip__line {
  flex: 1;
  height: 1px;
  background: #e0dde8;
}
.promise-strip__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  text-align: center;
  max-width: 560px;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   STAND FOR ACCORDION
   ============================================================ */
.stand-list {
  display: flex;
  flex-direction: column;
}
.stand-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stand-item:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.stand-item__hd {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  transition: color 200ms;
}
.stand-item__hd:hover { color: #B23AF0; }
.stand-item--open .stand-item__hd { color: #B23AF0; }
.stand-item__num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  min-width: 24px;
}
.stand-item--open .stand-item__num { color: #B23AF0; }
.stand-item__title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}
.stand-item__arrow {
  font-size: 18px;
  transition: transform 300ms ease;
  color: rgba(255,255,255,0.4);
}
.stand-item--open .stand-item__arrow {
  transform: rotate(180deg);
  color: #B23AF0;
}
.stand-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, padding 350ms ease;
  padding: 0 0 0 40px;
}
.stand-item--open .stand-item__body {
  max-height: 120px;
  padding: 0 0 20px 40px;
}
.stand-item__body p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(179,58,240,0.25) 10%, rgba(179,58,240,0.25) 90%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 680px) {
  .timeline-line { left: 20px; }
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 0 32px;
  padding: 32px 0;
}
.timeline-item-right { direction: rtl; }
.timeline-item-right > * { direction: ltr; }

.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--kc-base-200);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(179,58,240,0.20);
  flex-shrink: 0;
  margin-top: 6px;
  align-self: start;
  grid-column: 2;
  z-index: 2;
}
.timeline-dot-active {
  background: var(--kc-fuchsia-500);
  box-shadow: 0 0 0 3px rgba(179,58,240,0.30), 0 0 16px rgba(179,58,240,0.40);
  animation: dotPulse 2.5s ease-out infinite;
}

.timeline-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-year {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--kc-base-400);
  text-transform: uppercase;
}
.timeline-content {
  background: #ffffff;
  border: 1px solid #DFDFDF;
  border-radius: var(--r-card);
  padding: 24px 26px;
  transition: box-shadow 300ms, border-color 300ms;
}
.timeline-content:hover {
  box-shadow: 0 8px 32px -8px rgba(179,58,240,0.16);
  border-color: rgba(179,58,240,0.25);
}
.timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--kc-base-500);
  margin: 0;
}

/* Simplified mobile timeline */
@media (max-width: 680px) {
  .timeline-item {
    grid-template-columns: 40px 1fr;
    direction: ltr !important;
  }
  .timeline-item-right { direction: ltr; }
  .timeline-dot {
    grid-column: 1;
    margin-left: 13px;
  }
  .timeline-body { grid-column: 2; }
}

/* ============================================================
   TEAM CAROUSEL
   ============================================================ */
.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.section-intro-left { max-width: 640px; }
.section-intro-left .display-l { margin: 16px 0 12px; }
.section-intro-left .lead { margin-bottom: 0; }
.team-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.team-arrow {
  width: 40px; height: 40px;
  padding: 0;
  line-height: 0;
  transition: transform 200ms, opacity 200ms;
}
.team-arrow img { width: 40px; height: 40px; display: block; }
.team-arrow:hover { transform: translateY(-2px); }
.team-arrow:active { transform: translateY(0) scale(0.96); }

.team-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-right: calc(var(--wrap-pad) * -1);
  padding: 4px var(--wrap-pad) 12px 0;
}
.team-carousel::-webkit-scrollbar { display: none; }

.team-track {
  display: flex;
  gap: 20px;
}

.team-slide {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 20vw, 260px);
  aspect-ratio: 0.77;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
  transition: transform 300ms cubic-bezier(0.2,0.8,0.2,1);
}
.team-slide:hover { transform: translateY(-4px); }
.team-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 65%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.team-overlay-text { min-width: 0; }
.team-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 4px;
}
.team-job {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
  margin: 0;
}
.team-linkedin {
  flex-shrink: 0;
  display: block;
}
.team-linkedin img {
  width: 26px; height: 26px;
  object-fit: contain;
}

@media (max-width: 780px) {
  .team-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   JOIN / CAREERS
   ============================================================ */
.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 880px) {
  .join-layout { grid-template-columns: 1fr; }
}

.join-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .join-perks { grid-template-columns: 1fr; }
}
.perk-card {
  background: #ffffff;
  border: 1px solid #DFDFDF;
  border-radius: var(--r-card);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 280ms, border-color 280ms, transform 280ms cubic-bezier(0.2,0.8,0.2,1);
}
.perk-card:hover {
  box-shadow: 0 8px 28px -8px rgba(179,58,240,0.14);
  border-color: rgba(179,58,240,0.25);
  transform: translateY(-2px);
}
.perk-card > .material-symbols-rounded {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.perk-card div { display: flex; flex-direction: column; gap: 4px; }
.perk-card strong { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.perk-card span { font-size: 13px; line-height: 1.55; color: var(--kc-base-500); }
