/* ═══════════════════════════════════════════════
                   0 — DESIGN TOKENS
                ═══════════════════════════════════════════════ */
:root {
  /* Gradients */
  --grad-orange: linear-gradient(41deg, #f35c03 28.19%, #ffc533 94.85%);
  --grad-orange-bg: linear-gradient(150deg, rgb(255, 160, 20) 0%, rgb(243, 92, 3) 50%, rgb(190, 48, 0) 100%);
  --grad-orange-cta: linear-gradient(12.87deg, rgb(243, 92, 3) 28.19%, rgb(255, 197, 51) 94.85%);
  --grad-orange-cta2: linear-gradient(39.54deg, rgb(243, 92, 3) 28.19%, rgb(255, 197, 51) 94.85%);
  --grad-teal: linear-gradient(228deg, #95fffd 1.35%, #00a19e 66.42%, #00a19e 97.29%);
  /* Transitions */
  --transition-ui: opacity 0.2s ease, transform 0.15s ease;
  /* Border radius */
  --radius-xs: 3px;
  --radius-sm: 4px;
  --radius-base: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-card: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 30px;
  --radius-pill: 100px;
  --radius-circle: 50%;
  /* Muted whites */
  --c-white-90: rgba(255, 255, 255, 0.9); /* near-white text / schedule cells */
  --c-white-65: rgba(255, 255, 255, 0.65); /* secondary text */
  --c-muted: rgba(255, 255, 255, 0.6);
  --c-muted-40: rgba(255, 255, 255, 0.4);
  --c-muted-30: rgba(255, 255, 255, 0.3);
  --c-ghost: rgba(255, 255, 255, 0.01); /* glass card bg */
  --c-surface-15: rgba(255, 255, 255, 0.15); /* subtle surface */
  --c-border: rgba(255, 255, 255, 0.08);

  /* Fixed type scale */
  --text-xs: 10px; /*  9 uses — micro labels, badges */
  --text-sm: 12px; /* 17 uses — captions, small UI  */
  --text-base: 14px; /* 18 uses — body copy, main UI  */
  --text-md: 18px; /*  4 uses — subheadings         */
  --text-lg: 20px; /*  3 uses — card titles         */
  --text-xl: 22px; /*  2 uses — section subtitles   */

  /* Fluid type scale */
  --fs-title-xs: clamp(24px, 4vw, 30px); /* second-heading */
  --fs-title-sm: clamp(28px, 4vw, 40px); /* main-heading, tickets-title */
  --fs-title-lg: clamp(32px, 4vw, 52px); /* ts-title, program-date */
  --fs-hero: clamp(62px, 7vw, 90px); /* hero headline */
  --fs-stat: clamp(72px, 11vw, 100px); /* stat numbers */

  /* Font weights */
  --fw-light: 300; /* body copy, descriptions */
  --fw-semi: 600; /* buttons, UI labels, subheadings */
  --fw-bold: 700; /* section headings, dates, prices */
  /* ── Breakpoints (reference only — CSS vars can't be used in @media)
                 xs  ≤ 575.98px   mobile portrait
                 sm  ≤ 767.98px   mobile landscape / small tablet
                 md  ≤ 991.98px   tablet
                 ── */
}

/* ═══════════════════════════════════════════════
                   1 — GLOBAL
                ═══════════════════════════════════════════════ */

/* ── Muted body copy base ───────────────────── */

header {
  padding: 0 !important;
}

/* ── Schedule cell base ──────────────────────── */
.schedule-cell {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--c-white-90);
}

.grad-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ── Label caps utility ──────────────────────── */
.hero-tagline,
.ts-logomark-wordmark,
.ticket-btn {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Ghost glass surface ─────────────────────── */
.bg-ghost {
  background: var(--c-ghost);
}

/* ── Flex-center utilities ───────────────────── */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.iflex-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* TicketCRM widget wrapper — invisible to layout */
tbx-button {
  display: contents;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
/* Offset anchor scroll so fixed navbar (top:30px + ~60px height) doesn't cover the target */
[id] {
  scroll-margin-top: 100px;
}
html,
body {
  background-color: #070707;
  font-family: 'Geologica', sans-serif;
  /* Applied once — all descendants inherit both settings */
  font-variation-settings:
    'CRSV' 0,
    'SHRP' 0;
  margin: 0;
  min-height: 100vh;
  padding-bottom: 0;
}

.container {
  max-width: 1300px;
}

.text-xs {
  font-size: var(--text-sm);
}
.text-xxs {
  font-size: var(--text-xs);
}

.main-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-title-sm);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.second-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-title-xs);
  font-weight: var(--fw-semi);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.bg-orange {
  background: var(--grad-orange-bg);
}
.bg-orange-cta {
  background: var(--grad-orange-cta);
}

.site-header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
}
@media (max-width: 991px) {
  .site-header {
    top: 15px;
  }
}

/* Glassmorphism pill */
.navbar-glass {
  max-width: 1311px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: var(--radius-card) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Nav links */
.navbar-glass .navbar-nav .nav-link {
  color: var(--c-muted) !important;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-glass .navbar-nav .nav-link:is(:hover, :focus) {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Logo placeholder */
.logo-placeholder {
  width: 42px;
  height: 37px;
  background: var(--c-surface-15);
  border: 1px dashed rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-sm);
  font-size: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Desktop right block */
.navbar-desktop-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile controls */
.navbar-mobile-controls {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Hamburger circle */
.navbar-toggler-circle {
  width: 42px;
  height: 42px;
  padding: 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: var(--radius-circle) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s ease;
}
.navbar-toggler-circle:hover {
  background: rgba(255, 255, 255, 0.26) !important;
}
.navbar-toggler-circle .navbar-toggler-icon {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
}

/* Location text */
.navbar-location {
  display: flex;
  flex-direction: column;
  font-weight: var(--fw-light);
  color: #fff;
  margin-right: 1rem;
}
.navbar-location .city {
  margin-bottom: 3px;
}

/* Mobile collapse footer */
.navbar-collapse-footer {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  padding-top: 18px;
  padding-bottom: 6px;
}
.navbar-collapse-footer .navbar-location {
  margin-bottom: 16px;
}
.navbar-collapse-footer .navbar-location .city {
  font-size: var(--text-sm);
  line-height: 1.4;
}
.navbar-collapse-footer .navbar-location .date {
  font-size: var(--text-base);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
                   3 — CTA BUTTON
                ═══════════════════════════════════════════════ */
.btn-ticket {
  height: 41px;
  padding: 10px 18px;
  gap: 8px;
  background: var(--grad-orange-cta);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-ui);
}
.btn-ticket:hover,
.btn-ticket:focus {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}
.btn-ticket:active {
  opacity: 1;
  transform: translateY(0);
}

.btn-ticket--mobile {
  height: 36px;
  padding: 6px 14px;
  /* font-size: var(--text-sm); */
  border-radius: var(--radius-md);
}

.navbar-collapse-footer .btn-ticket {
  width: 100%;
}

/* ═══════════════════════════════════════════════
                   4 — HERO SECTION
                ═══════════════════════════════════════════════ */
.hero-section {
  padding-top: 130px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Binary art backdrop */
#hero-binary-art {
  position: absolute;
  top: 0;
  right: 0;
  font-family: 'Courier New', monospace;
  font-size: 7px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.06);
  white-space: pre;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-image {
  position: absolute;
  top: 300px;
  left: 85px;
}

/* Tagline */
.hero-tagline {
  font-weight: 400;
  color: #ffc533;
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 16px;
  font-size: var(--text-sm);
}

/* Headline */
.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-hero);
  font-weight: var(--fw-semi);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Partner logos row */
.hero-logos {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background: rgb(243, 92, 3);
  font-weight: var(--fw-semi);
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
}
.logo-icon--teal {
  background: #1a8a8a;
  font-size: var(--text-xs);
}
.hero-logo-divider {
  width: 1px;
  height: 36px;
  background: var(--c-surface-15);
  flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
  height: 50px;
  padding: 5px 15px 5px 5px;
  font-size: var(--text-base);
  border-radius: var(--radius-3xl);
}
.hero-cta-icon {
  flex-shrink: 0;
}

/* Right column */
.hero-right {
  padding-left: 32px;
}

/* ═══════════════════════════════════════════════
                   5 — INFO CARDS (2×2 grid)
                ═══════════════════════════════════════════════ */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

a.hero-card,
a.hero-card:hover,
a.hero-card:focus {
  text-decoration: none !important;
}

.hero-card {
  border-radius: var(--radius-card);
  padding: 22px 20px 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Orange gradient */
.hero-card--orange {
  background: var(--grad-orange-bg);
}

/* Shared dark card border gradient */
:root {
  --hero-card-border: linear-gradient(160deg, #ffffff, #ff8303, #f35c03);
}

/* Dark flat */
.hero-card--dark {
  background:
    linear-gradient(rgb(22, 20, 20), rgb(22, 20, 20)) padding-box,
    var(--hero-card-border) border-box;
  border: 1px solid transparent;
}

/* Dark + warm radial glow (location card) */
.hero-card--glow {
  border: 5px solid transparent;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(220, 80, 0, 0.85) 0%, rgba(170, 50, 0, 0.5) 40%, transparent 70%)
      padding-box,
    linear-gradient(rgb(22, 20, 20), rgb(22, 20, 20)) padding-box,
    var(--hero-card-border) border-box;
}

/* Tall cards — fixed height so both rows match */
.hero-card:not(.hero-card--sm) {
  height: 240px;
}

/* Small cards */
.hero-card--sm {
  min-height: 96px;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
}

.hcard-sm-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 4px;
  min-width: 0;
}

/* Label */
.hcard-label {
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.hero-card--sm .hcard-label {
  margin-bottom: 0;
}

/* Date number — nowrap prevents "15-" / "16" split */
.hcard-date {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: var(--fw-semi);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* Month */
.hcard-month {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* Venue */
.hcard-venue {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: var(--fw-semi);
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Bottom-right icon */
.hcard-icon {
  margin-top: auto;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: #ffffff33;
  border-radius: var(--radius-circle);
  opacity: 0.55;
}

/* .hcard-org-logo — merged into .logo-text above */

.hcard-partner-placeholder {
  flex: 1;
}

/* Arrow circle */
.hcard-arrow {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-circle);
  background: #ffffff;
  flex-shrink: 0;
  color: #f88717;
}
.hcard-arrow--dark {
  background: rgba(0, 0, 0, 0.22);
}

/* ═══════════════════════════════════════════════
                   6 — MOBILE TWEAKS
                ═══════════════════════════════════════════════ */

@keyframes marquee {
  from {
    transform: translateX(calc(-1 * var(--set-w)));
  }
  to {
    transform: translateX(0);
  }
}

.hero-stripe {
  margin-top: 130px;
  width: 100%;
  height: 45px;
  background-color: #161616;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-stripe-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.hero-stripe-set {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px; /* matches gap — keeps seam spacing identical */
  white-space: nowrap;
}
.hero-stripe-text {
  color: #fff;
  font-style: normal;
  font-weight: var(--fw-semi);
  letter-spacing: -0.432px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0;
}
.hero-stripe-text--dark {
  color: rgba(255, 255, 255, 0.4);
}
/* ═══════════════════════════════════════════════
               ABOUT HEADER (node 12151:3292)
            ═══════════════════════════════════════════════ */
.about-header {
  padding-top: 40px;
}

/* Row: headline left, logo right */
.about-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

/* Headline */

/* ── WAVE logo ──────────────────────────────── */
.about-header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* The 4-wave SVG mark */
.about-header__wave-mark {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

/* Wordmark: WAVE + IT badge stacked with subtitle */
.about-header__wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

/* "WAVE" text */
.about-header__wave-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

/* "IT" superscript badge */
.about-header__it-badge {
  position: absolute;
  top: -4px;
  right: -26px;
  background: #ff5e00;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

/* "Business Conference" subtitle */
.about-header__wave-sub {
  font-size: var(--text-xs);
  font-weight: var(--fw-light);
  color: var(--c-white-65);
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  display: block;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
               FEATURES SECTION (node 12151:3336)
            ═══════════════════════════════════════════════ */
.features-section {
  padding-top: 20px;
}

/* Features — carousel on <991px, static grid on ≥991px */
.features-swiper.swiper {
  overflow: visible;
}
.features-swiper .swiper-wrapper {
  align-items: stretch;
}
.features-swiper .swiper-slide {
  height: auto;
}
.features-swiper .feature-card {
  height: 100%;
}
.features-dots {
  display: none;
  margin-top: 20px;
}

/* ≥991px: neutralise Swiper — looks & behaves like a plain flex row */
@media (min-width: 991px) {
  .features-swiper .swiper-wrapper {
    transform: none !important;
    gap: 20px;
  }
  .features-swiper .swiper-slide {
    width: auto !important;
    flex: 1;
  }
}

/* ── Base card ─────────────────────────────── */
.feature-card {
  border-radius: var(--radius-card);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

/* ── Orange gradient card ───────────────────── */
.feature-card--orange {
  background: var(--grad-orange-cta2);
  border: 1px solid rgba(255, 255, 255, 0.26);
}
/* glass shimmer overlay */
.feature-card--orange::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* ── Dark card ──────────────────────────────── */
/* ── Dark card ──────────────────────────────── */
.feature-card--dark {
  background: rgba(7, 7, 7, 0.95) !important;
  border: none !important;
  box-shadow: none !important;
}

.feature-card--dark::before {
  padding: 3px; /* ← border thickness */
  background: var(--grad-orange);
}

/* ── Icon ───────────────────────────────────── */
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Orange card icon: white circle bg */
.feature-icon {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Text ───────────────────────────────────── */
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.feature-body {
  color: var(--c-white-90); /* slightly brighter than base */
  margin: 0;
}

/* ═══════════════════════════════════════════════
               AUDIENCE SECTION
            ═══════════════════════════════════════════════ */
.audience-section {
  padding: 30px 20px 20px 20px;
  text-align: center;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: var(--text-base);
  font-weight: var(--fw-light);
  color: #fff;
  white-space: nowrap;
  position: relative;
  transition: background 0.2s ease;
}

.audience-tag::before {
  padding: 1px; /* border thickness */
  background: var(--grad-orange);
}

.audience-tag:hover {
  background: rgba(243, 92, 3, 0.1);
}

/* ═══════════════════════════════════════════════
               STATS SECTION
            ═══════════════════════════════════════════════ */
.stats-section {
  padding-top: 50px;
}

.stats-card {
  background: #0d0d0d;
  border-radius: var(--radius-2xl);
  padding: 64px 48px;
  height: 360px;
  background-image: url('https://it-family.od.ua/wp-content/uploads/2026/05/odesa-it-family-conference-preview.png');
  background-position: center;
  overflow: hidden;
}

.stats-grid {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--fs-stat);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: clamp(14px, 1.4vw, 24px);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.stats-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Shared white CTA base */
.btn-cta-base,
.btn-cta-base:hover,
.btn-cta-base:focus,
.btn-ticket,
.btn-ticket:hover,
.btn-ticket:focus {
  text-decoration: none !important;
}

.btn-cta-base {
  background: #fff;
  font-weight: var(--fw-semi);
  font-size: var(--text-base);
  text-transform: uppercase;
  color: #070707;
  text-decoration: none;
  transition:
    color 0.35s cubic-bezier(0.3, 0.1, 0.3, 1),
    background 0.35s cubic-bezier(0.3, 0.1, 0.3, 1);
  width: fit-content;
}
.btn-cta-base:hover {
  background: #ff5e00;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.35s cubic-bezier(0.3, 0.1, 0.3, 1),
    background 0.35s cubic-bezier(0.3, 0.1, 0.3, 1);
}
/* Unique props per variant */
.btn-stats-cta {
  min-width: 280px;
  padding: 18px 48px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════════
               TECH SYNERGY SECTION
            ═══════════════════════════════════════════════ */
.ts-section {
  padding-top: 80px;
}

/* ── Header row ─────────────────────────────── */
.ts-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.ts-header-left {
  flex: 1;
}

.ts-title {
  font-size: var(--fs-title-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ts-description {
  color: var(--c-white-65);
  line-height: 1.65;
  max-width: 540px;
}

/* TS logo mark */
.ts-logomark {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}

.ts-logomark-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  border: 2px solid #00cdb8;
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: #00cdb8;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.ts-logomark-wordmark {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: #00cdb8;
  line-height: 1.25;
}

/* ── Cards row / swiper ────────────────────── */
/* Override Swiper's default overflow:hidden on desktop — cards must fully show */
.ts-swiper.swiper {
  overflow: visible;
}
.ts-cards {
  display: flex;
  align-items: stretch;
}
.ts-swiper .swiper-wrapper {
  align-items: stretch;
}
.ts-swiper .swiper-slide {
  height: auto;
}
.ts-swiper .ts-card {
  height: 100%;
  width: 100%;
}
.ts-dots {
  display: none;
  margin-top: 20px;
}

/* ≥991px: neutralise Swiper — plain flex row */
@media (min-width: 991px) {
  .ts-swiper .swiper-wrapper {
    transform: none !important;
    gap: 20px;
  }
  .ts-swiper .swiper-slide {
    width: auto !important;
    flex: 1;
  }
}

/* 768–990px: fixed slide width for 'auto' mode */
@media (min-width: 768px) and (max-width: 990.98px) {
  .ts-swiper .swiper-slide {
    width: 360px;
  }
}

.ts-card {
  border-radius: var(--radius-card);
  padding: 28px 28px 32px;
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 100%;
}

/* Left card — teal gradient border */
.ts-card--teal {
  border: none;
  background: var(--grad-teal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ts-card::before {
  padding: 3px;
  background: var(--grad-teal);
}

/* Right card — subtle white border */
.ts-card--right {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ts-card--right::before {
  padding: 3px; /* ← border thickness */
  background: var(--grad-teal);
}

/* Card header: icon pill + label */
.ts-card-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.ts-card-header-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  color: #fff;
}
.text-base {
  font-size: 16px !important;
}

.ts-card-header-label {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: #fff;
}

.ts-card-body {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: var(--fw-light);
  color: #fff;
}

.ts-card-body,
li {
  margin-bottom: 0;
  font-size: var(--text-base);
  font-weight: var(--fw-light);
  color: var(--c-white-90);
}

/* Right card content */
.ts-card-question {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: #fff;
  margin-bottom: 20px;
}

.ts-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-tag--ts::before {
  background: var(--grad-teal);
}

.audience-tag--ts {
  background: var(--grad-teal);
  background-clip: text;
  color: white;
}

.audience-tag--ts:hover {
  background: linear-gradient(228deg, rgba(149, 255, 253, 0.15) 0%, rgba(0, 161, 158, 0.15) 100%);
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  -webkit-background-clip: unset;
}

/* ═══════════════════════════════════════════════
         SPEAKERS SECTION
      ═══════════════════════════════════════════════ */
.speakers-section {
  padding-top: 65px;
  overflow: hidden;
}

.speakers-subtitle {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 420px;
  margin: 0 auto 48px;
}

/* ── Slider wrapper ─────────────────────────── */
.speakers-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.speakers-swiper {
  flex: 1;
  overflow: hidden;
  padding: 20px 4px;
}

/* ── Nav arrows ─────────────────────────────── */
.speakers-nav {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.speakers-nav:hover {
  background: rgba(255, 255, 255, 0.16);
}
.speakers-nav svg {
  width: 18px;
  height: 18px;
}

/* ── Flip card ──────────────────────────────── */
.speaker-card {
  width: 100%;
  height: 100%;
  perspective: 1000px;
  cursor: pointer;
}
/* Swiper controls slide width via slidesPerView; card fills the slide */
.speakers-swiper .swiper-slide {
  height: 420px;
}

.speaker-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
  transform: translateZ(0);
}

/* Trigger flip — class-based (JS toggles on tap; CSS hover on desktop) */
.speaker-card.is-flipped .speaker-card-inner {
  transform: rotateY(180deg);
}
@media (hover: hover) and (pointer: fine) {
  .speaker-card:hover .speaker-card-inner {
    transform: rotateY(180deg);
  }
}
.card-face {
  border: none;
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  overflow: hidden;
}
.card-face::after {
  padding: 3px;
  background: var(--grad-orange);
  z-index: 1;
}

/* ─── FRONT ─────────────────────────────────── */
.speaker-card-front {
  background: var(--grad-orange-bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.speaker-card-front::before {
  padding: 3px;
  background: var(--grad-orange);
  z-index: 10000;
}

.speaker-card-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
}
.speaker-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* placeholder when no photo */
.speaker-card-photo--placeholder {
  background: var(--grad-orange-bg);
  background-image: url('https://it-family.od.ua/wp-content/uploads/2026/05/image-photoroom-12-1.png');
}
/* .speaker-card-photo--placeholder::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 72%;
        height: 75%;
        background: rgba(0, 0, 0, 0.18);
        border-radius: 50% 50% 0 0;
      } */

.speaker-card-front-info {
  position: relative;
  z-index: 1;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.speaker-card-front-text {
  flex: 1;
  min-width: 0;
}

.speaker-card-name {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  color: #fff;
  line-height: 1.25;
}

.speaker-card-role {
  font-size: var(--text-sm);
  font-weight: var(--fw-light);
  color: var(--c-muted);
  margin-top: 3px;
  line-height: 1.35;
}

.speaker-card-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #fff;
}
.speaker-card-arrow svg {
  width: 16px;
  height: 16px;
}

/* ─── BACK ───────────────────────────────────── */
.speaker-card-back {
  transform: rotateY(180deg);
  background: var(--grad-orange);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
}

/* Radial glow in center */
.speaker-card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(255, 220, 80, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.speaker-card-back .speaker-card-name {
  font-size: var(--text-md);
  position: relative;
}
.speaker-card-back .speaker-card-role {
  font-size: var(--text-sm);
  margin-top: 4px;
  margin-bottom: 14px;
  position: relative;
}

.speaker-card-bio {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: var(--fw-light);
  color: var(--c-white-90);
  line-height: 1.6;
  position: relative;
}

.speaker-card-back .speaker-card-arrow {
  align-self: flex-end;
  margin-top: 8px;
  position: relative;
}

/* ── Pagination dots ────────────────────────── */
.speakers-dots {
  gap: 8px;
  margin-top: 24px;
}

.speakers-dot {
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.3);
  width: 6px;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.speakers-dot--active {
  width: 28px;
  background: #fff;
}

/* ═══════════════════════════════════════════════
         PROGRAM SECTION
      ═══════════════════════════════════════════════ */
.program-section {
  padding-top: 60px;
}

/* ── Day block ──────────────────────────────── */
.program-day {
  margin-bottom: 64px;
}

.program-day-label {
  font-family: 'Unbounded', sans-serif;
  display: block;
  text-align: center;
  font-size: var(--text-xl);
  font-weight: var(--fw-semi);
  color: #ffff;
  margin-bottom: 20px;
}

/* ── Event brand header (date + logo) ───────── */
.program-event-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.program-date-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.program-cal-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  background: var(--grad-orange);
  flex-shrink: 0;
  color: #fff;
}
.program-cal-icon svg {
  width: 18px;
  height: 18px;
}

.program-date {
  font-size: var(--fs-title-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}

/* IT Wave inline brand */
.program-brand-itwave {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: #fff;
  letter-spacing: 0.04em;
}
.program-brand-itwave svg {
  color: #f35c03;
}

/* ── Track badge ────────────────────────────── */
.program-track-badge {
  display: inline-flex;
  align-items: center;
  padding: 15px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  font-size: var(--text-xl);
  font-weight: var(--fw-semi);
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── Two-track grid (Day 1) ─────────────────── */
.program-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ── Schedule list ──────────────────────────── */
.schedule-list {
  display: flex;
  flex-direction: column;
}

.schedule-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
.schedule-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-time {
  white-space: nowrap;
  padding-top: 1px;
}

.schedule-title {
  line-height: 1.5;
}

.schedule-subtitle {
  font-size: var(--text-xs);
  font-weight: var(--fw-light);
  color: var(--c-muted-40);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Day 2 — single centered column ─────────── */
.program-day--single {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.program-day--single .program-day-content {
  flex: 1;
  min-width: 0;
}
.program-day--single .schedule-list {
  width: 100%;
  max-width: 560px;
}
.program-image-placeholder,
.program-day-image-wrap {
  width: 450px !important;
  min-width: 450px;
  max-width: 450px;
  height: 499px !important;
  flex-shrink: 0;
  border-radius: var(--radius-card);
  display: block;
  overflow: hidden;
}
.program-image-placeholder {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.program-day-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ═══════════════════════════════════════════════
         CTA SECTION
      ═══════════════════════════════════════════════ */
.cta-section {
  padding: 150px 0 80px 0;
}

/* Unique props per variant */
.btn-cta--white {
  padding: 18px 60px;
  border-radius: var(--radius-xl);
}

/* ═══════════════════════════════════════════════
         CONTACTS FOOTER
      ═══════════════════════════════════════════════ */
.binary-art-section {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.binary-stripe-wrapper {
  position: relative;
}
#binary-art-svg {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .hero-right {
    position: relative;
  }
}
#hero-binary-art-section {
  display: block;
  width: 1500px;
  max-width: 1500px;
  height: 500px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 5.5px;
  line-height: 1.7;
  letter-spacing: 5;
  color: rgba(255, 255, 255, 0.22);
  white-space: pre;
  pointer-events: none;
  user-select: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.contacts-footer {
  padding-top: 80px;
  padding-bottom: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-section-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 40px;
}

.contacts-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.contacts-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: var(--fw-semi);
  color: #fff;
  margin-bottom: 14px;
}

.contacts-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-light);
  color: var(--c-muted-40);
  margin-bottom: 8px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-info a {
  font-size: var(--text-base);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.contacts-info a:hover {
  opacity: 0.7;
}

/* Social icons */
.contacts-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.social-icon {
  width: 44px;
  height: 44px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-ui);
}
.social-icon:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}
.social-icon svg {
  width: 24px;
  height: 24px;
}

/* Legal */
.contacts-legal {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-legal p {
  font-size: var(--text-sm);
  font-weight: var(--fw-light);
  color: var(--c-muted-30);
  margin: 0;
}

/* ═══════════════════════════════════════════════
         TICKETS SECTION
      ═══════════════════════════════════════════════ */
.tickets-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.tickets-title {
  font-size: var(--fs-title-sm);
  font-weight: var(--fw-semi);
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.tickets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 942px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: start;
}

/* ── Card wrapper ────────────────────────────── */
.ticket-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Discount badge floats above the card */
.ticket-discount-badge {
  position: absolute;
  top: -16px;
  z-index: 100000;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0 14px;
  align-self: flex-start;
}
.ticket-discount-badge--white {
  background: #fff;
  color: #111;
}
.ticket-discount-badge--gradient {
  background: linear-gradient(83deg, #ff5331 0.5%, #ffc533 93%);
  color: #fff;
}

/* ── Shape wrap (image goes here as bg) ─────── */
.ticket-shape-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 436 / 600;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ticket-stub {
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 16.67%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 0;
  z-index: 1;
}

.ticket-tier-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.ticket-tier-row-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-tier-name {
  font-size: clamp(20px, 4.2vw, 28px);
  font-weight: var(--fw-bold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ticket-early-bird {
  display: inline-flex;
  padding: 2px 8px;
  background: #fff;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: #faa628;
  text-transform: capitalize;
  white-space: nowrap;
}

.ticket-meta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.ticket-deadline {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--c-white-65);
  line-height: 1.3;
}
.ticket-deadline strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

.ticket-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.ticket-price-old {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  display: block;
  line-height: 1;
  margin-bottom: 1px;
}

.ticket-price-new {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
  display: block;
}

/* ── Body content (83.33% = 500/600) ────────── */
.ticket-body {
  position: absolute;
  top: 16.67%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4% 7% 6%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* ── Feature list ───────────────────────────── */
.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ticket-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: var(--fw-semi);
  color: #fff;
  line-height: 1.3;
}

.ticket-feature-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: var(--radius-xs);
  background: #fff;
  flex-shrink: 0;
}

.ticket-feature--premium {
  gap: 8px;
}

.ticket-feature-crown {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #faa628;
  flex-shrink: 0;
}

.ticket-features-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 6px 0;
}

/* ── Buy button ─────────────────────────────── */
.ticket-btn {
  padding: 14px 48px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-decoration: none;
  margin: 20px auto 0;
  white-space: nowrap;
  transition:
    color 0.35s cubic-bezier(0.3, 0.1, 0.3, 1),
    background 0.35s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.ticket-btn:hover {
  background: #ff5e00;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.35s cubic-bezier(0.3, 0.1, 0.3, 1),
    background 0.35s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.ticket-btn--white {
  background: #fff;
  color: #000;
}
.ticket-btn--dark {
  background: #000;
  color: #fff;
}

.tickets-section::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background: radial-gradient(
    ellipse at center,
    rgba(200, 80, 0, 0.75) 0%,
    rgba(160, 50, 0, 0.45) 30%,
    rgba(80, 20, 0, 0.2) 60%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
}

/* remove ::after entirely */
.tickets-section::after {
  display: none;
}
/* ═══════════════════════════════════════════════
         PARTNERS SECTION
      ═══════════════════════════════════════════════ */
.partners-section {
  padding-top: 80px;
}

/* ── Rows ───────────────────────────────────── */
.partners-list {
  display: flex;
  flex-direction: column;
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.partners-row-label {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  min-width: 156px;
  flex-shrink: 0;
}

.partners-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.partners-logo-item {
  display: flex;
  align-items: center;
  height: 44px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.partners-logo-item:hover {
  opacity: 1;
}

.partners-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Placeholder when no logo yet */
.partners-logo-placeholder {
  height: 36px;
  border-radius: var(--radius-base);
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 0 20px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
                   RESPONSIVE  —  consolidated breakpoints
                   md ≤ 991.98px | sm ≤ 767.98px | xs ≤ 575.98px
                ═══════════════════════════════════════════════ */

/* Features: fixed slide width at 768–990px so 'auto' mode reads it */
@media (min-width: 768px) and (max-width: 990.98px) {
  .features-swiper .swiper-slide {
    width: 360px;
  }
}

/* ── md ≤ 991.98px ────────────────────────────── */
@media (max-width: 991.98px) {
  .speakers-nav {
    display: none;
  }

  .navbar-glass {
    border-radius: var(--radius-lg) !important;
    background: rgba(18, 18, 20, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
  }
  .navbar-desktop-right {
    display: none;
  }
  .navbar-mobile-controls {
    display: flex;
  }
  .navbar-collapse-footer {
    display: block;
  }
  .navbar-glass .navbar-nav .nav-link {
    font-size: var(--text-base);
    line-height: 1.5;
    padding-top: 8px;
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.75) !important;
  }
  .navbar-glass .navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .navbar-glass .navbar-collapse {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  /* hero */
  .hero-section {
    padding-top: 160px;
    min-height: auto;
  }
  .hero-headline {
    text-align: center;
    margin-bottom: 40px;
  }
  .hero-right {
    padding-left: 15px;
    margin-top: 48px;
  }

  .tickets-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 440px;
  }
  .feature-card {
    height: 340px;
    width: 100%;
  }

  .speakers-swiper .swiper-slide {
    width: 290px;
    height: 450px;
  }
}

/* ── sm ≤ 767.98px ────────────────────────────── */
@media (max-width: 990.98px) {
  /* features & ts — carousel active below 991px */
  .features-swiper.swiper,
  .ts-swiper.swiper {
    overflow: hidden;
  }
  .features-dots,
  .ts-dots {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  /* ts-card fills slide (Swiper owns width via slidesPerView: 1.15) */
  .ts-swiper .ts-card {
    width: 100%;
    height: 360px;
    flex: none;
  }
  .ts-card {
    padding: 25px 16px;
  }
  .features-swiper .feature-card {
    width: 100%;
    height: 341px;
  }

  header {
    display: flex !important;
  }
  .about-header__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .ts-header {
    flex-direction: column;
    gap: 24px;
  }
  .ts-section {
    padding-top: 50px;
  }
  .program-tracks {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .program-day--single .schedule-list {
    max-width: 100%;
  }
  .program-day--single {
    flex-direction: column;
  }
  .program-image-placeholder,
  .program-day-image-wrap {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 260px !important;
  }
  .schedule-item {
    grid-template-columns: 90px 1fr;
  }

  .ticket-tier-name {
    font-size: var(--text-xl);
  }
  .partners-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .partners-row-label {
    min-width: unset;
  }
  .partners-logos {
    gap: 20px;
  }
  .partners-logo-item {
    height: 36px;
  }

  .speakers-swiper .swiper-slide {
    width: 280px;
    height: 450px;
  }
}

/* ── xs ≤ 575.98px ────────────────────────────── */
@media (max-width: 575.98px) {
  /* hero cards */
  .hero-cards {
    gap: 8px;
  }
  .contacts-footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .speakers-section {
    padding-top: 20px;
  }
  .cta-section {
    padding: 30px 10px;
  }
  .ts-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .stats-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-card:not(.hero-card--sm) {
    height: auto;
    min-height: 175px;
    padding: 16px 14px 14px;
  }
  .hero-card--sm {
    min-height: 76px;
    padding: 14px;
  }
  .program-section {
    padding: 20px;
  }
  .hcard-date {
    font-size: 38px;
  }
  .hero-logos {
    margin-bottom: 60px;
    justify-content: center;
  }
  .hero-cta {
    padding: 10px 20px 10px 5px;
    transform: translateX(50%);
  }
  .hcard-month {
    font-size: var(--text-base);
  }
  .hcard-venue {
    font-size: var(--text-base);
  }

  .hero-tagline {
    font-size: var(--text-xs);
    text-align: center;
    margin-bottom: 50px;
  }
  /* about */
  .about-header__wave-mark {
    width: 90px;
  }
  .about-header__wave-text {
    font-size: 24px;
  }
  /* audience */
  .audience-section {
    padding: 30px 0 48px;
  }
  .audience-tag {
    font-size: var(--text-sm);
    padding: 8px 16px;
  }
  .audience-tags {
    gap: 8px;
  }
  /* stats */
  .stats-card {
    padding: 50px 10px;
    height: initial;
    justify-content: space-between;
    border-radius: var(--radius-card);
  }
  .tickets-section {
    padding-top: 20px;
  }
  .hero-stripe {
    margin-top: 25px;
  }
  .about-header {
    margin-top: 20px;
  }
  .stat-number {
    font-size: clamp(20px, 30px, 80px);
  }
  .stat-label {
    font-size: var(--text-sm);
    margin-top: 8px;
  }
  .stats-cta-wrap {
    margin-top: 50px;
  }
  .btn-stats-cta {
    min-width: 220px;
    padding: 16px 32px;
  }
  /* speakers
        .speaker-card {
          width: 180px;
          height: 280px;
        } */
  /* cta / contacts */
  .cta-title {
    margin-bottom: 28px;
  }
  .contacts-row {
    flex-direction: column;
    gap: 32px;
  }
  .contacts-socials {
    padding-top: 0;
  }
}
