/* ============================================================
   HERMES Connect Hub — Page content styles
   ============================================================ */

/* ---------------- HERO ---------------- */
.hero { position: relative; padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(40px, 5vw, 64px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -2px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 80% 0%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 80% at 80% 0%, #000 0%, transparent 62%);
  opacity: .6;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; min-height: clamp(380px, 52vh, 520px); }
.hero__kicker { margin-bottom: 22px; }
.hero__title { font-size: clamp(54px, 9vw, 116px); line-height: .9; margin-bottom: 22px; }
.hero__t1 { display: block; color: var(--hc-blue); }
.hero__t2 { display: block; color: var(--hc-navy); }
.hero__t2 em { font-style: normal; color: var(--hc-blue); }
.hero__sub { margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Centered hero variant (screenshot redesign) */
.hero--centered .hero__grid {
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000 0%, transparent 70%);
  opacity: .45;
}
.hero__inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: clamp(340px, 48vh, 480px);
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(32px, 5vw, 64px);
}
.hero__copy--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}
.hero__title--centered {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  color: var(--hc-navy);
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero__sub--centered {
  text-align: center;
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__actions--centered {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.statstrip {
  margin-top: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius-m); background: #fff; box-shadow: var(--shadow-s); overflow: hidden;
}
.statstrip__item { padding: 26px 28px; border-right: 1px solid var(--line); }
.statstrip__item:last-child { border-right: 0; }
.statstrip__num { font-size: clamp(40px, 4.5vw, 58px); color: var(--hc-blue); line-height: 1; }
.statstrip__lbl { font-size: 14.5px; color: var(--muted); margin-top: 6px; font-family: var(--font-head); font-weight: 500; }

/* Network panel */
.netpanel { position: relative; }
.netpanel__frame {
  position: relative; aspect-ratio: 1 / .92; border: 2.5px solid var(--hc-blue); border-radius: 6px;
  background: linear-gradient(160deg, #fff, var(--bg-soft)); box-shadow: var(--shadow-l);
}
.netpanel__frame::before { content: ""; position: absolute; top: -2.5px; bottom: -2.5px; left: 32%; width: 36%; background: var(--bg); }
.netpanel__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.netnode { transform-origin: center; animation: pulse 3.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .85; } 50% { opacity: 1; r: 3.4; } }
.netpanel__chip {
  position: absolute; background: #fff; border: 1px solid var(--line-strong); box-shadow: var(--shadow-s);
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--hc-navy);
  padding: 7px 12px; border-radius: 999px; white-space: nowrap;
}
.netpanel__chip--1 { top: 12%; left: -6%; }
.netpanel__chip--2 { bottom: 16%; right: -8%; color: var(--hc-blue); }
.netpanel__chip--3 { bottom: -3%; left: 18%; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .statstrip { grid-template-columns: repeat(2, 1fr); }
  .statstrip__item:nth-child(2) { border-right: 0; }
  .statstrip__item:nth-child(1), .statstrip__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------------- INTRO ---------------- */
.introsplit { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
@media (max-width: 820px) { .introsplit { grid-template-columns: 1fr; gap: 22px; } }

/* ---------------- PILLARS ---------------- */
.pillars { grid-template-columns: repeat(3, 1fr); }
.pillar { padding: 36px 32px; }
.pillar__t { margin: 14px 0 12px; color: var(--hc-navy); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* ---------------- BRIDGE ---------------- */
.bridge { margin-top: 52px; display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 18px; align-items: center; }
.bridge__node { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 30px 28px; text-align: center; box-shadow: var(--shadow-s); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bridge__node svg { color: var(--hc-blue); }
.bridge__node strong { font-family: var(--font-head); font-size: 19px; color: var(--ink); }
.bridge__node span { font-size: 14.5px; color: var(--muted); }
.bridge__node--b svg { color: var(--hc-navy); }
.bridge__mid { position: relative; display: flex; flex-direction: column; align-items: center; }
.bridge__hub { position: relative; z-index: 2; background: var(--hc-navy); color: #fff; border-radius: var(--radius-m); padding: 22px 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; box-shadow: var(--shadow-m); }
.bridge__hub img { filter: brightness(0) invert(1); }
.bridge__hublbl { font-family: var(--font-head); font-weight: 500; font-size: 13px; color: #aeb6e0; letter-spacing: .02em; }
.bridge__lines { position: absolute; top: 50%; left: -22%; right: -22%; height: 2px; z-index: 0; display: flex; justify-content: space-between; }
.bridge__lines span { height: 2px; width: 46%; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 14px); }
.bridge__cta { text-align: center; margin-top: 34px; }
@media (max-width: 820px) {
  .bridge { grid-template-columns: 1fr; }
  .bridge__lines { display: none; }
}

/* ---------------- PURPOSE ---------------- */
.purpose { text-align: left; }
.purpose__quote { font-family: var(--font-head); font-weight: 500; font-size: clamp(22px, 2.7vw, 34px); line-height: 1.4; color: #fff; max-width: 22ch; max-width: 60ch; }
.purpose__by { margin-top: 26px; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #8ea7ff; }

/* ---------------- ROW HEAD ---------------- */
.rowhead { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }

/* ---------------- EVENTS ---------------- */
.events-grid { grid-template-columns: repeat(3, 1fr); }
.evtlist { display: grid; gap: 16px; grid-template-columns: 1fr; }
.evt { display: flex; gap: 0; overflow: hidden; cursor: pointer; align-items: stretch; }
.events-grid .evt { flex-direction: column; }
.evt__date { flex: none; width: 92px; background: var(--bg-soft); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px 10px; border-right: 1px solid var(--line); }
.events-grid .evt__date { width: 100%; flex-direction: row; gap: 10px; border-right: 0; border-bottom: 1px solid var(--line); padding: 16px; }
.evt__wd { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.evt__day { font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: .9; color: var(--hc-blue); }
.events-grid .evt__day { font-size: 32px; }
.evt__mon { font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; color: var(--hc-navy); }
.evt__body { flex: 1; padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.evt__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.evt__title { font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--ink); line-height: 1.25; }
.evt__meta { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.evt__metaline { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted); }
.evt__metaline svg { color: var(--hc-blue); flex: none; }
.evt__cta { display: flex; align-items: center; padding: 0 24px; flex: none; }
.events-grid .evt__cta { padding: 0 24px 22px; }
@media (max-width: 900px) { .events-grid { grid-template-columns: 1fr; } .events-grid .evt { flex-direction: row; } .events-grid .evt__date { width: 92px; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 0; } }

.filters, .reschips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter { background: #fff; border: 1.5px solid var(--line-strong); color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; padding: 9px 18px; border-radius: 999px; transition: all .15s ease; }
.filter:hover { border-color: var(--hc-blue); color: var(--hc-blue); }
.filter.on { background: var(--hc-blue); border-color: var(--hc-blue); color: #fff; }

.past-grid { grid-template-columns: repeat(4, 1fr); }
.past { padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.past__year { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--bg-soft-2); line-height: 1; }
.past__title { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
.past__place { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--muted); margin-top: auto; }
@media (max-width: 900px) { .past-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .past-grid { grid-template-columns: 1fr; } }

.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; background: var(--bg-soft); border-radius: var(--radius-l); padding: clamp(30px, 4vw, 52px); }
.newsletter__form { display: flex; gap: 12px; }
.newsletter__form .input { flex: 1; }
@media (max-width: 760px) { .newsletter__inner { grid-template-columns: 1fr; } .newsletter__form { flex-direction: column; } }

/* ---------------- TEAM ---------------- */
.tabs { display: flex; gap: 6px; margin: 30px 0 36px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px; width: fit-content; box-shadow: var(--shadow-s); }
.tab { background: none; border: 0; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--muted); padding: 10px 20px; border-radius: 999px; transition: all .15s ease; }
.tab:hover { color: var(--hc-blue); }
.tab.on { background: var(--hc-blue); color: #fff; }
.team-grid { grid-template-columns: repeat(4, 1fr); }
.person { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.avatar { border-radius: 50%; background: linear-gradient(150deg, var(--hc-blue), var(--hc-navy)); display: flex; align-items: center; justify-content: center; flex: none; }
.avatar span { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 24px; letter-spacing: .02em; }
.person__name { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink); }
.person__role { font-size: 14.5px; color: var(--hc-blue); font-family: var(--font-head); font-weight: 600; margin-top: 2px; }
.person__org { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.team__note { margin-top: 36px; font-size: 15.5px; color: var(--muted); max-width: 70ch; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } .tabs { width: 100%; overflow-x: auto; } }

/* ---------------- LOGO WALL ---------------- */
.logowall { --cols: 6; display: grid; grid-template-columns: repeat(var(--cols), 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.logowall__cell { background: #fff; aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; padding: 22px; transition: background .2s ease; }
.logowall__cell:hover { background: var(--bg-soft); }
.logowall__cell img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease; }
.logowall__cell:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 1024px) { .logowall { --cols: 4; } }
@media (max-width: 640px) { .logowall { --cols: 3; } .logowall__cell { padding: 16px; } }
@media (max-width: 420px) { .logowall { --cols: 2; } }

.memtext { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 12px; }
.memtext__item { font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px; }

/* ---------------- JOIN BAND ---------------- */
.joinband { background: var(--hc-blue); color: #fff; padding-block: clamp(48px, 7vw, 84px); }
.joinband__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.joinband__title { font-size: clamp(30px, 4vw, 50px); color: #fff; max-width: 16ch; }
.joinband__sub { margin-top: 14px; font-size: 18px; color: #cfe1f2; max-width: 44ch; }
.joinband__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.joinband__ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.joinband__ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------------- PAGE HERO (sub-pages) ---------------- */
.pagehero { position: relative; padding-top: clamp(44px, 6vw, 76px); padding-bottom: clamp(36px, 4vw, 54px); overflow: hidden; }
.pagehero__title { margin-top: 4px; color: var(--hc-navy); }
.pagehero__bracket { position: absolute; top: 30px; right: clamp(10px, 5vw, 80px); z-index: 0; opacity: .9; }
.notebar { display: flex; gap: 14px; align-items: flex-start; margin-top: 28px; background: rgba(10,86,148,.06); border: 1px solid rgba(10,86,148,.16); border-radius: var(--radius-m); padding: 18px 22px; font-size: 15.5px; color: var(--hc-blue-800); max-width: 80ch; }
.notebar svg { flex: none; color: var(--hc-blue); margin-top: 2px; }

/* ---------------- MEMBERSHIP ---------------- */
.benefits { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 22px 24px; font-size: 16px; color: var(--text); }
.benefit__ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(10,86,148,.1); color: var(--hc-blue); display: flex; align-items: center; justify-content: center; }
@media (max-width: 820px) { .benefits { grid-template-columns: 1fr; } }

.tiers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.tier { padding: 24px 20px; display: flex; flex-direction: column; gap: 8px; cursor: pointer; position: relative; }
.tier--feat { border-color: var(--hc-blue); }
.tier--sel { box-shadow: 0 0 0 2px var(--hc-blue), var(--shadow-m); border-color: var(--hc-blue); }
.tier__badge { position: absolute; top: -10px; left: 20px; background: var(--hc-blue); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tier__who { align-self: flex-start; }
.tier__name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); margin-top: 4px; }
.tier__price { display: flex; align-items: baseline; gap: 5px; }
.tier__cur { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--muted); }
.tier__amt { font-size: 40px; color: var(--hc-navy); line-height: 1; }
.tier__unit { font-size: 13px; color: var(--muted); margin-top: -4px; }
.tier__note { font-size: 13.5px; color: var(--text); }
.tier__pick { margin-top: auto; padding-top: 12px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--hc-blue); }
@media (max-width: 1100px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .tiers { grid-template-columns: repeat(2, 1fr); } }

.joinform-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.joinform-selected { margin-top: 26px; background: var(--bg-soft); border: 1px dashed var(--line-strong); border-radius: var(--radius-m); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.joinform-selected span { font-size: 13px; font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.joinform-selected strong { font-family: var(--font-head); font-size: 18px; color: var(--ink); }
.joinform-selected small { color: var(--muted); font-weight: 400; }
.joinform { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 22px; }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.formgrid .span2 { grid-column: 1 / -1; }
.formchecks { display: flex; flex-direction: column; gap: 14px; }
.thanks { align-items: flex-start; text-align: left; gap: 14px; }
.thanks__ic { width: 60px; height: 60px; border-radius: 50%; background: rgba(10,86,148,.1); color: var(--hc-blue); display: flex; align-items: center; justify-content: center; }
@media (max-width: 860px) { .joinform-wrap { grid-template-columns: 1fr; } .formgrid { grid-template-columns: 1fr; } }

/* ---------------- RESOURCES ---------------- */
.books-grid { grid-template-columns: repeat(3, 1fr); }
.book { display: flex; flex-direction: column; overflow: hidden; }
.book__cover { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(150deg, var(--hc-blue), var(--hc-navy)); display: flex; flex-direction: column; justify-content: center; padding: 28px; gap: 4px; }
.book__spine { position: absolute; left: 28px; top: 0; bottom: 0; width: 3px; background: rgba(255,255,255,.35); }
.book__h { font-family: var(--font-display); font-weight: 600; font-size: 34px; color: #fff; letter-spacing: .04em; }
.book__k { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #b8cde2; }
.book__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.book__title { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink); }
.book__meta { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.book__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.book__price { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--hc-navy); }
@media (max-width: 860px) { .books-grid { grid-template-columns: 1fr; } }

.courses-grid { grid-template-columns: repeat(3, 1fr); }
.course { padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; cursor: pointer; }
.course__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.course__name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
.course__top svg { color: var(--hc-blue); flex: none; transition: transform .2s ease; }
.course:hover .course__top svg { transform: translateX(3px); }
@media (max-width: 860px) { .courses-grid { grid-template-columns: 1fr; } }

.feedback-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.feedback-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.feedback-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--text); }
@media (max-width: 860px) { .feedback-wrap { grid-template-columns: 1fr; } }

/* ---------------- SPONSORING ---------------- */
.sponsor-stats { grid-template-columns: repeat(4, 1fr); }
.sstat { text-align: center; padding: 22px; }
.sstat__n { display: block; font-size: clamp(38px, 4.5vw, 56px); color: var(--hc-blue); line-height: 1; }
.sstat__l { font-size: 14.5px; color: var(--muted); font-family: var(--font-head); font-weight: 500; }
@media (max-width: 720px) { .sponsor-stats { grid-template-columns: repeat(2, 1fr); } }

.packs { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.pack { padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; border: 1px solid var(--line); }
.pack--feat { border-color: var(--hc-blue); box-shadow: var(--shadow-m); transform: translateY(-6px); }
.pack__tag { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; }
.pack__tag--soft { background: #eef2f8; color: var(--muted); }
.pack__tag--silver { background: #e7ebf1; color: #5b6678; }
.pack__tag--gold { background: #f6eed8; color: #8a6d1e; }
.pack__list { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pack__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--text); }
.pack__list svg { color: var(--hc-blue); flex: none; margin-top: 3px; }
@media (max-width: 860px) { .packs { grid-template-columns: 1fr; } .pack--feat { transform: none; } }

/* ---------------- KONTAKT ---------------- */
.kontakt-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 14px; }
.kinfo { display: flex; gap: 16px; padding: 20px 22px; align-items: flex-start; }
.kinfo__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(10,86,148,.09); color: var(--hc-blue); display: flex; align-items: center; justify-content: center; }
.kinfo__l { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.kinfo__v { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink); }
a.kinfo__v:hover { color: var(--hc-blue); }
.klinks { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; padding-left: 6px; }
@media (max-width: 860px) { .kontakt-wrap { grid-template-columns: 1fr; } }

/* ---------------- AGORA ---------------- */
.agora-hero { background: var(--bg-navy); color: #fff; padding-top: clamp(50px, 7vw, 96px); padding-bottom: clamp(50px, 7vw, 96px); position: relative; overflow: hidden; }
.agora-hero::after { content: ""; position: absolute; top: -10%; right: -6%; width: 420px; height: 480px; border: 2px solid rgba(142,167,255,.2); border-radius: 8px; }
.agora-hero__inner { position: relative; z-index: 1; }
.agora-hero__title { font-size: clamp(60px, 10vw, 130px); line-height: .88; color: #fff; margin-top: 18px; }
.agora-hero__meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 26px; }
.agora-hero__meta span { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 500; font-size: 15.5px; color: #cdd3ec; }
.agora-hero__meta svg { color: #8ea7ff; }
.agora-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.program { padding: 32px 30px; }
.program__row { display: flex; gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.program__row:last-child { border-bottom: 0; }
.program__t { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--hc-blue); flex: none; width: 64px; }
.program__d { font-size: 16px; color: var(--text); align-self: center; }
@media (max-width: 860px) { .agora-grid { grid-template-columns: 1fr; } }

/* ---------------- MODAL ---------------- */
.modal { position: fixed; inset: 0; z-index: 200; background: rgba(20,28,46,.55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadein .2s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal__card { background: #fff; border-radius: var(--radius-l); max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto; padding: clamp(24px, 3vw, 40px); position: relative; box-shadow: var(--shadow-l); animation: modalin .25s cubic-bezier(.2,.7,.3,1); }
@keyframes modalin { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 15px; }
.modal__close:hover { background: var(--bg-soft); color: var(--ink); }
.modal__head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; padding-right: 30px; }
.evt__date--lg { width: 84px; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 14px 8px; background: var(--bg-soft); }
.evt__date--lg .evt__day { font-size: 38px; }
.modal__body { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--line); padding-top: 22px; }
.modal__row { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--text); }
.modal__row svg { color: var(--hc-blue); flex: none; margin-top: 2px; }
.modal__row strong { display: block; font-family: var(--font-head); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.modal__foot { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
