/* ============================================================
   PULSO DIGITAL — tech news media (Colombia)
   Unique dark editorial-tech design
   ============================================================ */

:root {
  --bg: #0a0e16;
  --bg-soft: #101624;
  --bg-card: #121a2b;
  --bg-hover: #182238;
  --line: #1f2a42;
  --line-soft: #17202f;
  --text: #e9edf5;
  --text-dim: #9aa7bd;
  --text-faint: #64718a;
  --accent: #2ee6c3;      /* neon teal */
  --accent-2: #8b7bff;    /* violet */
  --warn: #ffb454;
  --danger: #ff6b6b;
  --mono: "JetBrains Mono", "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- top ticker ---------- */
.ticker {
  background: linear-gradient(90deg, #0d3b33, #14204a);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-block;
  padding: 7px 0;
  animation: ticker 40s linear infinite;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-dim);
}
.ticker__track span { margin-right: 34px; }
.ticker__track b { color: var(--accent); font-weight: 600; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 22, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 800; font-size: 1.05rem;
  color: #08121a;
  box-shadow: 0 0 18px rgba(46, 230, 195, .45);
}
.logo__text { font-family: var(--mono); font-weight: 700; font-size: 1.18rem; letter-spacing: .5px; }
.logo__text em { font-style: normal; color: var(--accent); }
.logo__tag { display: block; font-size: .6rem; letter-spacing: 2.5px; color: var(--text-faint); text-transform: uppercase; }

.nav { display: flex; gap: 4px; flex: 1; }
.nav__link {
  position: relative;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: .92rem;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.nav__link:hover { background: var(--bg-hover); color: var(--text); text-decoration: none; }
.nav__link.active { color: var(--accent); }
.nav__link.active::after {
  content: "";
  position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--accent);
}
.header__cta {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  font-weight: 700;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46, 230, 195, .3);
  transition: transform .15s, box-shadow .15s;
}
.header__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(46, 230, 195, .45); text-decoration: none; }

/* mega menu (hover on desktop) */
.mega { display: none; }
.has-mega { position: relative; }
.has-mega:hover .mega {
  display: block;
  position: absolute;
  top: 100%; left: 0;
  width: 560px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mega__title { font-family: var(--mono); font-size: .7rem; letter-spacing: 2px; color: var(--text-faint); text-transform: uppercase; margin-bottom: 10px; }
.mega__item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px; border-radius: var(--radius-sm);
  color: var(--text);
  transition: background .15s;
}
.mega__item:hover { background: var(--bg-hover); text-decoration: none; }
.mega__item img { width: 64px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.mega__item small { display: block; color: var(--text-faint); font-size: .72rem; }
.mega__all { display: block; margin-top: 12px; font-family: var(--mono); font-size: .8rem; color: var(--accent); }

/* mobile category chips */
.chips {
  display: none;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 20px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chips a {
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--text-dim);
  background: var(--bg-soft);
}
.chips a.active { color: #071018; background: var(--accent); border-color: var(--accent); font-weight: 700; }

/* ---------- hero ---------- */
.hero { padding: 34px 0 10px; }
.hero__grid { display: grid; grid-template-columns: 1.9fr 1fr; gap: 20px; }
.hero__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
}
.hero__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,22,0) 30%, rgba(10,14,22,.92) 92%); }
.hero__main-body { position: relative; z-index: 2; padding: 26px; }
.hero__main-body h1 { font-size: 1.85rem; line-height: 1.25; margin: 10px 0 8px; }
.hero__main-body h1 a { color: var(--text); }
.hero__main-body h1 a:hover { color: var(--accent); text-decoration: none; }
.hero__main-body p { color: var(--text-dim); font-size: .95rem; max-width: 60ch; }
.hero__side { display: flex; flex-direction: column; gap: 20px; }
.hero__side-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .15s, transform .15s;
}
.hero__side-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.hero__side-item h3 { font-size: 1.02rem; line-height: 1.35; }
.hero__side-item h3 a { color: var(--text); }
.hero__side-item h3 a:hover { color: var(--accent); text-decoration: none; }

/* ---------- meta / tags ---------- */
.meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .78rem; color: var(--text-faint); font-family: var(--mono); }
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--mono);
}
.tag--ia { background: rgba(139, 123, 255, .18); color: #b3a7ff; }
.tag--tech { background: rgba(46, 230, 195, .15); color: var(--accent); }
.tag--econ { background: rgba(255, 180, 84, .16); color: var(--warn); }
.tag--ciencia { background: rgba(111, 190, 255, .15); color: #6fbeff; }
.tag--legal { background: rgba(154, 167, 189, .15); color: var(--text-dim); }
.tag--ad { background: #ffffff; color: #0a0e16; }
.tag--sponsored { background: var(--warn); color: #1a1204; }

/* ---------- advertorial / publirreportaje ---------- */
.sponsored-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 180, 84, .12);
  border: 1px solid rgba(255, 180, 84, .35);
  color: var(--warn);
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0 26px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.step__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  font-family: var(--mono); font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .88rem; color: var(--text-dim); }
.quiz {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  margin: 30px 0;
  box-shadow: 0 0 0 4px rgba(46, 230, 195, .07);
}
.quiz__head { text-align: center; margin-bottom: 22px; }
.quiz__head h2 { font-size: 1.25rem; }
.quiz__head p { color: var(--text-dim); font-size: .9rem; margin-top: 4px; }
.quiz__q { margin-bottom: 18px; }
.quiz__q p { font-weight: 600; font-size: .98rem; margin-bottom: 10px; }
.quiz__btns { display: flex; gap: 10px; }
.quiz__btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .15s;
}
.quiz__btn:hover { border-color: var(--accent); }
.quiz__btn.active { background: var(--accent); color: #071018; border-color: var(--accent); }
.quiz__result {
  display: none;
  text-align: center;
  padding: 22px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  animation: fadeIn .4s ease;
}
.quiz__result--ok {
  background: rgba(46, 230, 195, .12);
  border: 1px solid rgba(46, 230, 195, .4);
}
.quiz__result--no {
  background: rgba(255, 107, 107, .1);
  border: 1px solid rgba(255, 107, 107, .35);
}
.quiz__result.show { display: block; }
.quiz__loading { display: none; text-align: center; padding: 16px; }
.quiz__loading.show { display: block; }
.quiz__loading span {
  display: inline-block;
  width: 10px; height: 10px;
  margin: 0 3px;
  border-radius: 50%;
  background: var(--accent);
  animation: bounce 1s infinite ease-in-out;
}
.quiz__loading span:nth-child(2) { animation-delay: .15s; }
.quiz__loading span:nth-child(3) { animation-delay: .3s; }
.quiz__result b { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.quiz__result p { color: var(--text-dim); font-size: .9rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-8px); opacity: 1; } }
.cta-block {
  text-align: center;
  background:
    radial-gradient(500px 160px at 50% 0%, rgba(46, 230, 195, .18), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin: 26px 0;
}
.cta-block p { color: var(--text-dim); margin-bottom: 20px; }
.cta-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(46, 230, 195, .35);
  transition: transform .15s, box-shadow .15s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(46, 230, 195, .5); text-decoration: none; }
.cta-btn small { display: block; font-size: .7rem; font-weight: 500; letter-spacing: 1px; text-transform: none; opacity: .75; margin-top: 4px; }
.disclaimer {
  font-size: .72rem;
  color: var(--text-faint);
  line-height: 1.6;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  margin-top: 34px;
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- sections ---------- */
.section { padding: 40px 0; }
.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.section__head h2 { font-size: 1.35rem; font-family: var(--mono); letter-spacing: .5px; }
.section__head h2::before { content: "// "; color: var(--accent); }
.section__head a.more { font-family: var(--mono); font-size: .8rem; color: var(--text-faint); }
.section__head a.more:hover { color: var(--accent); }

/* ---------- cards grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__img img { transform: scale(1.05); }
.card__img .tag { position: absolute; top: 12px; left: 12px; background: rgba(10, 14, 22, .8); }
.card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body h3 { font-size: 1.02rem; line-height: 1.4; }
.card__body h3 a { color: var(--text); }
.card__body h3 a:hover { color: var(--accent); text-decoration: none; }
.card__body p { color: var(--text-dim); font-size: .86rem; flex: 1; }
.card__foot { display: flex; justify-content: space-between; align-items: center; }
.card__foot .meta { font-size: .72rem; }

/* ---------- featured strip (horizontal) ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strip__item {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.strip__item:hover { border-color: var(--accent); }
.strip__num { font-family: var(--mono); font-size: 1.5rem; font-weight: 800; color: var(--accent); opacity: .55; }
.strip__item small { display: block; color: var(--text-faint); font-size: .7rem; font-family: var(--mono); }
.strip__item span { font-size: .84rem; line-height: 1.35; color: var(--text); }
.strip__item span:hover { color: var(--accent); }

/* ---------- ad placeholders ---------- */
.ad {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: 26px;
  margin: 40px 0;
  text-align: center;
}
.ad--leaderboard { min-height: 120px; }
.ad--rect { min-height: 250px; }
.ad .meta { font-size: .68rem; letter-spacing: 2px; }

/* ---------- newsletter CTA ---------- */
.newsletter {
  margin: 50px 0;
  padding: 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(600px 200px at 90% 10%, rgba(139, 123, 255, .22), transparent 60%),
    radial-gradient(500px 200px at 10% 90%, rgba(46, 230, 195, .18), transparent 60%),
    var(--bg-soft);
  border: 1px solid var(--line);
  text-align: center;
}
.newsletter h2 { font-size: 1.5rem; margin-bottom: 6px; }
.newsletter p { color: var(--text-dim); margin-bottom: 20px; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter input[type="email"] {
  min-width: 300px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: .92rem;
}
.newsletter input[type="email"]:focus { outline: none; border-color: var(--accent); }
.btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .15s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }

/* ---------- page hero (sections / legal) ---------- */
.page-hero {
  padding: 44px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(46, 230, 195, .12), transparent 60%),
    radial-gradient(600px 220px at 10% 20%, rgba(139, 123, 255, .12), transparent 60%);
}
.page-hero h1 { font-size: 2.1rem; font-family: var(--mono); letter-spacing: .5px; margin-bottom: 8px; }
.page-hero h1::before { content: "// "; color: var(--accent); }
.page-hero p { color: var(--text-dim); max-width: 70ch; }
.crumb { font-family: var(--mono); font-size: .76rem; color: var(--text-faint); margin-bottom: 14px; }
.crumb a { color: var(--text-faint); }
.crumb a:hover { color: var(--accent); }

/* ---------- article layout ---------- */
.article { max-width: 780px; margin: 0 auto; padding: 20px 0 60px; }
.article__head h1 { font-size: 2rem; line-height: 1.3; margin: 14px 0 12px; }
.article__head .meta { margin-bottom: 6px; }
.article__lead { font-size: 1.12rem; color: var(--text-dim); border-left: 3px solid var(--accent); padding-left: 18px; margin: 22px 0; }
.article__cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 22px 0 28px; }
.article__cover figcaption { padding: 10px 14px; font-size: .76rem; color: var(--text-faint); background: var(--bg-soft); font-family: var(--mono); }
.article__body { font-size: 1.02rem; }
.article__body h2 { font-size: 1.4rem; margin: 34px 0 12px; font-family: var(--mono); }
.article__body h2::before { content: "# "; color: var(--accent); }
.article__body h3 { font-size: 1.12rem; margin: 26px 0 10px; }
.article__body p { margin-bottom: 16px; }
.article__body ul, .article__body ol { margin: 0 0 18px 22px; }
.article__body ul { list-style: square; }
.article__body li { margin-bottom: 8px; }
.article__body strong { color: var(--text); }
.article__body blockquote {
  border-left: 3px solid var(--accent-2);
  background: var(--bg-soft);
  padding: 14px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--text-dim);
  font-style: italic;
}
.article__body .src { font-family: var(--mono); font-size: .8rem; color: var(--text-faint); margin-top: 6px; }
.notice {
  border: 1px solid var(--line);
  border-left: 4px solid var(--warn);
  background: rgba(255, 180, 84, .07);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .86rem;
  color: var(--text-dim);
  margin: 26px 0;
}
.notice--finance { border-left-color: var(--accent-2); background: rgba(139, 123, 255, .08); }
.author {
  display: flex; gap: 14px; align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 34px;
}
.author__ava {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 800; color: #071018;
  flex-shrink: 0;
}
.author h4 { font-size: .95rem; }
.author p { font-size: .84rem; color: var(--text-dim); }

/* ---------- legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 10px 0 60px; }
.legal h2 { font-size: 1.3rem; font-family: var(--mono); margin: 34px 0 12px; color: var(--accent); }
.legal h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal p, .legal li { color: var(--text-dim); font-size: .95rem; }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: square; margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal .toc { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 30px; }
.legal .toc a { color: var(--text-dim); display: block; padding: 4px 0; font-size: .9rem; }
.legal .toc a:hover { color: var(--accent); }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .88rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; color: var(--text-dim); }
.legal th { background: var(--bg-soft); color: var(--text); font-family: var(--mono); font-size: .8rem; }
.legal .updated { font-family: var(--mono); font-size: .78rem; color: var(--text-faint); }

/* ---------- forms ---------- */
.form-card {
  max-width: 640px;
  margin: 0 auto 60px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-card label { display: block; font-size: .86rem; font-weight: 600; margin: 18px 0 6px; }
.form-card label span { color: var(--danger); }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: .94rem;
  font-family: var(--sans);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--accent); }
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card .check { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; font-size: .82rem; color: var(--text-dim); }
.form-card .check input { width: auto; margin-top: 3px; }
.form-card .btn { margin-top: 8px; width: 100%; }
.thanks {
  max-width: 640px;
  margin: 60px auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 60px 34px;
}
.thanks__icon {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-size: 2rem; color: #071018;
}
.thanks h1 { font-size: 1.7rem; margin-bottom: 10px; }
.thanks p { color: var(--text-dim); margin-bottom: 24px; }

/* ---------- nosotros ---------- */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: start; }
.about-grid img { border-radius: var(--radius); border: 1px solid var(--line); }
.about-text h2 { font-size: 1.25rem; font-family: var(--mono); margin: 24px 0 10px; }
.about-text h2::before { content: "// "; color: var(--accent); }
.about-text p { color: var(--text-dim); margin-bottom: 12px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 30px 0; }
.stat { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat b { font-family: var(--mono); font-size: 1.6rem; color: var(--accent); display: block; }
.stat small { color: var(--text-faint); font-size: .76rem; text-transform: uppercase; letter-spacing: 1px; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.member { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.member__ava {
  width: 68px; height: 68px; margin: 0 auto 12px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 800; font-size: 1.2rem; color: #071018;
}
.member h4 { font-size: .98rem; }
.member p { font-size: .8rem; color: var(--text-faint); font-family: var(--mono); }

/* ---------- contact info ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.ccard { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.ccard h3 { font-family: var(--mono); font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.ccard p, .ccard a { color: var(--text-dim); font-size: .9rem; }
.ccard a:hover { color: var(--accent); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; padding: 44px 0 30px; }
.footer h4 { font-family: var(--mono); font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer p { color: var(--text-dim); font-size: .86rem; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--text-dim); font-size: .88rem; }
.footer ul a:hover { color: var(--accent); }
.footer__legal { border-top: 1px solid var(--line-soft); padding: 16px 0 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__legal p { font-size: .78rem; color: var(--text-faint); font-family: var(--mono); }
.footer__legal a { color: var(--text-faint); font-size: .78rem; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .chips { display: flex; }
  .has-mega { position: static; }
}
@media (max-width: 560px) {
  .grid, .grid--4, .strip { grid-template-columns: 1fr; }
  .stats { gap: 8px; }
  .stat { padding: 14px 6px; }
  .stat b { font-size: 1.15rem; }
  .stat small { font-size: .62rem; }
  .hero__main-body h1 { font-size: 1.4rem; }
  .team { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .header__cta { display: none; }
  .newsletter input[type="email"] { min-width: 100%; }
}
