/* ==========================================================================
   MYC DIGITAL — Manual de Marca
   Estilo Editorial · Limpio · Luminoso · Orgánico
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --blue: #0761F7;
  --yellow: #FFC801;
  --red: #FF2A2C;
  --pink: #FD01C6;

  /* Neutrals — warm, soft */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #F5F4F0;
  --sand: #EDEBE6;
  --warm-gray: #B8B5AD;
  --mid-gray: #8C8985;
  --charcoal: #3D3B37;
  --ink: #1A1917;

  /* Layout */
  --max-w: 1180px;
  --gutter: 24px;

  /* Type */
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 0.2s var(--ease);
  --t-normal: 0.35s var(--ease);
}

/* --------------------------------------------------------------------------
   RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
code { font-family: var(--font-mono); font-size: 0.85em; }

::selection {
  background: var(--blue);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 100px 0;
}

.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 640px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 20px 0 0;
}

.text-center .divider { margin: 20px auto 0; }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  padding: 11px 26px;
  transition: all var(--t-fast);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn--fill {
  background: var(--blue);
  color: var(--white);
}

.btn--fill:hover {
  background: #054ec7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7, 97, 247, 0.22);
}

.btn--outline {
  border: 1.5px solid var(--sand);
  color: var(--charcoal);
  background: var(--white);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--ghost {
  color: var(--mid-gray);
  padding: 11px 18px;
}

.btn--ghost:hover { color: var(--ink); }

.btn--sm {
  font-size: 0.82rem;
  padding: 8px 18px;
}

.btn--icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--sand);
  color: var(--charcoal);
  transition: all var(--t-fast);
}

.btn--icon:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--icon svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--t-normal);
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo { height: 32px; }

.nav { display: flex; align-items: center; }

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid-gray);
  transition: color var(--t-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--ink); }

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu button */
.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.mobile-btn span {
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all var(--t-fast);
}

/* --------------------------------------------------------------------------
   HERO — Editorial, expansive
   -------------------------------------------------------------------------- */
.hero {
  padding: 140px 0 100px;
  background: var(--white);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--blue);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-frame {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 56px 44px;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transition: transform var(--t-normal);
}

.hero__logo-frame:hover {
  transform: translateY(-4px);
}

.hero__logo-img {
  max-width: 260px;
  width: 100%;
}

.hero__logo-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.color-dot--blue { background: var(--blue); }
.color-dot--yellow { background: var(--yellow); }
.color-dot--red { background: var(--red); }
.color-dot--pink { background: var(--pink); }

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   ADN / BRAND PILLARS
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.pillar-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  transition: all var(--t-normal);
}

.pillar-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(7, 97, 247, 0.07);
  transform: translateY(-3px);
}

.pillar-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.pillar-card__icon svg { width: 22px; height: 22px; }
.pillar-card__icon--blue { background: rgba(7, 97, 247, 0.08); color: var(--blue); }
.pillar-card__icon--pink { background: rgba(253, 1, 198, 0.08); color: var(--pink); }
.pillar-card__icon--yellow { background: rgba(255, 200, 1, 0.12); color: #C49300; }

.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* Pillar bar */
.pillars-bar {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
}

.pillars-bar__item {
  background: var(--white);
  padding: 28px 24px;
}

.pillars-bar__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.pillars-bar__item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.pillars-bar__item p {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

/* --------------------------------------------------------------------------
   CONCEPTO / ANATOMY
   -------------------------------------------------------------------------- */
.concept__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: start;
}

.concept__visual {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1 / 0.9;
}

.concept__symbol {
  max-width: 280px;
  width: 80%;
}

/* Annotations */
.annotation {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.annotation__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.annotation--1 { top: 18%; left: 12%; }
.annotation--2 { top: 48%; right: 8%; }
.annotation--3 { bottom: 14%; left: 18%; }

.concept__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.concept-item {
  display: flex;
  gap: 18px;
}

.concept-item__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.concept-item__text h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.concept-item__text p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.concept-item__text ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.concept-item__text li {
  font-size: 0.88rem;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
}

.concept-item__text li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Platform association tags */
.platform-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.platform-tag {
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: var(--cream);
  border-left: 3px solid transparent;
  color: var(--charcoal);
}

.platform-tag--blue { border-left-color: var(--blue); }
.platform-tag--yellow { border-left-color: var(--yellow); }
.platform-tag--red { border-left-color: var(--red); }
.platform-tag--pink { border-left-color: var(--pink); }

/* --------------------------------------------------------------------------
   LOGO EXPLORER — Interactive version viewer
   -------------------------------------------------------------------------- */
.explorer {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 56px;
}

.explorer__tabs {
  display: flex;
  gap: 4px;
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  overflow-x: auto;
}

.explorer__tab {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mid-gray);
  white-space: nowrap;
  transition: all var(--t-fast);
}

.explorer__tab:hover { color: var(--ink); }

.explorer__tab.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.explorer__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--sand);
  flex-wrap: wrap;
  gap: 14px;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.control-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.chip-group {
  display: flex;
  gap: 5px;
}

.chip {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid-gray);
  border: 1.5px solid var(--sand);
  background: var(--white);
  transition: all var(--t-fast);
}

.chip:hover { border-color: var(--charcoal); color: var(--ink); }

.chip.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.swatch-group {
  display: flex;
  gap: 6px;
}

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all var(--t-fast);
}

.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: var(--blue); transform: scale(1.15); }

.swatch--white { background: #FFF; box-shadow: inset 0 0 0 1px var(--sand); }
.swatch--dark { background: #1A1917; }
.swatch--blue { background: var(--blue); }
.swatch--gray { background: #94918B; }
.swatch--checker {
  background-image: linear-gradient(45deg, #ddd 25%, transparent 25%),
    linear-gradient(-45deg, #ddd 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ddd 75%),
    linear-gradient(-45deg, transparent 75%, #ddd 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
  background-color: #fff;
}

/* Stage */
.explorer__stage {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  transition: background-color var(--t-normal);
  position: relative;
}

.stage--white { background: #FFFFFF; }
.stage--dark { background: #1A1917; }
.stage--blue { background: var(--blue); }
.stage--gray { background: #94918B; }
.stage--checker {
  background-image: linear-gradient(45deg, #eee 25%, transparent 25%),
    linear-gradient(-45deg, #eee 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #eee 75%),
    linear-gradient(-45deg, transparent 75%, #eee 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  background-color: #fff;
}

.stage__content {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast);
}

.stage__img {
  max-width: 400px;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.stage__scale {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--sand);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--mid-gray);
}

.stage__scale svg { width: 13px; height: 13px; }

.range-input {
  -webkit-appearance: none;
  width: 70px;
  height: 3px;
  border-radius: 2px;
  background: var(--sand);
  outline: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
}

.range-reset {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--warm-gray);
  cursor: pointer;
}

.range-reset:hover { color: var(--ink); }

/* Explorer Footer */
.explorer__footer {
  padding: 24px;
  border-top: 1px solid var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-meta__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.logo-meta__desc {
  font-size: 0.85rem;
  color: var(--mid-gray);
  max-width: 520px;
  margin-bottom: 8px;
}

.spec-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.spec-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 9px;
  background: var(--cream);
  border-radius: 4px;
  color: var(--mid-gray);
}

.download-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   VARIANT MATRIX CARDS
   -------------------------------------------------------------------------- */
.matrix-title {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 28px;
}

.variant-card {
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: all var(--t-normal);
}

.variant-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.variant-card__preview {
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.variant-card__preview--warm { background: #E8E5DF; }
.variant-card__preview--dark { background: var(--ink); }
.variant-card__preview--light { background: var(--white); border-bottom: 1px solid var(--sand); }
.variant-card__preview--blue { background: var(--blue); }

.variant-card__preview img { max-height: 100px; width: auto; }
.variant-card__preview img.wide { max-width: 200px; width: 100%; max-height: none; }

.variant-card__body {
  padding: 22px;
}

.variant-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.variant-card__type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge--fc { background: rgba(7, 97, 247, 0.08); color: var(--blue); }
.badge--white { background: var(--cream); color: var(--charcoal); }
.badge--black { background: var(--ink); color: var(--white); }

.variant-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.variant-card p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.variant-card__links {
  display: flex;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--sand);
  font-size: 0.82rem;
}

.variant-card__links a {
  color: var(--blue);
  font-weight: 600;
}

.variant-card__links a:hover { text-decoration: underline; }

.link-sep { color: var(--sand); }

/* --------------------------------------------------------------------------
   COLOR PALETTE
   -------------------------------------------------------------------------- */
.color-card {
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: all var(--t-normal);
}

.color-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.color-swatch {
  height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.color-swatch__label {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 7px;
  border-radius: 3px;
}

.color-info {
  padding: 20px;
}

.color-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.color-info__header h3 {
  font-size: 1.08rem;
}

.color-info__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--warm-gray);
}

.color-info p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.color-codes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.color-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: var(--cream);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  width: 100%;
  text-align: left;
  transition: background var(--t-fast);
  cursor: pointer;
}

button.color-code:hover { background: var(--sand); }

.color-code__label { color: var(--warm-gray); font-weight: 500; }
.color-code__val { color: var(--ink); font-weight: 700; }

.color-code__copy {
  width: 13px; height: 13px;
  color: var(--warm-gray);
  margin-left: 4px;
}

/* Neutrals */
.neutrals-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  margin-top: 48px;
}

.neutral-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--sand);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-fast);
}

.neutral-item:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.neutral-swatch {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
}

.neutral-text strong {
  font-size: 0.88rem;
  display: block;
}

.neutral-text code {
  color: var(--blue);
  font-size: 0.75rem;
}

.neutral-text span {
  font-size: 0.72rem;
  color: var(--warm-gray);
  display: block;
}

/* --------------------------------------------------------------------------
   CONSTRUCTION / CLEAR SPACE
   -------------------------------------------------------------------------- */
.construct-card {
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  padding: 32px;
  background: var(--white);
}

.construct-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.construct-card__desc {
  font-size: 0.92rem;
  color: var(--mid-gray);
  margin-bottom: 24px;
  line-height: 1.65;
}

.clearspace-box {
  background: var(--ink);
  border-radius: var(--r-sm);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.clearspace-guide {
  position: relative;
  border: 1px dashed rgba(7, 97, 247, 0.5);
  padding: 22px 28px;
}

.clearspace-guide img {
  max-width: 200px;
  width: 100%;
}

.guide-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--pink);
}

.guide-label--top { top: -12px; left: 50%; transform: translateX(-50%); }
.guide-label--right { right: -12px; top: 50%; transform: translateY(-50%); }
.guide-label--bottom { bottom: -12px; left: 50%; transform: translateX(-50%); }
.guide-label--left { left: -12px; top: 50%; transform: translateY(-50%); }

.info-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(7, 97, 247, 0.04);
  border-radius: var(--r-sm);
  border: 1px solid rgba(7, 97, 247, 0.1);
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.55;
}

.info-note svg {
  width: 18px; height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Min sizes */
.min-sizes { display: flex; flex-direction: column; gap: 16px; }

.min-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--r-sm);
}

.min-row__preview {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.min-row h4 { font-size: 0.95rem; margin-bottom: 3px; }

.min-row .spec { font-size: 0.85rem; color: var(--charcoal); }
.min-row .spec strong { color: var(--blue); }
.min-row .detail { font-size: 0.75rem; color: var(--warm-gray); }

/* --------------------------------------------------------------------------
   TYPOGRAPHY SECTION
   -------------------------------------------------------------------------- */
.type-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
}

.type-card {
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  padding: 32px;
  background: var(--white);
}

.type-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.type-card__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.type-card__name {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.type-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 28px;
}

.type-card__link {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
}

.type-card__link:hover { text-decoration: underline; }

.weight-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.weight-row {
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
}

.weight-row__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 2px;
}

.weight-row__sample {
  font-size: 1.05rem;
  color: var(--ink);
}

.w-900 .weight-row__sample { font-weight: 900; }
.w-700 .weight-row__sample { font-weight: 700; }
.w-600 .weight-row__sample { font-weight: 600; }
.w-400 .weight-row__sample { font-weight: 400; }

/* Tester */
.type-tester {
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 16px;
}

.type-tester__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.type-tester__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.type-tester__slider {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--warm-gray);
}

.type-tester__output {
  padding: 14px;
  background: var(--white);
  border: 1px dashed var(--sand);
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  outline: none;
}

.type-tester__output:focus {
  border-color: var(--blue);
}

/* Hierarchy */
.hierarchy-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }

.hierarchy-row {
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
}

.h-level {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.h-spec {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--blue);
  display: block;
}

.h-use {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* --------------------------------------------------------------------------
   MISUSE / DON'TS
   -------------------------------------------------------------------------- */
.misuse-card {
  border: 1px solid #FECACA;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: all var(--t-fast);
}

.misuse-card:hover {
  border-color: #F87171;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.06);
}

.misuse-card__preview {
  height: 150px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.misuse-card__preview img {
  max-width: 180px;
  width: 70%;
}

.misuse-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: #EF4444;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
}

.distorted { transform: scale(1.3, 0.55); }
.wrong-hue { filter: hue-rotate(140deg) saturate(1.8); }
.low-contrast-bg { background: var(--blue) !important; }
.shadowed { filter: drop-shadow(6px 6px 0 #000) drop-shadow(-3px -3px 8px red); }
.flipped { transform: rotate(180deg); }
.rotated { transform: rotate(45deg) scale(0.8); }

.misuse-card__info {
  padding: 18px;
}

.misuse-card__info h4 {
  font-size: 0.95rem;
  color: #DC2626;
  margin-bottom: 4px;
}

.misuse-card__info p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   MOCKUPS / APPLICATIONS
   -------------------------------------------------------------------------- */
.mockup-card {
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
}

.mockup-card__bar {
  padding: 10px 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #27C93F; }

.mockup-bar__title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--warm-gray);
}

/* Instagram */
.ig-body { padding: 22px; }

.ig-header { display: flex; gap: 16px; margin-bottom: 18px; }

.ig-avatar-ring {
  width: 62px; height: 62px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--yellow), var(--red), var(--pink));
  flex-shrink: 0;
}

.ig-avatar-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--white);
  padding: 7px;
}

.ig-info { display: flex; flex-direction: column; gap: 3px; }

.ig-username {
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; gap: 5px;
}

.ig-verified { color: #388BFD; font-size: 0.85rem; }

.ig-stats {
  display: flex; gap: 12px;
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.ig-bio {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--charcoal);
}

.ig-post {
  height: 200px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #1a1917 0%, #2a2825 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-watermark {
  position: absolute;
  top: 12px; right: 12px;
  width: 100px;
  opacity: 0.8;
}

.ig-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

.ig-play svg { width: 18px; height: 18px; margin-left: 2px; }

.ig-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 7px;
  border-radius: 3px;
}

/* YouTube */
.yt-body { padding: 22px; }

.yt-banner {
  height: 110px;
  border-radius: var(--r-sm);
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  margin-bottom: 18px;
}

.yt-banner img { max-width: 160px; }

.yt-banner span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.yt-channel {
  display: flex; align-items: center; gap: 14px;
}

.yt-channel__avatar {
  width: 48px; height: 48px;
  flex-shrink: 0;
}

.yt-channel h4 { font-size: 0.95rem; }
.yt-channel__sub { font-size: 0.72rem; color: var(--warm-gray); display: block; }
.yt-channel p { font-size: 0.78rem; color: var(--mid-gray); margin-top: 2px; }

.yt-sub-btn {
  margin-left: auto;
  background: #FF0000;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 100px;
}

/* Badge/Pass */
.pass-body {
  padding: 28px;
  display: flex;
  justify-content: center;
}

.press-pass {
  width: 200px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
  color: var(--white);
}

.pass-hole {
  width: 30px; height: 7px;
  background: #000;
  border-radius: 4px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.press-pass .pass-logo { max-width: 130px; margin: 0 auto 8px; }

.pass-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  background: var(--pink);
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.pass-photo {
  width: 70px; height: 80px;
  background: #2a2825;
  border-radius: 5px;
  margin: 14px auto 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.pass-photo svg { width: 28px; height: 28px; }

.pass-role {
  font-size: 0.78rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.pass-id {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.pass-dept {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--blue);
  font-weight: 700;
  display: block;
}

.pass-barcode {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.barcode-lines {
  height: 20px;
  background: repeating-linear-gradient(90deg, #fff 0px, #fff 2px, transparent 2px, transparent 4px);
  margin-bottom: 3px;
}

.pass-barcode span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Merch */
.merch-body {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.merch-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
}

.merch-item__visual {
  width: 100%;
  height: 160px;
  border-radius: var(--r-sm);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}

.merch-item__visual img { max-width: 60px; }
.merch-item__visual img.wide-merch { max-width: 120px; }

.merch-item span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* --------------------------------------------------------------------------
   ASSET HUB TABLE
   -------------------------------------------------------------------------- */
.asset-hub {
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}

.asset-hub__bar {
  padding: 18px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.filter-btns { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-btn {
  padding: 7px 15px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--sand);
  background: var(--white);
  color: var(--mid-gray);
  transition: all var(--t-fast);
}

.filter-btn:hover { border-color: var(--charcoal); color: var(--ink); }

.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.asset-note {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

.table-scroll { overflow-x: auto; }

.asset-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.asset-table th {
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--sand);
  background: rgba(0, 0, 0, 0.015);
}

.asset-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--sand);
  font-size: 0.88rem;
  vertical-align: middle;
}

.asset-table tr:last-child td { border-bottom: none; }

.asset-table tr:hover td { background: rgba(0, 0, 0, 0.01); }

.table-thumb {
  width: 72px; height: 46px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  padding: 5px;
}

.table-thumb--warm { background: #E8E5DF; }
.table-thumb--dark { background: var(--ink); }
.table-thumb--light { background: var(--white); border: 1px solid var(--sand); }

.table-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

.table-mono { font-family: var(--font-mono); font-size: 0.72rem; color: var(--warm-gray); }

.dl-btns { display: flex; gap: 6px; }

.dl-btn {
  padding: 5px 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--sand);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--t-fast);
}

.dl-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--sand);
  padding: 72px 0 28px;
  background: var(--cream);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__logo { max-width: 180px; margin-bottom: 14px; }

.footer__tagline {
  font-size: 0.9rem;
  color: var(--mid-gray);
  max-width: 340px;
  line-height: 1.65;
}

.footer__col h5 {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }

.footer__col a {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

.footer__col a:hover { color: var(--blue); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.footer__pills { display: flex; gap: 8px; }

.footer__pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  background: var(--white);
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   TOAST
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-normal);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast__check {
  width: 20px; height: 20px;
  background: #22C55E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
}

.toast__msg { font-size: 0.85rem; font-weight: 500; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .concept__grid { grid-template-columns: 1fr; }
  .type-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pillars-bar { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 110px 0 64px; }
  .hero__title { font-size: 2.2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .mobile-btn { display: flex; }

  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--sand);
    padding: 20px var(--gutter);
    transform: translateY(-120%);
    transition: transform var(--t-normal);
    z-index: 99;
  }

  .nav.open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 14px; }

  .explorer__footer { flex-direction: column; align-items: flex-start; }
  .download-group { width: 100%; }
  .merch-body { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   PRINT
   -------------------------------------------------------------------------- */
@media print {
  .header, .toast, .stage__scale, .explorer__controls,
  .btn, .type-tester, .header__actions, .mobile-btn { display: none !important; }

  .section { padding: 24px 0 !important; page-break-inside: avoid; }

  body { background: #fff !important; }
}
