/* === Премия «Хакатоны России» 2026 — общие стили (v2 «Электрик») === */

:root {
  --bg: #F4F1EA;
  --ink: #0A0A0F;
  --paper: #FFFFFF;
  --electric: #2C2BFF;
  --acid: #D8FF3F;
  --coral: #FF5638;
  --line: #0A0A0F;
  --muted-ink: rgba(10, 10, 15, 0.6);

  /* Декоративные акценты (используются точечно) */
  --gold: #FBBC02;             /* акцент в .maker-link (организатор/оператор) */

  /* Flash-уведомления — pastel, читаемы поверх --bg */
  --flash-error-bg:   #FFE4E1;
  --flash-success-bg: #E1FFD7;
  --flash-info-bg:    #FFF3CD;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === Accessibility: global focus + skip link === */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--ink); color: var(--bg);
  padding: 12px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  border: 2px solid var(--electric);
}
.skip-link:focus-visible { top: 0; outline-offset: 0; }

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none !important; }
}
.mono { font-family: 'JetBrains Mono', monospace; }
.display { font-family: 'Unbounded', sans-serif; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* === Ticker === */
.ticker {
  background: var(--ink); color: var(--bg);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ticker-track {
  display: inline-block; animation: scroll 40s linear infinite;
}
.ticker-track span { margin: 0 32px; }
.ticker-track span em { color: var(--acid); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === Header === */
header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; max-width: 1400px; margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center;
  text-decoration: none; color: var(--ink);
}
.brand img { display: block; height: 36px; width: auto; }
.brand:hover { opacity: 0.85; }

.nav ul { display: flex; gap: 28px; list-style: none; font-size: 14px; font-weight: 500; }
.nav a {
  color: var(--ink); text-decoration: none;
  padding: 12px 14px; /* WCAG 2.5.5 touch target */
  display: inline-flex; align-items: center;
  min-height: 44px;
}
.nav a:hover { background: var(--acid); }
.nav .cta {
  color: var(--bg); background: var(--ink);
  padding: 12px 20px; font-weight: 600; font-size: 14px;
  border: 2px solid var(--ink); transition: all .15s;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav .cta:hover { background: var(--electric); }
.nav-end { display: inline-flex; align-items: center; gap: 12px; }
.nav .nav-tg {
  padding: 0; width: 44px; min-height: 44px;
  justify-content: center;
  color: var(--ink); background: transparent;
  border: 2px solid var(--ink); transition: all .15s;
}
.nav .nav-tg svg { width: 22px; height: 22px; display: block; }
.nav .nav-tg:hover { background: var(--electric); color: var(--bg); }
/* Бургер мобильного меню — скрыт на десктопе, показывается в @media ниже */
.nav-burger {
  display: none; width: 44px; min-height: 44px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 2px solid var(--ink); cursor: pointer;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Buttons === */
.btn {
  padding: 18px 28px; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all .15s;
  display: inline-flex; align-items: center; gap: 12px;
  border: 2px solid var(--ink);
  background: var(--bg); color: var(--ink);
  cursor: pointer; font-family: inherit;
}
.btn:hover { background: var(--acid); }
.btn-primary { background: var(--electric); color: var(--bg); }
.btn-primary:hover { background: var(--ink); color: var(--bg); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--electric); color: var(--bg); }
.btn-acid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.btn-acid:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* === Hero === */
.hero { padding: 60px 0 80px; border-bottom: 2px solid var(--ink); position: relative; }
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 1px solid var(--ink);
  flex-wrap: wrap; gap: 16px;
}
.hero h1.title {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: clamp(40px, 7vw, 120px); line-height: 0.92;
  letter-spacing: -0.03em; margin: 0;
}
.hero h1.title .word { display: inline-block; }
.hero h1.title .word.accent { color: var(--electric); }
.hero h1.title .word.fill { background: var(--acid); padding: 0 0.05em; }
.hero h1.title .pin {
  display: inline-block; vertical-align: super; font-size: 0.18em;
  font-family: 'JetBrains Mono', monospace; color: var(--coral);
  margin-left: 8px; letter-spacing: 0;
}

.hero-bottom {
  display: flex; gap: 64px; flex-wrap: wrap;
  margin-top: 64px; align-items: flex-end;
  padding-top: 32px; border-top: 1px solid var(--ink);
}
.hero-bottom p { font-size: 19px; line-height: 1.4; max-width: 520px; }
.stat .stat-num {
  font-family: 'Unbounded', sans-serif; font-size: 48px; font-weight: 800; line-height: 1;
}
.stat .stat-label {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 8px; opacity: 0.6;
}
.hero-actions { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }

/* === Intro block (О премии) === */
.intro {
  padding: 100px 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.intro-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(540px, 60vw);
  max-height: 120px;
  margin-bottom: 48px;
}
.intro-lead {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1180px;
}
.intro-lead + .intro-lead { margin-top: 28px; }
.intro-lead.muted { opacity: 0.55; }
.intro-lead .hl-acid {
  background: var(--acid);
  padding: 0 0.1em;
}
.intro-lead .hl-electric {
  color: var(--electric);
}

/* === Makers block (Организатор + Оператор) === */
.makers {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 2px solid var(--ink);
}
.makers h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.makers h2 em {
  color: var(--electric);
  font-style: normal;
}
.makers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--ink);
}
.maker {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.maker.light {
  background: var(--paper);
  border-right: 2px solid var(--ink);
}
.maker.dark {
  background: var(--ink);
  color: var(--bg);
}
.maker-logo-wrap {
  height: 88px;
  display: flex;
  align-items: center;
}
.maker-logo-wrap img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
}
.maker.dark .maker-logo-wrap img { max-height: 72px; }
.maker-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}
.maker.dark .maker-meta { opacity: 0.6; }
.maker h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.maker p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 16px;
}
.maker p:last-child { margin-bottom: 0; }
.maker-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.maker-link:hover { opacity: 0.8; }

/* === Section primitives === */
section { position: relative; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 24px; opacity: 0.6;
}
h2.section-title {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px); line-height: 0.95;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
h2.section-title em { font-style: normal; color: var(--electric); }
.section-lead { font-size: 17px; max-width: 600px; line-height: 1.5; }

/* === About === */
section.about { padding: 100px 0; border-bottom: 2px solid var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.about-grid h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 72px); line-height: 0.95;
  letter-spacing: -0.02em;
}
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-card {
  padding: 24px; background: var(--paper);
  border: 2px solid var(--ink); position: relative;
}
.about-card::before {
  content: attr(data-num); position: absolute; top: -16px; left: -16px;
  background: var(--coral); color: var(--bg);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink);
}
.about-card h3 {
  font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.about-card p { font-size: 15px; line-height: 1.5; }

/* === Nominations === */
section.noms { padding: 100px 0; border-bottom: 2px solid var(--ink); background: var(--paper); }
.noms-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.noms-head h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px); line-height: 0.95;
  letter-spacing: -0.03em;
}
.noms-head .lead { font-size: 17px; max-width: 420px; line-height: 1.5; }
.noms-head h2 em { color: var(--electric); font-style: normal; }

/* Две категории номинаций (выбор экспертов / лучшие практики) */
.noms-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid var(--ink); margin-bottom: 48px;
}
.noms-cat {
  padding: 36px 40px; background: var(--paper);
  display: flex; flex-direction: column; gap: 12px;
}
.noms-cat:first-child { border-right: 2px solid var(--ink); }
.noms-cat-num {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.1em; opacity: 0.45;
}
.noms-cat h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.05; letter-spacing: -0.02em;
}
.noms-cat h3 em { font-style: normal; }
.noms-cat.experts h3 em { color: var(--electric); }
.noms-cat.practice h3 em { color: var(--coral); }
.noms-cat p { font-size: 15px; line-height: 1.5; opacity: 0.8; }
@media (max-width: 760px) {
  .noms-split { grid-template-columns: 1fr; }
  .noms-cat:first-child { border-right: none; border-bottom: 2px solid var(--ink); }
}
.noms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 2px solid var(--ink); border-left: 2px solid var(--ink);
}
.nom {
  padding: 24px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 160px; transition: all .15s; cursor: pointer; background: var(--paper);
  text-decoration: none; color: inherit;
}
.nom:hover { background: var(--acid); }
.nom.featured { background: var(--electric); color: var(--bg); }
.nom.featured:hover { background: var(--ink); }
.nom.coral { background: var(--coral); color: var(--ink); } /* WCAG 1.4.3: ink на coral = 6:1 */
.nom.coral .nom-num { opacity: 1; }
.nom.coral:hover { background: var(--ink); color: var(--bg); }
.nom.cta { background: var(--ink); color: var(--bg); }
.nom.cta:hover { background: var(--electric); }
.nom.cta .nom-num { font-size: 22px; opacity: 1; }
.nom-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; opacity: 0.7; }
.nom-name {
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: 17px; line-height: 1.15; letter-spacing: -0.01em;
}

/* === Noms CTA (под сеткой номинаций) === */
.noms-cta {
  border: 2px solid var(--ink);
  border-top: none;
  padding: 32px 40px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.noms-cta h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* === Press (О Премии пишут) === */
section.press { padding: 100px 0; border-bottom: 2px solid var(--ink); }
.press-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.press-head h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px); line-height: 0.95;
  letter-spacing: -0.03em;
}
.press-head h2 em { color: var(--electric); font-style: normal; }
.press-head .lead { font-size: 17px; max-width: 420px; line-height: 1.5; }
.press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.press-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px; min-height: 230px;
  background: var(--paper); border: 2px solid var(--ink);
  text-decoration: none; color: var(--ink);
  transition: background .15s;
}
.press-card:hover { background: var(--acid); }
.press-card.wide { grid-column: span 2; }
.press-card.wide .press-title { font-size: 22px; }
@media (max-width: 960px) { .press-card.wide { grid-column: auto; } }
.press-logo { height: 38px; display: flex; align-items: center; }
.press-logo img {
  max-height: 38px; max-width: 160px; width: auto; height: auto;
  object-fit: contain; display: block;
}
.press-name {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55;
}
.press-title {
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: 16px; line-height: 1.25; letter-spacing: -0.01em;
  flex: 1;
}
.press-read {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.1em; margin-top: auto;
}
@media (max-width: 960px) { .press-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .press-grid { grid-template-columns: 1fr; } }

/* === Archive Pinterest gallery === */
.archive-gallery {
  padding: 100px 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.archive-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; flex-wrap: wrap; gap: 24px;
}
.archive-head h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px); line-height: 0.95;
  letter-spacing: -0.03em;
}
.archive-head h2 em { color: var(--electric); font-style: normal; }
.archive-head .lead { font-size: 17px; max-width: 380px; line-height: 1.5; }

.pin-masonry {
  column-count: 4; column-gap: 4px;
  border: 2px solid var(--ink); padding: 4px; background: var(--ink);
}
.pin-masonry img {
  width: 100%; display: block; height: auto;
  break-inside: avoid; margin-bottom: 4px;
  transition: filter .2s;
}
.pin-masonry img:hover { filter: brightness(1.12); }

.archive-bottom {
  margin-bottom: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid var(--ink);
}
.archive-bottom a {
  padding: 48px 40px; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper);
  transition: background .15s;
}
.archive-bottom a:first-child { border-right: 2px solid var(--ink); background: var(--acid); }
.archive-bottom a:hover { background: var(--acid); }
.archive-bottom .yr-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6;
}
.archive-bottom .yr {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 64px); line-height: 0.95;
  letter-spacing: -0.02em;
}
.archive-bottom .yr em { color: var(--electric); font-style: normal; }
.archive-bottom .descr {
  font-size: 16px; line-height: 1.45; opacity: 0.8;
}
.archive-bottom .arrow-l {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.1em; margin-top: auto;
}

@media (max-width: 1100px) {
  .pin-masonry { column-count: 3; }
}
@media (max-width: 760px) {
  .pin-masonry { column-count: 2; }
  .archive-bottom { grid-template-columns: 1fr; }
  .archive-bottom a:first-child { border-right: none; border-bottom: 2px solid var(--ink); }
}

/* === Timeline === */
section.timeline { padding: 100px 0; border-bottom: 2px solid var(--ink); }
.timeline-head h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px); letter-spacing: -0.03em;
  line-height: 0.95; margin-bottom: 64px;
}
.tl {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 2px solid var(--ink);
}
.tl-step {
  padding: 32px 24px; border-right: 2px solid var(--ink);
  position: relative; min-height: 200px;
}
.tl-step:last-child { border-right: none; background: var(--electric); color: var(--bg); }
.tl-step .num { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 16px; }
.tl-step .date {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: 32px; line-height: 1; margin-bottom: 16px; letter-spacing: -0.02em;
}
.tl-step .descr { font-size: 15px; line-height: 1.4; }

/* === Program section === */
section.program { padding: 100px 0; border-bottom: 2px solid var(--ink); }
.program-head h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.5vw, 84px); letter-spacing: -0.03em;
  line-height: 0.95; margin-bottom: 16px;
}
.program-head .when {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 48px;
}
.program-list { border: 2px solid var(--ink); }
.program-row {
  display: grid; grid-template-columns: 160px 1fr;
  border-bottom: 2px solid var(--ink);
  padding: 28px 32px; gap: 32px; align-items: baseline;
}
.program-row:last-child { border-bottom: none; }
.program-row .time {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: 32px; letter-spacing: -0.02em; color: var(--electric);
}
.program-row .what h4 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.program-row .what p {
  font-size: 15px; line-height: 1.5; opacity: 0.7;
}
.program-row .speaker {
  display: flex; align-items: center; gap: 16px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(10,10,15,0.15);
}
.program-row .speaker img {
  width: 64px; height: 64px; object-fit: cover;
  border: 2px solid var(--ink);
  filter: grayscale(0.2);
}
.program-row .speaker .info { display: flex; flex-direction: column; gap: 2px; }
.program-row .speaker .name {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -0.01em;
}
.program-row .speaker .role {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.05em; opacity: 0.6;
}

/* === Registration on homepage === */
section.registration {
  padding: 100px 0; border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.reg-top { margin-bottom: 48px; max-width: 760px; }
.reg-top h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em;
  line-height: 0.95; margin-bottom: 20px;
}
.reg-top h2 em { color: var(--electric); font-style: normal; }
.reg-top p { font-size: 16px; line-height: 1.5; opacity: 0.75; margin-bottom: 16px; }
.reg-form {
  border: 2px solid var(--ink); background: var(--bg); padding: 40px;
}
.reg-form .field { margin-bottom: 20px; }
.reg-form .field:last-of-type { margin-bottom: 0; }
.reg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reg-form button {
  width: 100%; margin-top: 8px;
  justify-content: center;
}

/* === Venue block === */
section.venue {
  padding: 80px 0; border-bottom: 2px solid var(--ink);
  background: var(--ink); color: var(--bg);
}
.venue-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.venue-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6;
  margin-bottom: 12px;
}
.venue h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em;
  line-height: 0.95;
}
.venue h2 em { color: var(--acid); font-style: normal; }
.venue .city {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.04em;
  line-height: 0.9; opacity: 0.4;
}

/* === Partners === */
section.partners { padding: 100px 0; border-bottom: 2px solid var(--ink); }
.partner-group { margin-bottom: 64px; }
.partner-group:last-child { margin-bottom: 0; }
.partner-group h3 {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}
.partner-logos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 2px solid var(--ink); border-left: 2px solid var(--ink);
}
.partner-logos .slot {
  aspect-ratio: 16 / 9;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; transition: background .2s;
}
.partner-logos .slot:hover { background: var(--acid); }
.partner-logos .slot img {
  max-width: 80%; max-height: 70%; width: auto; height: auto;
  object-fit: contain;
}
.partner-logos .slot.dark { background: var(--ink); }
.partner-logos .slot.dark img { filter: brightness(0) invert(1); }
.partner-logos .slot.dark:hover { background: var(--electric); }
.partner-logos .slot.empty {
  color: var(--ink); opacity: 0.3;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

@media (max-width: 960px) {
  .reg-grid { grid-template-columns: 1fr; gap: 32px; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .program-row { grid-template-columns: 100px 1fr; gap: 16px; padding: 24px 20px; }
  .program-row .time { font-size: 24px; }
}
@media (max-width: 600px) {
  .partner-logos { grid-template-columns: 1fr; }
  .reg-form-row { grid-template-columns: 1fr; }
}

/* === CTA banner === */
section.cta-banner { padding: 100px 0; background: var(--ink); color: var(--bg); border-bottom: 2px solid var(--ink); }
.cta-banner h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.cta-banner h2 em { color: var(--acid); font-style: normal; }
.cta-banner p { font-size: 18px; max-width: 600px; opacity: 0.8; margin-bottom: 40px; }

/* === Footer === */
footer { padding: 60px 0 32px; border-top: 2px solid var(--ink); }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.foot h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px; opacity: 0.6;
}
.foot a { color: var(--ink); text-decoration: none; display: block; margin-bottom: 8px; font-size: 15px; font-weight: 500; }
.foot a:hover { background: var(--acid); }
.foot .brand-foot img { height: 32px; margin-bottom: 16px; }
.foot p { font-size: 14px; line-height: 1.5; opacity: 0.7; max-width: 320px; }
.copy {
  color: var(--ink); opacity: 0.6; font-size: 13px; padding-top: 32px;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; text-transform: uppercase;
}
.copy a { color: var(--ink); }

/* === Page header (для внутренних страниц) === */
.page-header {
  padding: 80px 0 60px; border-bottom: 2px solid var(--ink); background: var(--paper);
}
.page-header h1 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(48px, 6vw, 96px); line-height: 0.95;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.page-header h1 em { color: var(--electric); font-style: normal; }
.page-header p { font-size: 19px; max-width: 720px; line-height: 1.45; }

/* === Form === */
.form-wrap {
  max-width: 720px; margin: 0 auto; padding: 80px 32px;
}
.form-legend {
  border: 2px solid var(--ink); background: var(--paper);
  padding: 16px 20px; margin-bottom: 40px;
  font-size: 14px; line-height: 1.5;
}
.form-legend p { margin: 0; }
.form-legend p + p { margin-top: 8px; }
.form-section { margin-bottom: 48px; }
.form-section h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 22px; margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid var(--ink);
}
.field { margin-bottom: 24px; }
.field label {
  display: block; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.field label .req { color: var(--coral); }
.field .hint { font-size: 13px; opacity: 0.6; margin-top: 6px; line-height: 1.4; }
.public-mark,
.section-hint {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  opacity: 0.5;
  margin-left: 4px;
  background: transparent;
  padding: 0;
}
.public-mark::before,
.section-hint::before { content: "— "; }

/* === Utility classes — замена inline-стилей === */
.form-note {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.4;
  margin: 0 0 16px;
}
.form-note--lead   { margin-bottom: 20px; }
.form-note--footer { margin-bottom: 24px; }

.inline-link {
  color: var(--electric);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--electric);
}
.inline-link:hover { background: var(--electric); color: var(--bg); }

.about-card--wide { grid-column: span 2; }

.btn-ghost-on-dark {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}

.footer-copy { margin-top: 16px; font-size: 13px; }

.mono-tiny-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 32px;
}
.mono-tiny-note--with-rule {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.center-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-after-header { margin-top: 16px; }

/* === Приглашение в эксперты (открытый набор) === */
.expert-invite {
  padding: 72px 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.expert-invite__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.expert-invite__text { min-width: 0; }
.expert-invite .section-title { margin-bottom: 28px; }
.expert-invite__body { max-width: 640px; }
.expert-invite__body p { font-size: 18px; line-height: 1.55; }
.expert-invite__body p + p { margin-top: 16px; }
.expert-invite__cta { margin-top: 36px; }
.expert-invite__note {
  margin-top: 20px;
  font-size: 13px; line-height: 1.4;
  color: var(--ink); opacity: 0.45;
  max-width: 560px;
}

/* Абстрактная фирменная графика (electric / acid / coral / ink) */
.expert-invite__art {
  width: 100%;
  max-width: 520px;
  margin-left: auto;   /* выравниваем графику по правому краю колонки */
}
.expert-invite__svg {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ink);
}
@media (max-width: 900px) {
  .expert-invite__grid { grid-template-columns: 1fr; gap: 40px; }
  .expert-invite__art { margin-left: 0; max-width: 400px; }
}

/* Async-submit состояние кнопки — JS-классом, без inline-стилей */
.btn.is-busy, button.is-busy { opacity: 0.6; cursor: progress; }

/* JetBrains-mono подпись «Аккаунт: foo@bar» под формой set-password */
.account-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 24px;
}

/* === Flash-уведомления (используются и на маркетинге, и в ЛК) === */
.flash {
  padding: 12px 16px;
  border: 2px solid var(--ink);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--paper);
}
.flash-error   { background: var(--flash-error-bg); }
.flash-success { background: var(--flash-success-bg); }
.flash-info    { background: var(--flash-info-bg); }

.note-tight { margin-top: 0; margin-bottom: 16px; }

.label-optional {
  opacity: 0.5;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.ctf-tag {
  opacity: 0.6;
  font-style: normal;
  margin-left: 4px;
}

/* Полу-«элек» цвет — только для гипертекста, оставшегося от рудимента */
.electric-em { color: var(--electric); font-style: normal; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="password"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%; padding: 14px 16px; font-size: 16px;
  background: var(--paper); border: 2px solid var(--ink);
  font-family: inherit; color: var(--ink);
}
/* WCAG 2.4.7: outline + bg-смена, чтобы зрячий keyboard-юзер видел фокус */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: -3px;
  background: var(--acid);
}
.field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.field .checks { display: flex; flex-direction: column; gap: 8px; }
.field .checks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (max-width: 640px) {
  .field .checks-grid { grid-template-columns: 1fr; }
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field-row > .field { margin-bottom: 0; }
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}
.field .check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border: 2px solid var(--ink); background: var(--paper);
  cursor: pointer; font-size: 15px;
  min-height: 44px; /* WCAG 2.5.5 touch target */
}
.field .check:hover { background: var(--acid); }
.field .check input[type="checkbox"],
.field .check input[type="radio"] {
  width: 18px; height: 18px; margin-top: 1px; accent-color: var(--ink);
}
.form-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* === Compact card (для shortlist / experts) === */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.card {
  background: var(--paper); padding: 24px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px; min-height: 220px;
}
.card .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6;
}
.card h3 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1.15; letter-spacing: -0.01em;
}
.card p { font-size: 14px; line-height: 1.45; opacity: 0.8; }
.card .meta { margin-top: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.5; }

@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* Эксперты: по 4 в ряд (двойной класс — чтобы перебить базовые .cards-grid медиа-правила) */
.cards-grid.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .cards-grid.cards-grid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .cards-grid.cards-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .cards-grid.cards-grid--4 { grid-template-columns: 1fr; } }

/* === Showcase (shortlist / winners / experts) === */
.showcase { padding: 64px 0 96px; }
.showcase-filters {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-bottom: 32px;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.showcase-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 20px;
  background: var(--paper);
  border: none;
  border-right: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  min-height: 44px;
}
.showcase-chip:last-child { border-right: none; }
.showcase-chip:hover { background: var(--acid); }
.showcase-chip.is-active {
  background: var(--electric);
  color: var(--bg);
  font-weight: 600;
}
.showcase-chip:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: -3px;
}

.showcase-status {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.6;
  padding: 48px 0;
  text-align: center;
}

/* === Card extensions for showcase === */
.card-winner {
  background: var(--acid);
  position: relative;
}
.card-winner-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--coral);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid var(--ink);
}
.card-link {
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--electric);
  text-decoration: none;
  border-bottom: 2px solid var(--electric);
  align-self: flex-start;
}
.card-link:hover { background: var(--electric); color: var(--bg); }

/* === Past experts (архив прошлых сезонов) === */
.showcase-past {
  border-top: 2px solid var(--ink);
  padding-top: 72px;
}
.past-experts-head {
  position: relative;
  margin-bottom: 40px;
}
.past-experts-head .eyebrow,
.past-experts-head .section-title,
.past-experts-head .section-lead { position: relative; z-index: 1; }
.past-experts-head .section-lead { margin-top: 16px; }

/* «I сезон» — еле заметная пометка-штамп в углу секции, чтобы была */
.season-mark {
  position: absolute;
  top: -12px; right: 0;
  z-index: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 6.5vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Кнопка «Показать ещё» */
.past-experts-more-wrap { margin-top: 40px; text-align: center; }
.more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; min-height: 44px;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
}
.more-btn:hover { background: var(--electric); color: var(--bg); }
.more-btn:focus-visible { outline: 3px solid var(--electric); outline-offset: 2px; }

.card.is-hidden { display: none; }

/* Карточка эксперта с фото (текущие 2026 + прошлых лет) */
.past-card, .card.is-photo { padding: 0; gap: 0; overflow: hidden; }
.past-photo, .card-photo {
  display: block; width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center top;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  transition: transform .3s ease;
}
.past-card:hover .past-photo,
.card.is-photo:hover .card-photo { transform: scale(1.03); }
/* Плейсхолдер с инициалами, если эксперт без фото */
.card-photo--ph {
  display: flex; align-items: center; justify-content: center;
  background: var(--acid); color: var(--ink);
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(40px, 7vw, 72px); letter-spacing: 0.02em;
}
.card.is-photo:hover .card-photo--ph { transform: none; }
.past-body, .card-body {
  flex: 1; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.past-body .meta { margin-top: auto; opacity: 1; }
.past-org {
  color: var(--electric); text-decoration: none;
  border-bottom: 1px solid var(--electric); padding-bottom: 1px;
  word-break: break-word;
}
.past-org:hover { background: var(--electric); color: var(--bg); }

/* === Status pill === */
.status {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border: 2px solid var(--ink);
}
.status-submitted { background: var(--paper); }
.status-review { background: var(--acid); }
.status-shortlist { background: var(--electric); color: var(--bg); border-color: var(--electric); }
.status-approved { background: var(--electric); color: var(--bg); border-color: var(--electric); }
.status-winner { background: var(--coral); color: var(--ink); border-color: var(--ink); } /* WCAG 1.4.3: ink на coral = 6:1 */
.status-rejected { background: var(--ink); color: var(--bg); }
.status-confirmed { background: var(--acid); }

/* === Auth pages: общие стили живут в lk/styles.css === */

/* === LK Dashboard === */
/* Сетка тайлов в стиле .noms-grid — общие 2px-границы, без gap. */
.lk-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 2px solid var(--ink); border-left: 2px solid var(--ink);
  margin: 32px 0;
}
.lk-tile {
  padding: 24px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 160px; transition: all .15s;
  background: var(--paper); color: var(--ink); text-decoration: none;
}
.lk-tile:hover { background: var(--acid); }
.lk-tile.featured { background: var(--electric); color: var(--bg); }
.lk-tile.featured:hover { background: var(--ink); }
.lk-tile.coral { background: var(--coral); color: var(--ink); }
.lk-tile.coral:hover { background: var(--ink); color: var(--bg); }
.lk-tile-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; opacity: 0.7;
}
.lk-tile-name {
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: 17px; line-height: 1.15; letter-spacing: -0.01em;
}
.lk-tile .status-row { margin-top: 12px; }

/* === LK section blocks (используются в profile/dashboard) === */
.lk-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 12px;
}
.lk-greeting h1 {
  font-family: 'Unbounded', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 8px 0;
}
.lk-greeting h1 em { color: var(--electric); font-style: normal; }
.lk-greeting p {
  font-family: 'Inter', sans-serif;
  color: var(--ink); opacity: 0.65;
  font-size: 16px;
}
.lk-section {
  border: 2px solid var(--ink); padding: 24px;
  margin-bottom: 24px; background: var(--paper);
}
.lk-section h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 18px; margin: 0 0 16px 0;
}
.lk-section .lk-section-note {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--ink); opacity: 0.6;
  margin-top: 16px;
}
.lk-section .lk-section-note--lead {
  margin-top: 0;
  margin-bottom: 16px;
}
.lk-section.danger {
  border-color: var(--coral);
  background: rgba(255, 86, 56, 0.06);
}
.lk-section.danger h2 { color: var(--coral); }

.btn-secondary {
  padding: 12px 20px;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-family: inherit;
}
.btn-secondary:hover { background: var(--acid); }

/* === Privacy text page === */
.prose { max-width: 800px; margin: 0 auto; padding: 80px 32px; }
.prose h2 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 28px; margin: 40px 0 16px; letter-spacing: -0.02em;
}
.prose p { font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 16px 0 16px 24px; }
.prose li { font-size: 16px; line-height: 1.6; margin-bottom: 8px; }

/* === 404 === */
.error-page {
  min-height: 70vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 80px 32px;
}
.error-page .big {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: clamp(120px, 20vw, 280px); line-height: 0.85;
  letter-spacing: -0.04em; color: var(--electric);
}
.error-page h1 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 32px; margin: 16px 0;
}
.error-page p { opacity: 0.7; margin-bottom: 32px; }

/* === Responsive === */
@media (max-width: 1100px) {
  .noms-grid { grid-template-columns: repeat(3, 1fr); }
  .lk-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-bottom { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .nav ul { display: none; }
  .nav { padding: 16px 20px; position: relative; gap: 12px; }
  .nav-end { gap: 8px; }
  .nav-burger { display: inline-flex; }
  .nav.nav--open ul {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
    padding: 8px 20px; z-index: 100; box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .nav.nav--open ul a { width: 100%; min-height: 48px; }
  .container { padding: 0 20px; }
  .noms-grid, .tl, .cards-grid { grid-template-columns: 1fr 1fr; }
  .tl-step:nth-child(2), .tl-step:nth-child(4) { border-right: none; }
  .tl-step { border-bottom: 2px solid var(--ink); }
  .foot { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card[style*="span 2"] { grid-column: span 1 !important; }
  .lk-grid { grid-template-columns: 1fr 1fr; }
  .brand img { height: 28px; }
  /* Makers (organizer + operator) stacks on mobile */
  .makers-grid { grid-template-columns: 1fr; }
  .maker.light { border-right: none; border-bottom: 2px solid var(--ink); }
}
@media (max-width: 480px) {
  .hero h1.title { font-size: clamp(28px, 8.5vw, 42px); }
  .noms-grid, .lk-grid, .tl, .cards-grid, .foot { grid-template-columns: 1fr; }
  .tl-step { border-right: none; }
}
