:root {
  --bg: #f6f5f0;
  --ink: #141412;
  --lime: #c6f432;
  --card-dark: #1f1f1c;
  --card-light: #e9e8e1;
  --muted-1: #45453f;
  --muted-2: #6b6b63;
  --muted-3: #9a9a90;
  --on-dark: #cfcfc6;
  --ink-hover: #2e2e2a;
  --line-08: rgba(20, 20, 18, .08);
  --line-10: rgba(20, 20, 18, .10);
  --line-14: rgba(20, 20, 18, .14);
  --line-16: rgba(20, 20, 18, .16);
  --line-20: rgba(20, 20, 18, .20);
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;
  --pad-x: clamp(20px, 5vw, 64px);
  --section-y: clamp(80px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: #3d5a00; }
input::placeholder { color: #8a8a82; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); }
p { margin: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.container { max-width: 1340px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section-card { padding: 12px; }
.inner { max-width: 1216px; margin: 0 auto; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.eyebrow .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); border: 1px solid var(--ink); }
.eyebrow-lime { color: var(--lime); margin-bottom: 24px; }
.eyebrow-text { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border-radius: 999px; font-weight: 600;
  transition: background-color .2s, color .2s;
}
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-md { padding: 15px 24px; }
.btn-sm { padding: 12px 18px; font-weight: 500; }

.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--bg); color: var(--ink); }

.btn-ghost-light { border: 1px solid rgba(246, 245, 240, .4); color: var(--bg); font-weight: 500; }
.btn-ghost-light:hover { background: rgba(246, 245, 240, .12); color: var(--bg); }

.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--lime); color: var(--ink); }

.btn-outline { border: 1px solid var(--line-20); }
.faq-side .btn-outline { padding: 14px 22px; }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Navigation ---------- */
.nav-wrap {
  position: fixed; top: 12px; left: 12px; right: 12px; z-index: 50;
  display: flex; justify-content: center;
}
.nav {
  width: 100%; max-width: 1240px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 10px 10px 10px 20px;
  background: rgba(246, 245, 240, .86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line-08);
  border-radius: 999px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 28px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-link { padding: 10px 14px; border-radius: 999px; font-size: 15px; font-weight: 500; transition: background-color .2s; }
.nav-link:hover { background: rgba(20, 20, 18, .06); color: var(--ink); }
.btn-nav { margin-left: 6px; padding: 11px 20px; background: var(--ink); color: var(--bg); font-size: 15px; }
.btn-nav:hover { background: var(--lime); color: var(--ink); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: var(--ink); cursor: pointer; position: relative; padding: 0;
}
.nav-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2px; background: var(--bg); border-radius: 2px;
  transition: transform .25s, top .25s;
}
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

@media (max-width: 760px) {
  .nav { border-radius: 28px; padding: 8px 8px 8px 20px; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 6px 4px 8px 0;
  }
  .nav.is-open { background: rgba(246, 245, 240, .97); }
  .nav.is-open .nav-menu { display: flex; }
  .nav-link { font-size: 17px; padding: 12px 14px; }
  .btn-nav { margin: 8px 0 0; text-align: center; padding: 14px 20px; font-size: 16px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; padding: 12px; display: flex; }
.hero-card {
  position: relative; flex: 1; min-height: 640px;
  border-radius: 28px; overflow: hidden; background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,20,18,.2) 0%, rgba(20,20,18,.1) 40%, rgba(20,20,18,.85) 100%);
}
.hero-content {
  position: relative; padding: clamp(24px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 40px; align-items: end; color: var(--bg);
}
.hero-title {
  font-weight: 800; font-size: clamp(64px, 12vw, 184px); line-height: .86; letter-spacing: -.045em;
  animation: rise .9s cubic-bezier(.2, .7, .2, 1) both;
}
.hero-title span { color: var(--lime); }
.hero-side {
  display: flex; flex-direction: column; gap: 28px; max-width: 460px;
  animation: rise .9s .15s cubic-bezier(.2, .7, .2, 1) both;
}
.hero-side p { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.5; text-wrap: pretty; }
.hero-strip {
  position: relative; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(246, 245, 240, .16);
  color: rgba(246, 245, 240, .8); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}

/* ---------- O klube ---------- */
.about { padding-top: var(--section-y); padding-bottom: 60px; }
.about .eyebrow { margin-bottom: 32px; }
.about-title {
  font-weight: 600; font-size: clamp(36px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.03em;
  max-width: 1150px; text-wrap: pretty;
}
.about-title mark { background: var(--lime); color: inherit; padding: 0 .12em; border-radius: .12em; }

.gallery {
  margin-top: 64px; display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.gallery img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 20px; }
.gallery img:nth-child(even) { margin-top: 48px; }
@media (max-width: 540px) { .gallery img:nth-child(even) { margin-top: 0; } }
.gallery-link {
  display: inline-block; margin-top: 28px; font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px;
}

.for-you {
  margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--line-14);
  display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}
.for-you h3 { font-weight: 600; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.02em; line-height: 1.05; }
.for-you-list { display: flex; flex-direction: column; }
.for-you-list ol { list-style: none; margin: 0; padding: 0; }
.for-you-list li {
  display: flex; gap: 20px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line-10); font-size: 20px;
}
.for-you-list li span { font-family: var(--display); font-size: 14px; color: var(--muted-2); }
.for-you-list .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Čo získate ---------- */
.benefits {
  background: var(--ink); color: var(--bg); border-radius: 28px;
  padding: clamp(56px, 8vw, 120px) var(--pad-x);
}
.benefits-title {
  font-weight: 600; font-size: clamp(30px, 4vw, 56px); line-height: 1.08; letter-spacing: -.025em;
  max-width: 980px; text-wrap: pretty;
}
.benefits-title span { color: var(--muted-3); }
.benefit-grid {
  margin-top: 72px; display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.benefit {
  padding: 32px 28px; border-radius: 20px; background: var(--card-dark);
  display: flex; flex-direction: column; gap: 18px; min-height: 300px;
  transition: background-color .25s, color .25s;
}
.benefit:hover { background: var(--lime); color: var(--ink); }
.benefit-num { font-family: var(--display); font-size: 15px; opacity: .6; }
.benefit h3 { margin-top: auto; font-size: 26px; font-weight: 600; letter-spacing: -.02em; }
.benefit p { font-size: 15px; line-height: 1.55; opacity: .8; }

/* ---------- Ako to funguje ---------- */
.how { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.how-head {
  display: grid; gap: 48px; align-items: end; margin-bottom: 56px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}
.how .eyebrow { margin-bottom: 24px; }
.how-title { font-weight: 600; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -.03em; text-wrap: pretty; }
.play-btn {
  justify-self: start; display: flex; align-items: center; gap: 14px;
  padding: 8px 22px 8px 8px; border-radius: 999px; border: 1px solid var(--line-20);
  background: transparent; font: inherit; font-size: 16px; font-weight: 600; cursor: pointer; color: var(--ink);
  transition: background-color .2s, color .2s;
}
.play-btn:hover { background: var(--ink); color: var(--bg); }
.play-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 16px;
}
.steps { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.step {
  padding: 36px 32px; border-radius: 24px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
}
.step-num { font-family: var(--display); font-size: 96px; font-weight: 800; line-height: .8; letter-spacing: -.05em; }
.step h3 { margin-bottom: 10px; font-size: 28px; font-weight: 600; letter-spacing: -.02em; }
.step p { font-size: 16px; line-height: 1.55; }
.step-lime { background: var(--lime); }
.step-light { background: var(--card-light); }
.step-dark { background: var(--ink); color: var(--bg); }
.step-dark .step-num { color: var(--lime); }
.step-dark p { color: var(--on-dark); }

/* ---------- Zo stretnutí ---------- */
.meetings { padding-bottom: var(--section-y); }
.meetings-page { padding-top: clamp(120px, 14vw, 170px); }
.back-link { display: inline-block; margin-bottom: 40px; font-size: 15px; font-weight: 500; color: var(--muted-2); }
.back-link:hover { color: var(--ink); }
.meetings-cta {
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line-14);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.meetings-cta p { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.02em; }
.nav-link[aria-current="page"] { background: rgba(20, 20, 18, .06); }
.meetings-head {
  display: grid; gap: 24px 48px; align-items: end; margin-bottom: 48px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}
.meetings .eyebrow { margin-bottom: 24px; }
.meetings-title { font-weight: 600; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -.03em; text-wrap: pretty; }
.meetings-head p { font-size: 18px; line-height: 1.55; color: var(--muted-1); max-width: 460px; }
.meet-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .meet-grid { grid-template-columns: repeat(2, 1fr); } }
.meet-item { display: block; border-radius: 20px; overflow: hidden; background: var(--card-light); }
.meet-item img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.meet-item:hover img { transform: scale(1.04); }
@media (min-width: 900px) {
  .meet-grid { grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; }
  .meet-item:nth-child(1), .meet-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20, 20, 18, .94);
  display: grid; place-items: center; padding: 72px 16px;
}
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox-figure img { max-width: min(1400px, 100%); max-height: calc(100vh - 170px); border-radius: 16px; object-fit: contain; }
.lightbox-count { color: rgba(246, 245, 240, .7); font-size: 14px; letter-spacing: .12em; }
.lightbox-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(246, 245, 240, .14); color: var(--bg); font-size: 20px;
  transition: background-color .2s, color .2s;
}
.lightbox-btn:hover { background: var(--lime); color: var(--ink); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-btn { top: auto; bottom: 20px; transform: none; }
  .lightbox-prev { left: calc(50% - 64px); }
  .lightbox-next { right: calc(50% - 64px); }
}

/* ---------- FAQ ---------- */
.faq { padding-bottom: var(--section-y); }
.faq-grid {
  display: grid; gap: 48px; padding-top: 56px; border-top: 1px solid var(--line-14);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}
.faq-side { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.faq-title { font-weight: 600; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.03em; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line-14); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0; background: none; border: 0; font: inherit; text-align: left; cursor: pointer; color: var(--ink);
}
.faq-q > span:first-child { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.faq-icon {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-size: 20px;
  background: rgba(20, 20, 18, .06); transition: background-color .2s;
}
.faq-item.is-open .faq-icon { background: var(--lime); }
.faq-a p { padding: 0 56px 28px 0; font-size: 17px; line-height: 1.6; color: var(--muted-1); }

/* ---------- Kontakt ---------- */
.contact { background: var(--lime); border-radius: 28px; padding: clamp(48px, 7vw, 100px) var(--pad-x); }
.contact-grid { display: grid; gap: 56px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-title { font-weight: 800; font-size: clamp(48px, 7vw, 104px); line-height: .9; letter-spacing: -.045em; }
.contact-info > p { font-size: 19px; line-height: 1.5; max-width: 420px; }
.contact-mail { margin-top: auto; display: flex; flex-direction: column; gap: 6px; padding-top: 24px; }
.contact-mail a {
  font-family: var(--display); font-size: clamp(17px, 4.6vw, 22px); font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere;
}

.form-card { background: var(--bg); border-radius: 24px; padding: clamp(24px, 3vw, 40px); }
.join-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); }
.join-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; }
.join-form input:not([type="checkbox"]) {
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-16); background: #fff;
  font: inherit; font-size: 16px; font-weight: 400; color: var(--ink); outline: none;
  transition: border-color .2s;
}
.join-form input:not([type="checkbox"]):focus { border-color: var(--ink); }
.join-form input[aria-invalid="true"] { border-color: #c0392b; }

.industries { border: 0; margin: 6px 0 0; padding: 0; min-width: 0; }
.industries legend { padding: 0; margin-bottom: 10px; font-size: 13px; font-weight: 600; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-16);
  background: #fff; color: var(--ink); font: inherit; font-size: 14px; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.pill[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.join-form .consent {
  flex-direction: row; gap: 10px; align-items: flex-start; margin-top: 6px;
  font-size: 14px; font-weight: 400; line-height: 1.45; color: var(--muted-1);
}
.consent input { margin: 3px 0 0; accent-color: var(--ink); width: 16px; height: 16px; flex: none; }
.consent a { text-decoration: underline; }
.hp { display: none; }
.h-captcha { margin-top: 4px; min-height: 78px; }
.h-captcha:empty { min-height: 0; }
.form-error { font-size: 14px; color: #a12a1c; line-height: 1.45; }

.btn-submit {
  margin-top: 8px; padding: 18px 24px; border-radius: 999px; border: 0;
  background: var(--ink); color: var(--bg); font: inherit; font-size: 17px; font-weight: 600; cursor: pointer;
  transition: background-color .2s;
}
.btn-submit:hover { background: var(--ink-hover); }
.btn-submit:disabled { opacity: .6; cursor: progress; }

.form-success { min-height: 420px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--lime);
  display: grid; place-items: center; font-size: 24px;
}
.form-success h3 { font-size: 34px; font-weight: 600; letter-spacing: -.02em; }
.form-success p { font-size: 17px; line-height: 1.55; color: var(--muted-1); overflow-wrap: anywhere; }

/* ---------- Footer ---------- */
.footer { padding-top: 64px; padding-bottom: 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-end; }
.wordmark { font-family: var(--display); font-weight: 800; font-size: clamp(48px, 10vw, 150px); line-height: .85; letter-spacing: -.05em; }
.wordmark span { color: var(--muted-3); }
.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 100; background: rgba(20, 20, 18, .88);
  display: grid; place-items: center; padding: 24px;
}
.video-frame { width: min(1100px, 100%); aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: var(--bg); color: var(--ink); font-size: 20px; cursor: pointer;
}
body.modal-open { overflow: hidden; }
