:root{
  --bg:#f5f7fb;
  --bg-soft:#ffffff;
  --panel:#ffffff;
  --card:#ffffff;
  --text:#111827;
  --muted:#5f6b7a;
  --muted2:#7b8794;
  --line:rgba(17,24,39,.10);

  --brand:#8b0000;
  --brand-dark:#5f0000;
  --gold:#d6a900;
  --gold-soft:rgba(214,169,0,.13);

  --radius:24px;
  --radius-sm:16px;
  --shadow:0 24px 70px rgba(15,23,42,.12);
  --shadow-soft:0 14px 35px rgba(15,23,42,.10);
  --container:1180px;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
}

body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(139,0,0,.10), transparent 60%),
    radial-gradient(700px 420px at 100% 10%, rgba(214,169,0,.10), transparent 60%),
    var(--bg);
  line-height:1.5;
}

a{ color:inherit; }

a.link{
  color:var(--brand);
  text-decoration:none;
  font-weight:800;
}

a.link:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.skiplink{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skiplink:focus{
  left:14px;
  top:14px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.header-row{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:230px;
}

.brand-mark{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:16px;
  background:#fff;
  padding:6px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--line);
}

.brand-logo{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.brand-title{
  font-size:15px;
  line-height:1.15;
  font-weight:950;
  letter-spacing:-.2px;
}

.brand-subtitle{
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:850;
  font-size:14px;
  letter-spacing:-.1px;
  transition:transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  user-select:none;
}

.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }

.btn-lg{
  min-height:48px;
  padding:12px 18px;
  font-size:15px;
}

.btn-primary{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  box-shadow:0 14px 34px rgba(139,0,0,.20);
}

.btn-primary:hover{
  box-shadow:0 20px 48px rgba(139,0,0,.28);
}

.btn-outline{
  background:#fff;
  border-color:rgba(17,24,39,.14);
  color:var(--text);
}

.btn-outline:hover{
  background:#f8fafc;
  border-color:rgba(139,0,0,.24);
}

.btn-ghost{
  background:transparent;
  border-color:rgba(17,24,39,.10);
  color:var(--muted);
}

.btn-ghost:hover{
  background:rgba(139,0,0,.05);
  color:var(--brand);
}

.w100{ width:100%; }

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 52px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(245,247,251,.94));
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(139,0,0,.10), transparent 44%),
    radial-gradient(620px 400px at 82% 18%, rgba(214,169,0,.13), transparent 65%);
  pointer-events:none;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0, 1.14fr) minmax(340px, .86fr);
  gap:34px;
  align-items:start;
}

.hero-copy{
  max-width:780px;
}

.badge-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  font-weight:850;
  box-shadow:0 8px 22px rgba(15,23,42,.06);
}

.badge.badge-soft{
  background:#f8fafc;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(40px, 5.6vw, 76px);
  line-height:.96;
  letter-spacing:-2.6px;
  font-weight:950;
}

.accent{
  color:var(--brand);
}

.lead{
  margin:0 0 24px;
  max-width:68ch;
  color:var(--muted);
  font-size:clamp(15px, 1.6vw, 18px);
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 22px;
}

.hero-notes{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}

.note,
.kpi,
.panel,
.card,
.feature,
.info,
.list-card,
.schedule,
.contact-card,
.video-card,
.sponsor-card,
.mission-card,
.org-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.note{
  padding:15px;
  border-radius:var(--radius-sm);
}

.note-k{
  font-size:12px;
  color:var(--muted2);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.note-v{
  margin-top:5px;
  font-weight:950;
}

/* ROTUJÚCE LOGO */

.hero-center-logo{
  position:absolute;
  inset:0;
  z-index:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.hero-center-logo-img{
  width:min(620px, 72vw);
  height:auto;
  opacity:.045;
  animation:pgSpin 54s linear infinite;
  transform-origin:50% 50%;
}

@keyframes pgSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* HERO PANELS */

.hero-panels{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.panel{
  padding:20px;
  border-radius:var(--radius);
}

.panel h3{
  margin:0 0 8px;
  font-size:18px;
}

.panel p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.panel ul{
  margin:10px 0 0 19px;
  padding:0;
  color:var(--muted);
  font-size:14px;
}

.panel li{ margin:5px 0; }

.kpi-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}

.kpi{
  padding:14px;
  border-radius:16px;
  box-shadow:none;
  background:#f8fafc;
}

.kpi .k{
  color:var(--muted2);
  font-size:12px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.kpi .v{
  margin-top:5px;
  color:var(--text);
  font-size:13px;
  font-weight:950;
}

/* RIGHT SIDE */

.hero-right{
  display:grid;
  gap:16px;
  align-content:start;
}

.hero-card,
.hero-video,
.hero-sponsor{
  position:relative;
  z-index:2;
}

.card{
  padding:24px;
  border-radius:var(--radius);
}

.hero-card .card{
  position:sticky;
  top:96px;
}

.card-head h2{
  margin:0 0 6px;
  font-size:24px;
  letter-spacing:-.5px;
}

.card-head p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
}

.card-actions,
.login-split{
  display:grid;
  gap:10px;
}

.divider{
  height:1px;
  background:var(--line);
  margin:18px 0;
}

.mini-faq__item{
  margin-bottom:12px;
}

.mini-faq__item:last-child{
  margin-bottom:0;
}

.mini-faq__q{
  font-size:13px;
  font-weight:950;
}

.mini-faq__a{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}

/* VIDEO */

.video-card{
  border-radius:var(--radius);
  overflow:hidden;
}

.video-head{
  padding:16px 18px 12px;
}

.video-head h3{
  margin:0 0 4px;
  font-size:18px;
}

.video-head p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.video-wrap{
  position:relative;
  width:100%;
  padding-top:56.25%;
  background:#000;
}

.video-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* SPONZOR */

.sponsor-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  padding:20px;
  border-radius:var(--radius);
  transition:transform .14s ease, background .14s ease, border-color .14s ease;
}

.sponsor-card:hover{
  transform:translateY(-1px);
  background:#fff;
  border-color:rgba(139,0,0,.22);
}

.sponsor-logo{
  width:128px;
  height:58px;
  display:grid;
  place-items:center;
  padding:8px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
}

.sponsor-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

.sponsor-info{
  max-width:260px;
}

.sponsor-name{
  margin:0 0 5px;
  font-size:16px;
  font-weight:950;
  color:var(--text);
}

.sponsor-desc{
  margin:0 0 8px;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.sponsor-link{
  font-size:13px;
  color:var(--brand);
  text-decoration:none;
  font-weight:850;
}

.sponsor-link:hover{ text-decoration:underline; }

/* MISIA */

.mission-wrap{
  margin-top:20px;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:14px;
}

.mission-card,
.org-card{
  padding:20px;
  border-radius:var(--radius);
}

.mission-card h3,
.org-card h3{
  margin:0 0 10px;
  font-size:18px;
  color:var(--text);
}

.mission-card p,
.org-card p,
.org-list{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

.mission-card p + p{ margin-top:10px; }

.org-list{
  display:grid;
  gap:8px;
  margin-top:8px;
}

.org-list strong{ color:var(--text); }

.two-percent{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  background:rgba(139,0,0,.06);
  border:1px solid rgba(139,0,0,.14);
  font-size:13px;
  line-height:1.5;
  color:var(--text);
}

.two-percent a{
  color:var(--brand);
  font-weight:850;
  text-decoration:none;
}

.two-percent a:hover{ text-decoration:underline; }

/* SECTIONS */

.section{
  padding:58px 0;
}

.section-soft{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  margin-bottom:24px;
}

.section-head h2{
  margin:0 0 8px;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.05;
  letter-spacing:-1.2px;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  max-width:78ch;
}

.section-head.row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.section-head__actions{
  flex:0 0 auto;
}

/* GRIDS */

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.feature,
.info,
.list-card{
  border-radius:var(--radius);
  padding:22px;
}

.feature-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border-radius:14px;
  background:rgba(139,0,0,.08);
  border:1px solid rgba(139,0,0,.18);
  color:var(--brand);
  font-weight:950;
}

.feature h3,
.info h3,
.list-card h3{
  margin:0 0 8px;
  font-size:19px;
  letter-spacing:-.3px;
}

.feature p,
.info p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.checklist{
  margin:12px 0 0;
  padding:0 0 0 20px;
  color:var(--muted);
  font-size:14px;
}

.checklist li{ margin:9px 0; }

/* SCHEDULE */

.schedule{
  border-radius:var(--radius);
  padding:16px;
}

.schedule-row{
  display:grid;
  grid-template-columns:1fr 1fr 1.2fr;
  gap:12px;
  padding:16px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid var(--line);
}

.schedule-day{
  font-weight:950;
}

.schedule-time{
  color:var(--muted);
  font-weight:850;
}

.schedule-place{
  color:var(--muted);
}

.schedule-note{
  margin:12px 6px 0;
  color:var(--muted);
  font-size:13px;
}

/* CONTACT */

.contact-card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  padding:26px;
  border-radius:var(--radius);
}

.contact-copy h2{
  margin:0 0 8px;
  font-size:clamp(28px, 3vw, 40px);
  letter-spacing:-1px;
}

.contact-copy p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:15px;
}

.contact-items{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.contact-item{
  padding:15px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid var(--line);
}

.contact-k{
  font-size:12px;
  color:var(--muted2);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.contact-v{
  margin-top:5px;
  font-weight:950;
  word-break:break-word;
}

.contact-actions{
  display:grid;
  gap:10px;
  align-content:start;
}

/* FOOTER */

.site-footer{
  padding:24px 0 30px;
  border-top:1px solid var(--line);
  background:#fff;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}

.footer-row strong{
  color:var(--text);
}

.muted{ color:var(--muted); }

/* COOKIE BANNER */

.cookie-banner{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:9999;
}

.cookie-banner__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:15px;
  border-radius:18px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}

.cookie-banner__text{
  min-width:240px;
  color:var(--muted);
}

.cookie-banner__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cookie-banner a{
  color:var(--brand);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* RESPONSIVE */

@media (max-width:980px){
  .hero{
    padding:48px 0 38px;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-card .card{
    position:relative;
    top:0;
  }

  .kpi-grid,
  .hero-notes,
  .mission-wrap{
    grid-template-columns:1fr;
  }

  .contact-card{
    grid-template-columns:1fr;
  }

  .contact-items{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .header-row{
    min-height:auto;
    padding:12px 0;
    align-items:flex-start;
  }

  .brand{
    min-width:0;
  }

  .brand-title{
    font-size:14px;
  }

  .brand-subtitle{
    font-size:11px;
  }

  .header-actions{
    gap:8px;
  }

  .header-actions .btn{
    min-height:38px;
    padding:8px 11px;
    font-size:12px;
  }

  .hero h1{
    letter-spacing:-1.6px;
  }

  .grid-3,
  .grid-2{
    grid-template-columns:1fr;
  }

  .section-head.row{
    display:block;
  }

  .section-head__actions{
    margin-top:14px;
  }

  .schedule-row{
    grid-template-columns:1fr;
  }

  .cookie-banner__inner{
    display:grid;
  }

  .cookie-banner__actions{
    justify-content:stretch;
  }

  .cookie-banner__actions .btn{
    width:100%;
  }
}

@media (max-width:520px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .hero{
    padding-top:34px;
  }

  .hero h1{
    font-size:40px;
  }

  .lead{
    font-size:15px;
  }

  .cta-row .btn{
    width:100%;
  }

  .hero-center-logo-img{
    width:340px;
    opacity:.035;
  }

  .card,
  .panel,
  .feature,
  .info,
  .list-card,
  .contact-card,
  .mission-card,
  .org-card{
    padding:18px;
  }

  .sponsor-card{
    padding:18px;
  }

  .sponsor-logo{
    width:112px;
    height:52px;
  }
}

@media (prefers-reduced-motion:reduce){
  .hero-center-logo-img{
    animation:none;
  }

  .btn{
    transition:none;
  }

  .btn:hover{
    transform:none;
  }
}
/* kontaktné boxíky ako hero-notes */
.contact-notes{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:18px !important;
  margin-top:32px !important;
}

.contact-notes .note{
  flex:0 0 auto !important;
  min-width:220px !important;
  max-width:320px !important;
  padding:22px 26px !important;
}

.contact-notes .note-v{
  word-break:break-word !important;
}

.contact-notes .note-v a{
  color:inherit !important;
  text-decoration:none !important;
}

.contact-notes .note-v a:hover{
  text-decoration:underline !important;
}

/* mobile */
@media(max-width:700px){

  .contact-notes{
    flex-direction:column !important;
  }

  .contact-notes .note{
    width:100% !important;
    max-width:100% !important;
  }

}
.contact-actions-card{
  width:fit-content !important;
  min-width:320px !important;
  max-width:380px !important;
  padding:28px !important;
}

.contact-actions{
  width:100% !important;
}

.contact-actions .btn,
.contact-actions .link{
  width:auto !important;
  min-width:260px !important;
  padding-inline:28px !important;
}
.contact-grid{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) 360px !important;
  gap:24px !important;
  align-items:start !important;
}

.contact-actions-card{
  width:100% !important;
  max-width:360px !important;
  padding:28px !important;
}

.contact-actions{
  width:100% !important;
  display:flex !important;
  flex-direction:column !important;
  gap:14px !important;
}

.contact-actions .btn,
.contact-actions .link{
  width:100% !important;
  min-height:52px !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  text-align:center !important;
}

@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr !important;
  }

  .contact-actions-card{
    max-width:100% !important;
  }
}
.hero-notes{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:18px !important;
  margin-top:26px !important;
}

.hero-notes .note{
  padding:24px !important;
  min-height:150px !important;
  border-radius:24px !important;

  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
}

.hero-notes .note-k{
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  margin-bottom:14px !important;
  color:var(--muted2) !important;
}

.hero-notes .note-v{
  font-size:18px !important;
  line-height:1.2 !important;
  font-weight:900 !important;
  letter-spacing:-.03em !important;
  max-width:90% !important;
}

@media(max-width:980px){

  .hero-notes{
    grid-template-columns:1fr !important;
  }

  .hero-notes .note{
    min-height:auto !important;
  }

}
.brand{
  text-decoration:none;
}

.card-action{
  margin-top:auto;
  padding-top:18px;
}

.feature,
.info,
.list-card,
.mission-card,
.org-card,
.schedule,
.video-card,
.note,
.contact-actions-card{
  border-radius:24px;
}

.feature,
.info,
.list-card{
  display:flex;
  flex-direction:column;
}

.feature p,
.info p,
.list-card li,
.mission-card p,
.org-list,
.schedule-note,
.video-head p,
.lead,
.section-head p{
  font-weight:400;
}

.feature h3,
.info h3,
.list-card h3,
.mission-card h3,
.org-card h3,
.video-head h3{
  font-size:20px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.35px;
}

.section-link{
  margin-top:18px;
}

.contact-section .section-head{
  margin-bottom:20px;
}

.contact-notes{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:18px !important;
  margin-top:0 !important;
}

.contact-notes .note{
  min-width:0 !important;
  max-width:none !important;
}

.contact-actions-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

@media(max-width:900px){
  .contact-notes{
    grid-template-columns:1fr !important;
  }
}
.partners-grid{
  align-items:stretch;
}

.partner-card{
  min-height:320px;
  padding:26px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);

  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.partner-logo{
  width:100%;
  height:120px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;
  background:#f8fafc;
  border:1px solid var(--line);

  overflow:hidden;
  padding:20px;
}

.partner-logo img{
  width:auto;
  height:auto;

  max-width:70%;
  max-height:70%;

  object-fit:contain;
  display:block;
}

.partner-card h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.35px;
}

.partner-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.partner-card:hover{
  transform:translateY(-2px);
  border-color:rgba(139,0,0,.20);
}

@media(max-width:760px){
  .partner-card{
    min-height:auto;
  }
}
