/* =========================================================================
   IAȘI URBAN MOBILITY SUMMIT 2026 — Landing Page
   Powered by ROPAT · Organizat de ARSC
   Design language: roșu + negru, fotografie alb-negru, colțuri rotunjite.
   ========================================================================= */

:root {
  /* Core palette */
  --black:      #0A0A0B;
  --black-2:    #0E0E10;
  --surface:    #141417;
  --surface-2:  #1A1A1E;
  --pure-black: #000000;

  /* Red */
  --red:        #FF2D2D;
  --red-bright: #FF4242;
  --red-deep:   #D10009;
  --red-soft:   rgba(255, 45, 45, 0.12);
  --red-glow:   rgba(255, 45, 45, 0.35);

  /* Ink / text */
  --white:      #FFFFFF;
  --ink-100:    #F4F4F5;
  --ink-300:    #B6B6BC;
  --ink-500:    #76767E;
  --ink-700:    #45454C;

  /* Lines */
  --line:       rgba(255, 255, 255, 0.09);
  --line-2:     rgba(255, 255, 255, 0.14);

  /* Radius — "rotunjite ~10%" peste tot */
  --r-sm:  12px;
  --r:     18px;
  --r-lg:  24px;
  --r-img: 22px;
  --r-pill: 999px;

  /* Type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ink-100);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--red); color: #fff; }

/* Subtle film grain overlay for that editorial b/w feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Helpers */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.section {
  padding-block: clamp(64px, 9vw, 130px);
  position: relative;
}
.section--alt { background: var(--black-2); }
.section--black { background: var(--pure-black); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }

h1, h2, h3 { font-weight: 700; line-height: 1.05; }

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.08;
}

.title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.title .accent { color: var(--red); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-300);
  margin-top: 22px;
  max-width: 60ch;
}

.idx {
  font-family: var(--font-display);
  color: var(--ink-700);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--red-glow);
}
.btn--primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 14px 40px -10px var(--red-glow); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn--dark {
  background: var(--surface);
  color: var(--white);
  border: 1px solid var(--line);
}
.btn--dark:hover { background: var(--surface-2); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }

/* ------------------------------------------------------------ Announce bar */
.announce {
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.announce strong { font-weight: 700; }
.announce .dot { opacity: 0.6; margin-inline: 10px; }

/* ----------------------------------------------------------------- Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
.header.is-stuck {
  background: rgba(8, 8, 9, 0.92);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.header__brands { display: flex; align-items: center; gap: 16px; }
.header__ropat { display: flex; align-items: center; transition: opacity 0.2s; flex-shrink: 0; }
.header__ropat img { height: 38px; width: auto; }
.header__ropat:hover { opacity: 0.78; }
.header__divider { width: 1px; height: 40px; background: var(--line-2); flex-shrink: 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px -6px var(--red-glow);
}
.brand__txt { line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.brand__powered {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.brand__powered b { color: var(--red); font-weight: 700; letter-spacing: 0.05em; }
.brand__powered .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2.4s infinite;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-300);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.powered {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.powered b { color: var(--ink-100); font-weight: 700; letter-spacing: 0.05em; }
.powered .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 8px rgba(255,45,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); }
}

.burger { display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 20px; height: 2px; background: var(--white); transition: 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,9,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 8px; padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-100);
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 12px; }
.mobile-menu .btn { margin-top: 24px; font-family: var(--font-body); font-size: 1rem; }

/* ------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(56px, 8vw, 90px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 600px at 78% -5%, rgba(255,45,45,0.16), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(255,45,45,0.07), transparent 55%);
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, #000 30%, transparent 75%);
}
.hero .wrap { position: relative; z-index: 2; }

.hero__top {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  margin-bottom: 30px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  padding: 8px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  color: var(--ink-100);
}
.chip svg { width: 15px; height: 15px; color: var(--red); }
.chip--red { background: var(--red-soft); border-color: rgba(255,45,45,0.3); color: #fff; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 11vw, 8.6rem);
  line-height: 1.26;
  letter-spacing: 0.005em;
  margin-bottom: 8px;
}
.hero__title .line { display: block; }
.hero__title .accent { color: var(--red); }
.hero__title .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink-500);
}

.hero__year {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--ink-300);
  letter-spacing: 0.04em;
  text-align: center;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--ink-100);
  max-width: none;
  margin-top: 26px;
  line-height: 1.5;
  text-align: center;
}
.hero__sub b { color: var(--red); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__media {
  margin-top: clamp(48px, 6vw, 80px);
  position: relative;
}
.hero__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--line);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.85);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.85), transparent 55%),
              linear-gradient(90deg, rgba(255,45,45,0.12), transparent 40%);
}
.hero__photo-cap {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  font-size: 0.8rem; color: var(--ink-300); font-weight: 500;
  display: flex; align-items: center; gap: 9px;
}
.hero__photo-cap .live { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }

/* ------------------------------------------------------------- Countdown */
.countdown {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}
.cd-box {
  flex: 1; min-width: 78px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 10px;
  text-align: center;
}
.cd-box .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1;
  color: #fff;
}
.cd-box .lbl {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-500); margin-top: 6px; font-weight: 600;
}

/* ------------------------------------------------------ Organizers strip */
.orgs { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.orgs__inner { display: flex; align-items: center; gap: clamp(28px, 5vw, 72px); flex-wrap: wrap; padding-block: 28px; }
.orgs__org { display: flex; flex-direction: row; align-items: center; gap: 16px; }
.orgs__partners { display: flex; flex-direction: row; align-items: center; gap: 18px; flex: 1; min-width: 260px; flex-wrap: wrap; }
.orgs__label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-500); font-weight: 600; white-space: nowrap;
}
.org-arsc { height: 52px; width: auto; }
.orgs__logos { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap; }
.org-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; color: var(--ink-300);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.org-logo:hover { color: var(--white); }
.org-logo .badge {
  font-family: var(--font-display); font-size: 0.78rem;
  padding: 5px 9px; border-radius: 8px; background: var(--surface);
  border: 1px solid var(--line-2); color: var(--white);
}

/* --------------------------------------------------------------- Marquee */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--red);
  padding-block: 14px;
}
.marquee__track { display: inline-flex; gap: 0; animation: scroll 28s linear infinite; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.25rem; text-transform: uppercase; color: #fff;
  letter-spacing: 0.03em; padding-inline: 26px;
  display: inline-flex; align-items: center; gap: 26px;
}
.marquee__track span::after { content: "✦"; font-size: 0.8rem; opacity: 0.7; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- About */
.about__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.about__body p { color: var(--ink-300); margin-bottom: 18px; }
.about__body p strong { color: var(--ink-100); font-weight: 600; }
.about__body .lead-p { font-size: 1.15rem; color: var(--ink-100); }

.facts { display: grid; gap: 14px; }
.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.fact:hover { border-color: var(--line-2); transform: translateY(-3px); }
.fact__k {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--red); font-weight: 700; margin-bottom: 9px;
}
.fact__v { color: var(--ink-100); font-size: 0.96rem; line-height: 1.5; }

/* ------------------------------------------------------------ Components */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.comp {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 34px;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.comp:hover { transform: translateY(-5px); border-color: var(--line-2); }
.comp__img { position: absolute; inset: 0; z-index: 0; }
.comp__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.4) contrast(1.05); transition: transform 0.7s var(--ease); }
.comp:hover .comp__img img { transform: scale(1.06); }
.comp__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,11,0.95) 5%, rgba(10,10,11,0.4) 60%, transparent); }
.comp__tag {
  position: relative; z-index: 2;
  align-self: flex-start;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
  padding: 7px 13px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.comp__tag--red { background: var(--red); color: #fff; }
.comp__tag--white { background: rgba(255,255,255,0.92); color: #000; }
.comp__title { position: relative; z-index: 2; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.comp__desc { position: relative; z-index: 2; color: var(--ink-300); font-size: 0.95rem; max-width: 42ch; }

/* ------------------------------------------------------------ Themes/track */
.themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.theme {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.theme::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.theme:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.theme:hover::before { transform: scaleX(1); }
.theme__ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--red-soft); border: 1px solid rgba(255,45,45,0.25);
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--red);
}
.theme__ico svg { width: 24px; height: 24px; }
.theme__num { position: absolute; top: 24px; right: 26px; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-700); }
.theme h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.2; }
.theme p { color: var(--ink-300); font-size: 0.92rem; }

/* ----------------------------------------------------------------- Agenda */
.agenda__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.day-tabs { display: inline-flex; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px; }
.day-tab {
  padding: 11px 22px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.9rem;
  color: var(--ink-300); transition: 0.25s; white-space: nowrap;
}
.day-tab.is-active { background: var(--red); color: #fff; }

.day-panel { display: none; margin-top: 40px; }
.day-panel.is-active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.day-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center;
  margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
  color: var(--ink-300); font-size: 0.92rem;
}
.day-meta .d-date { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.day-meta .d-venue {
  display: inline-flex; align-items: center;
  color: var(--ink-100); font-weight: 600; font-size: 0.82rem;
  padding: 6px 13px; border: 1px solid var(--line-2); border-radius: var(--r-pill);
}
.day-meta .d-title { color: var(--ink-300); font-weight: 500; flex-basis: 100%; }

.slot {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.slot:hover { background: rgba(255,255,255,0.015); }
.slot__time {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--white);
  letter-spacing: 0.02em; padding-top: 2px;
}
.slot__time .to { display: block; color: var(--ink-500); font-size: 0.8rem; }
.slot__body { position: relative; padding-left: 26px; }
.slot__body::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--black); border: 2px solid var(--red);
}
.slot__sec { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--red); font-weight: 700; margin-bottom: 6px; display: inline-block; }
.slot__title { font-size: 1.08rem; font-weight: 600; color: var(--ink-100); margin-bottom: 8px; line-height: 1.3; }
.slot__desc { color: var(--ink-300); font-size: 0.9rem; max-width: 68ch; }
.slot--break { opacity: 0.75; }
.slot--break .slot__body::before { background: var(--ink-500); border-color: var(--ink-500); }
.slot--highlight .slot__title { color: var(--white); }
.slot--highlight .slot__body::before { background: var(--red); }

/* ------------------------------------------------------------------ Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 20px; }
.stat__n { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--red); }
.stat__l { color: var(--ink-300); font-size: 0.92rem; margin-top: 10px; font-weight: 500; }

/* -------------------------------------------------------------- Audience */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.aud-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.aud-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 16px 18px; font-size: 0.92rem; font-weight: 500;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.aud-item:hover { border-color: var(--red); transform: translateX(4px); }
.aud-item .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.aud-item .tick svg { width: 13px; height: 13px; }

.aud-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); }
.aud-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05) brightness(0.9); }

/* ------------------------------------------------------------ ROPAT band */
.ropat {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 400px at 88% 0%, rgba(255,45,45,0.14), transparent 60%),
    var(--surface);
  padding: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
}
.ropat__eyebrow { margin-bottom: 18px; }
.ropat h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; line-height: 1.1; margin-bottom: 18px; }
.ropat h2 .accent { color: var(--red); }
.ropat p { color: var(--ink-300); margin-bottom: 16px; }
.ropat__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.ropat__pills span { font-size: 0.78rem; font-weight: 600; padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid var(--line-2); color: var(--ink-100); }
.ropat__side { text-align: center; }
.ropat__logo {
  display: inline-block;
  transition: opacity 0.2s;
}
.ropat__logo img { height: clamp(96px, 13vw, 150px); width: auto; display: block; }
.ropat__logo:hover { opacity: 0.85; }
.rlink {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 45, 45, 0.5);
  transition: text-decoration-color 0.2s, color 0.2s;
}
.rlink:hover { color: var(--red); text-decoration-color: var(--red); }
.ropat__logo .accent { color: var(--red); }
.ropat__tag { color: var(--ink-500); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; margin-top: 12px; font-weight: 600; }
.ropat__side .btn { margin-top: 26px; }

/* --------------------------------------------------------------- Location */
.venues { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.venue {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.venue:hover { transform: translateY(-4px); border-color: var(--line-2); }
.venue__map { height: 230px; position: relative; background: var(--black-2); }
.venue__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%) invert(0.92) contrast(0.85); position: absolute; inset: 0; }
.venue__body { padding: clamp(26px, 3vw, 36px); }
.venue__day { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); font-weight: 700; }
.venue h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; margin: 12px 0 4px; line-height: 1.1; }
.venue__addr { color: var(--ink-100); font-weight: 500; margin-bottom: 14px; }
.venue__desc { color: var(--ink-300); font-size: 0.92rem; margin-bottom: 24px; }

/* ----------------------------------------------------------- Registration */
.reg {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,45,45,0.25);
  background:
    radial-gradient(800px 500px at 50% -10%, rgba(255,45,45,0.18), transparent 60%),
    var(--pure-black);
  padding: clamp(48px, 7vw, 90px) var(--gutter);
  text-align: center;
}
.reg .eyebrow { justify-content: center; margin-bottom: 22px; }
.reg .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--red); }
.reg h2 { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 4rem); text-transform: uppercase; line-height: 1.08; margin-bottom: 18px; }
.reg h2 .accent { color: var(--red); }
.reg p { color: var(--ink-300); max-width: 56ch; margin: 0 auto 14px; font-size: 1.05rem; }
.reg__soon {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 30px; padding: 16px 26px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-pill); font-weight: 600; font-size: 1rem; color: var(--white);
}
.reg__soon .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }

/* Slot pentru embed JotForm — se va popula ulterior */
.reg__embed {
  margin: 38px auto 0;
  max-width: 760px;
  min-height: 120px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r);
  display: grid; place-items: center;
  color: var(--ink-500); font-size: 0.9rem;
  padding: 30px;
}
.reg__embed[data-filled="true"] { border-style: solid; padding: 0; min-height: 0; }

.reg__notify { display: flex; gap: 10px; max-width: 460px; margin: 28px auto 0; flex-wrap: wrap; }
.reg__notify input {
  flex: 1; min-width: 220px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-pill); padding: 15px 22px; color: #fff; font-size: 0.95rem;
  outline: none; transition: border-color 0.25s;
}
.reg__notify input:focus { border-color: var(--red); }
.reg__notify input::placeholder { color: var(--ink-500); }
.reg__note { font-size: 0.82rem; color: var(--ink-500); margin-top: 16px; }

/* ----------------------------------------------------------------- Footer */
.footer { background: var(--pure-black); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 80px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--ink-300); font-size: 0.92rem; max-width: 40ch; }
.footer__logos { display: flex; align-items: center; gap: 26px; margin-top: 24px; }
.footer__logo { width: auto; opacity: 0.9; transition: opacity 0.2s; }
.footer__logo--arsc { height: 40px; }
.footer__logo--ropat { height: 46px; }
.footer__logos a:hover .footer__logo { opacity: 1; }
.footer__col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-500); margin-bottom: 18px; font-weight: 700; }
.footer__col a { display: block; color: var(--ink-300); font-size: 0.92rem; padding: 6px 0; transition: color 0.2s, padding-left 0.2s; }
.footer__col a:hover { color: var(--red); padding-left: 5px; }
.footer__orgs { display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.footer__orgs .org-logo { font-size: 0.86rem; }
.footer__credits { margin-top: 18px; color: var(--ink-700); font-size: 0.74rem; }
.footer__credits a { color: var(--ink-500); text-decoration: underline; text-underline-offset: 2px; }
.footer__credits a:hover { color: var(--ink-300); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: var(--ink-500); font-size: 0.84rem; }
.footer__bottom a { color: var(--ink-300); }
.footer__bottom a:hover { color: var(--white); }
.footer .powered { color: var(--ink-500); }

/* --------------------------------------------------------- Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------------------------------------------- Dynamic / micro-animații */
/* Bară de progres la scroll */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  box-shadow: 0 0 14px var(--red-glow);
  z-index: 10000; will-change: transform;
}

/* Glow care „respiră" în hero */
.hero__bg { animation: heroGlow 9s ease-in-out infinite alternate; }
@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1) translate(0, 0); }
  100% { opacity: 1;  transform: scale(1.08) translate(-1.4%, 1.2%); }
}

/* Shine pe butonul principal la hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -65%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg); pointer-events: none; opacity: 0;
}
.btn--primary:hover::after { animation: btnShine 0.75s ease; }
@keyframes btnShine {
  0%   { left: -65%; opacity: 1; }
  100% { left: 130%; opacity: 1; }
}

/* Glow roșu subtil pe carduri la hover */
.theme:hover, .venue:hover, .comp:hover, .fact:hover {
  box-shadow: 0 22px 55px -26px var(--red-glow);
}

/* Float lent pe iconițele temelor */
.theme:hover .theme__ico { animation: floaty 1.6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ----------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .ropat { grid-template-columns: 1fr; gap: 36px; }
  .ropat__side { text-align: left; }
  .themes { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn, .header .powered { display: none; }
  .burger { display: flex; }
  .header__brands { gap: 11px; }
  .header__ropat img { height: 30px; }
  .header__divider { height: 32px; }
  .comp-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .venues { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .themes { grid-template-columns: 1fr; }
  .aud-list { grid-template-columns: 1fr; }
  .slot { grid-template-columns: 78px 1fr; gap: 14px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__title { -webkit-text-stroke-width: 1px; }
  .day-tabs { width: 100%; }
  .day-tab { flex: 1; text-align: center; padding: 11px 10px; }
  .header__ropat img { height: 26px; }
  .header__divider { height: 28px; }
  .brand__powered { display: none; }
  .brand__mark { width: 40px; height: 40px; font-size: 0.92rem; }
  .brand__name { font-size: 0.92rem; }
  .brand__sub { white-space: nowrap; }
  .announce { font-size: 0.74rem; letter-spacing: 0; }
  .header__inner { padding-block: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
