@charset "UTF-8";
/* ==========================================================================
   Women in IT Day — Section 1 (w1.png)
   ========================================================================== */
:root {
  --color-bg: #050508;
  --color-bg-elevated: #0b0d14;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-neon-green: #b8ff2e;
  --color-neon-blue: #3ecbff;
  --color-neon-purple: #a855f7;
  --color-neon-magenta: #c44dff;
  --color-icon-cyan: #00dbff;
  --color-icon-purple: #ad00ff;
  --color-text: #ffffff;
  --color-text-muted: #a8b0c2;
  --gradient-cta: linear-gradient(
    95deg,
    var(--color-neon-purple) 0%,
    #6d5cff 45%,
    var(--color-neon-green) 100%
  );
  --gradient-register: linear-gradient(
    90deg,
    var(--color-neon-purple),
    var(--color-neon-blue)
  );
  --gradient-tagline: linear-gradient(
    90deg,
    var(--color-neon-purple),
    var(--color-neon-green)
  );
  --gradient-logo: linear-gradient(
    135deg,
    var(--color-neon-blue),
    var(--color-neon-green)
  );
  /* Ikony ze wzoru: cyan → magenta/purple */
  --gradient-icon: linear-gradient(
    165deg,
    var(--color-icon-cyan) 0%,
    #7b5cff 45%,
    var(--color-icon-purple) 100%
  );
  --glass-bg: rgba(12, 14, 24, 0.65);
  --glass-blur: blur(14px);
  --container-max: 1280px;
  --header-h: 4.5rem;
  --radius-pill: 999px;
  --radius-panel: 18px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Caveat", cursive;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-neon-green {
  color: var(--color-neon-green);
}

/* Neon gradient na Bootstrap Icons — warianty kolorystyczne */
.icon-neon,
.icon-neon--blue-purple {
  display: inline-block;
  line-height: 1;
  background-image: linear-gradient(165deg, #00dbff 0%, #7b5cff 45%, #ad00ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 3px rgba(0, 219, 255, 0.65)) drop-shadow(0 0 10px rgba(173, 0, 255, 0.45));
}

.icon-neon--blue-green {
  display: inline-block;
  line-height: 1;
  background-image: linear-gradient(165deg, #00dbff 0%, #3dffb0 50%, #b8ff2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 3px rgba(0, 219, 255, 0.6)) drop-shadow(0 0 10px rgba(184, 255, 46, 0.45));
}

.icon-neon--purple {
  display: inline-block;
  line-height: 1;
  background-image: linear-gradient(165deg, #c44dff 0%, #a855f7 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 3px rgba(196, 77, 255, 0.65)) drop-shadow(0 0 10px rgba(124, 58, 237, 0.45));
}

.icon-neon--green {
  display: inline-block;
  line-height: 1;
  background-image: linear-gradient(165deg, #e8ff6a 0%, #b8ff2e 45%, #7dff3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 3px rgba(184, 255, 46, 0.7)) drop-shadow(0 0 10px rgba(125, 255, 60, 0.4));
}

.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--color-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-panel);
  box-shadow: 0 0 0 1px rgba(62, 203, 255, 0.08), 0 0 40px rgba(168, 85, 247, 0.08);
}

/* -------------------------------------------------------------------------- */
/* Page atmosphere                                                            */
/* -------------------------------------------------------------------------- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.page-bg__glow--purple {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -12%;
  left: -8%;
  background: var(--color-neon-purple);
  opacity: 0.22;
}

.page-bg__glow--green {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  top: 18%;
  right: -6%;
  background: var(--color-neon-green);
  opacity: 0.1;
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(62, 203, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(62, 203, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 20%, transparent 70%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn i {
  font-size: 1.05em;
  color: var(--color-neon-green);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 2px solid var(--color-neon-blue);
  outline-offset: 3px;
}

.btn--register {
  padding: 0.65rem 1.15rem;
  font-size: 0.72rem;
  color: var(--color-text);
  background: var(--gradient-register);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.35);
}

.btn--cta {
  padding: 0.95rem 1.6rem;
  font-size: 0.85rem;
  color: #0a0a10;
  background: var(--gradient-cta);
  box-shadow: 0 0 32px rgba(184, 255, 46, 0.22);
}
.btn--cta i {
  color: #0a0a10;
}

.btn--sm {
  padding: 0.75rem 1.2rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  min-width: 0;
  height: 100%;
  max-width: min(42vw, 22rem);
}

.logo__img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.nav > .btn {
  margin-left: 0.35rem;
}

.nav > a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav > a:not(.btn):hover {
  color: var(--color-text);
}
.nav > a:not(.btn).is-active {
  color: var(--color-neon-purple);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  font-size: 1.35rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(5, 5, 8, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav > a:not(.btn) {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav .btn {
    margin-top: 0.85rem;
    width: 100%;
  }
}
/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }
}

.hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero__title-accent {
  background: var(--gradient-tagline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__dot {
  color: var(--color-neon-green);
  text-shadow: 0 0 18px rgba(184, 255, 46, 0.7);
}

.hero__tagline {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  background: var(--gradient-tagline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}
.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__meta i {
  font-size: 1.2rem;
}

.hero__handwrite {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin: 1.75rem 0 0;
}

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  transform: rotate(-4deg);
  display: inline-block;
  color: #e8ecf8;
}

.hero__more {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero__more::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--color-neon-green);
  box-shadow: 0 0 12px rgba(184, 255, 46, 0.8);
}

/* Collage */
.hero__visual {
  position: relative;
  min-height: clamp(22rem, 52vw, 30rem);
}

.hero__bars {
  position: absolute;
  inset: 8% 4% 6% 8%;
  pointer-events: none;
}

.hero__bar {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.9;
}
.hero__bar--purple {
  width: 1.1rem;
  height: 78%;
  top: 4%;
  left: 8%;
  transform: rotate(-28deg);
  background: linear-gradient(180deg, transparent, var(--color-neon-purple), transparent);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.65);
  animation: bar-pulse 3.2s ease-in-out infinite;
}
.hero__bar--green {
  width: 0.85rem;
  height: 62%;
  top: 18%;
  right: 12%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, transparent, var(--color-neon-green), transparent);
  box-shadow: 0 0 22px rgba(184, 255, 46, 0.55);
  animation: bar-pulse 2.8s ease-in-out 0.4s infinite;
}
.hero__bar--blue {
  width: 0.65rem;
  height: 48%;
  bottom: 8%;
  left: 42%;
  transform: rotate(-12deg);
  background: linear-gradient(180deg, transparent, var(--color-neon-blue), transparent);
  box-shadow: 0 0 18px rgba(62, 203, 255, 0.5);
  animation: bar-pulse 3.6s ease-in-out 0.8s infinite;
}

@keyframes bar-pulse {
  0%, 100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}
.hero__collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero__shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(168, 85, 247, 0.15);
}
.hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero__shot--a {
  width: 48%;
  height: 58%;
  top: 4%;
  left: 6%;
  clip-path: polygon(8% 0, 100% 6%, 92% 100%, 0 90%);
  animation: collage-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__shot--a img {
  object-position: center 35%;
}

.hero__shot--b {
  width: 38%;
  height: 42%;
  top: 0;
  right: 4%;
  clip-path: polygon(0 10%, 100% 0, 100% 88%, 8% 100%);
  animation: collage-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero__shot--b img {
  object-position: center 20%;
}

.hero__shot--c {
  width: 42%;
  height: 40%;
  top: 46%;
  left: 28%;
  clip-path: polygon(0 0, 95% 8%, 100% 100%, 5% 92%);
  z-index: 2;
  animation: collage-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.hero__shot--c img {
  object-position: 55% 25%;
}

.hero__shot--d {
  width: 34%;
  height: 36%;
  bottom: 4%;
  left: 2%;
  clip-path: polygon(12% 0, 100% 12%, 88% 100%, 0 86%);
  animation: collage-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}
.hero__shot--d img {
  object-position: center 40%;
}

.hero__shot--e {
  width: 36%;
  height: 38%;
  bottom: 2%;
  right: 2%;
  clip-path: polygon(0 14%, 100% 0, 92% 100%, 6% 90%);
  animation: collage-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}
.hero__shot--e img {
  object-position: center 35%;
}

@keyframes collage-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 700px) {
  .hero__visual {
    min-height: 20rem;
  }
  .hero__shot--e {
    display: none;
  }
}
/* -------------------------------------------------------------------------- */
/* Stats bar                                                                  */
/* -------------------------------------------------------------------------- */
.stats {
  padding: 0.5rem 0 1.5rem;
}

.stats__list {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-panel);
  border: 1px solid rgba(62, 203, 255, 0.28);
  background: rgba(10, 12, 22, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.1), 0 0 36px rgba(62, 203, 255, 0.08);
}
@media (min-width: 720px) {
  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1020px) {
  .stats__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
  }
}

.stats__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.stats__item i {
  flex-shrink: 0;
  font-size: 2.07rem; /* +1/3 vs 1.55rem */
  margin-top: 0.1rem;
}
.stats__item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.stats__item strong {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* Highlights: New in 2026                                                    */
/* -------------------------------------------------------------------------- */
.highlights {
  padding: 0.5rem 0 clamp(3rem, 6vw, 4.5rem);
}

.highlights__new {
  display: grid;
  gap: 1.35rem;
  padding: 1.5rem 1.5rem 1.65rem;
}
@media (min-width: 980px) {
  .highlights__new {
    grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.6fr);
    align-items: center;
    gap: 2rem;
    padding: 1.65rem 1.85rem;
  }
}

.highlights__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.highlights__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 28rem;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}
@media (min-width: 560px) {
  .format-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .format-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}
@media (min-width: 1100px) {
  .format-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.format-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.75rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  min-height: 100%;
}
.format-grid i {
  font-size: 1.67rem;
}

/* ==========================================================================
   Section 2 (w2.png) — Two Days
   ========================================================================== */
.days {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  position: relative;
}

.days__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.days__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient-tagline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.days__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.days__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.days__split {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
@media (min-width: 980px) {
  .days__split {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}

.day-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(10, 12, 22, 0.72);
  border: 1px solid var(--color-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.day-card--1 {
  border-radius: 22px 22px 22px 22px;
  box-shadow: 0 0 0 1px rgba(0, 219, 255, 0.2), 0 0 42px rgba(173, 0, 255, 0.16);
}
@media (min-width: 980px) {
  .day-card--1 {
    grid-column: 1;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    border-radius: 22px 8px 8px 22px;
  }
}

.day-card--2 {
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(184, 255, 46, 0.22), 0 0 42px rgba(184, 255, 46, 0.12);
}
@media (min-width: 980px) {
  .day-card--2 {
    grid-column: 2;
    justify-self: stretch;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 8px 22px 22px 8px;
  }
}
.day-card--2 .day-card__body {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.day-card--2 .day-card__list {
  width: 100%;
}
.day-card--2 .day-card__list li {
  flex-direction: row-reverse;
  text-align: right;
}

.day-card__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.day-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.day-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 10, 18, 0.92) 100%);
}

.day-card--1 .day-card__media::after {
  box-shadow: inset 0 0 0 1px rgba(0, 219, 255, 0.15);
}

.day-card--2 .day-card__media::after {
  box-shadow: inset 0 0 0 1px rgba(184, 255, 46, 0.15);
}

.day-card__body {
  padding: 1.15rem 1.25rem 1.4rem;
}

.day-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.day-card--1 .day-card__badge {
  color: #f3e8ff;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.25);
}

.day-card--2 .day-card__badge {
  color: #081018;
  background: var(--color-neon-green);
  border: 1px solid var(--color-neon-green);
  box-shadow: 0 0 14px rgba(184, 255, 46, 0.35);
}

.day-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.day-card--1 .day-card__name {
  background: linear-gradient(90deg, #00dbff, #ad00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.day-card--2 .day-card__name {
  background: linear-gradient(90deg, #e8ff6a, #b8ff2e 40%, #7dff3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.day-card__date {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}

.day-card__script {
  margin: 0 0 1.15rem;
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
}

.day-card--1 .day-card__script {
  color: #d8b4fe;
}

.day-card--2 .day-card__script {
  color: var(--color-neon-green);
}

.day-card__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 420px) {
  .day-card__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }
}
.day-card__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.day-card__list i {
  font-size: 1.35rem; /* ~ +1/3 vs base list icons */
  flex-shrink: 0;
}

.days__bridge {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  /* Mobile: między kartami, lekko nachodzi na obie */
  margin-block: -1.75rem;
  padding: 0;
}
@media (min-width: 980px) {
  .days__bridge {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: clamp(16.5rem, 28vw, 22rem);
    /* nie zajmuje kolumny siatki — Day 2 zostaje po prawej */
    grid-column: 1/-1;
    grid-row: 1;
  }
}

.days__arrow {
  position: relative;
  width: clamp(12rem, 52vw, 15rem);
  aspect-ratio: 220/100;
  display: grid;
  place-items: center;
  transform: rotate(90deg);
  animation: days-arrow-pulse-vertical 2.8s ease-in-out infinite;
}
@media (min-width: 980px) {
  .days__arrow {
    width: 100%;
    transform: none;
    animation-name: days-arrow-pulse;
  }
}

.days__arrow-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(173, 0, 255, 0.5)) drop-shadow(0 0 14px rgba(0, 219, 255, 0.4)) drop-shadow(0 0 10px rgba(184, 255, 46, 0.32));
}

.days__arrow-path {
  vector-effect: non-scaling-stroke;
}

.days__arrow-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  margin-right: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.35vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-90deg);
}
@media (min-width: 980px) {
  .days__arrow-label {
    transform: none;
  }
}

.days__arrow-word--in {
  color: #c44dff;
  text-shadow: 0 0 10px rgba(173, 0, 255, 0.75);
}

.days__arrow-word--sep {
  color: #00dbff;
  text-shadow: 0 0 10px rgba(0, 219, 255, 0.8);
  font-size: 1.15em;
}

.days__arrow-word--out {
  color: #b8ff2e;
  text-shadow: 0 0 10px rgba(184, 255, 46, 0.75);
}

.days__arrow-pixels {
  position: absolute;
  left: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 2.8rem;
  pointer-events: none;
  z-index: 2;
}
.days__arrow-pixels span {
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 1px;
  background: #00dbff;
  box-shadow: 0 0 8px rgba(0, 219, 255, 0.9);
}
.days__arrow-pixels span:nth-child(1) {
  left: 0.15rem;
  top: 0.2rem;
  opacity: 0.95;
  animation: pixel-flicker 2.2s ease-in-out infinite;
}
.days__arrow-pixels span:nth-child(2) {
  left: 0.65rem;
  top: 0.6rem;
  width: 0.22rem;
  height: 0.22rem;
  opacity: 0.7;
  animation: pixel-flicker 1.8s ease-in-out 0.3s infinite;
}
.days__arrow-pixels span:nth-child(3) {
  left: 0.05rem;
  top: 1.2rem;
  background: #7b5cff;
  box-shadow: 0 0 8px rgba(173, 0, 255, 0.85);
  animation: pixel-flicker 2.6s ease-in-out 0.15s infinite;
}
.days__arrow-pixels span:nth-child(4) {
  left: 0.85rem;
  top: 1.55rem;
  width: 0.2rem;
  height: 0.2rem;
  opacity: 0.65;
  animation: pixel-flicker 2s ease-in-out 0.5s infinite;
}
.days__arrow-pixels span:nth-child(5) {
  left: 0.35rem;
  top: 2.15rem;
  background: #3ecbff;
  animation: pixel-flicker 2.4s ease-in-out 0.7s infinite;
}
@media (max-width: 979px) {
  .days__arrow-pixels {
    left: 50%;
    top: -0.25rem;
    transform: translateX(-50%) rotate(-90deg);
  }
}

@keyframes days-arrow-pulse {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
@keyframes days-arrow-pulse-vertical {
  0%, 100% {
    transform: rotate(90deg) translateX(0);
  }
  50% {
    transform: rotate(90deg) translateX(6px);
  }
}
@keyframes pixel-flicker {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}
.days__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 1.15rem 1.35rem;
}

.days__cta-copy {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.days__cta-copy > i {
  font-size: 1.85rem;
  flex-shrink: 0;
}

.days__cta-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.days__cta-sub {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.btn--explore {
  padding: 0.9rem 1.45rem;
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(90deg, #00c2ff, #3dffb0 55%, #b8ff2e);
  box-shadow: 0 0 28px rgba(0, 194, 255, 0.28);
}
.btn--explore i {
  color: #fff;
}

/* ==========================================================================
   Section 3 (w3.png) — Why / Maybe you're here because
   ========================================================================== */
.why {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
}

.why__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1040px) {
  .why__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0;
    align-items: center;
  }
}

.why__content {
  position: relative;
  z-index: 2;
}

.why__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient-tagline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.why__num {
  display: inline-flex;
  align-items: center;
}
.why__num::after {
  content: "—";
  margin-left: 0.55rem;
  opacity: 0.85;
}

.why__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.why__title-accent {
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.why__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.why-cards {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .why-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1rem 1rem;
  border-radius: 14px;
  background: rgba(10, 12, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
}
.why-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.why-card p {
  margin: 0;
  flex: 1;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.why-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.why-card a:hover {
  gap: 0.55rem;
}

.why-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}
.why-card__top i {
  font-size: 1.45rem;
}
.why-card__top span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.why-card--purple {
  border-color: rgba(173, 0, 255, 0.55);
  box-shadow: 0 0 22px rgba(173, 0, 255, 0.12);
}
.why-card--purple a {
  color: #c44dff;
}
.why-card--purple:hover {
  box-shadow: 0 0 28px rgba(173, 0, 255, 0.22);
}

.why-card--blue {
  border-color: rgba(0, 219, 255, 0.5);
  box-shadow: 0 0 22px rgba(0, 219, 255, 0.1);
}
.why-card--blue a {
  color: #00dbff;
}
.why-card--blue:hover {
  box-shadow: 0 0 28px rgba(0, 219, 255, 0.2);
}

.why-card--teal {
  border-color: rgba(62, 203, 255, 0.45);
  box-shadow: 0 0 22px rgba(62, 203, 255, 0.1);
}
.why-card--teal a {
  color: #3ecbff;
}

.why-card--green {
  border-color: rgba(184, 255, 46, 0.5);
  box-shadow: 0 0 22px rgba(184, 255, 46, 0.1);
}
.why-card--green a {
  color: var(--color-neon-green);
}
.why-card--green:hover {
  box-shadow: 0 0 28px rgba(184, 255, 46, 0.2);
}

.why-card--lime {
  border-color: rgba(232, 255, 106, 0.45);
  box-shadow: 0 0 22px rgba(184, 255, 46, 0.08);
}
.why-card--lime a {
  color: #d4ff4f;
}

.why-card--magenta {
  border-color: rgba(196, 77, 255, 0.5);
  box-shadow: 0 0 22px rgba(196, 77, 255, 0.1);
}
.why-card--magenta a {
  color: #d084ff;
}

.why__closing {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}

.why__closing-script {
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #e8ecf8;
}

.why__closing-line {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Collage */
.why__visual {
  position: relative;
  z-index: 0;
  min-height: 22rem;
}
@media (min-width: 1040px) {
  .why__visual {
    min-height: 34rem;
    width: 128%;
    margin-left: -28%;
    justify-self: end;
  }
}

.why__frame {
  position: relative;
  height: 100%;
  min-height: inherit;
  padding: 0.85rem;
  opacity: 0.5;
  border-radius: 8px 22px 22px 22px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 14%);
  border: 2px solid transparent;
  background: linear-gradient(rgba(8, 10, 18, 0.35), rgba(8, 10, 18, 0.35)) padding-box, linear-gradient(160deg, #ad00ff, #00dbff 55%, #3ecbff) border-box;
  box-shadow: 0 0 32px rgba(173, 0, 255, 0.25), 0 0 40px rgba(0, 219, 255, 0.15);
}

.why__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: 1.1fr 0.85fr 1fr;
  gap: 0.45rem;
  height: 100%;
  min-height: inherit;
}

.why__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why__shot--a {
  grid-column: 1;
  grid-row: 1/3;
  object-position: center 25%;
}

.why__shot--b {
  grid-column: 2;
  grid-row: 1;
}

.why__shot--c {
  grid-column: 2;
  grid-row: 2;
}

.why__shot--d {
  grid-column: 1;
  grid-row: 3;
}

.why__shot--e {
  grid-column: 2;
  grid-row: 3;
}

.why__badge {
  position: absolute;
  right: 8%;
  bottom: 18%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(5.5rem, 12vw, 7rem);
  height: clamp(5.5rem, 12vw, 7rem);
  border-radius: 50%;
  background: var(--color-neon-green);
  color: #081018;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  padding: 0.75rem;
  box-shadow: 0 0 28px rgba(184, 255, 46, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-8deg);
  animation: why-badge-pop 3.2s ease-in-out infinite;
}

.why__pixel {
  position: absolute;
  width: 0.35rem;
  height: 0.35rem;
  background: #00dbff;
  box-shadow: 0 0 10px rgba(0, 219, 255, 0.9);
  z-index: 3;
  animation: pixel-flicker 2.2s ease-in-out infinite;
}
.why__pixel--1 {
  top: 6%;
  left: 2%;
}
.why__pixel--2 {
  top: 22%;
  right: -0.2rem;
  background: #ad00ff;
  box-shadow: 0 0 10px rgba(173, 0, 255, 0.9);
  animation-delay: 0.4s;
}
.why__pixel--3 {
  bottom: 12%;
  left: -0.15rem;
  width: 0.28rem;
  height: 0.28rem;
  animation-delay: 0.8s;
}

@keyframes why-badge-pop {
  0%, 100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(-6deg) scale(1.04);
  }
}
/* ==========================================================================
   Section 4 (w4.png) — Community + Stories + Carousel
   ========================================================================== */
.stories {
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
}

.stories__head {
  margin-bottom: 2.25rem;
}

.stories__intro {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.stories__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient-tagline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stories__eyebrow span::after {
  content: "—";
  margin-left: 0.5rem;
}

.stories__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.stories__title-accent {
  display: inline;
  background: linear-gradient(90deg, #b8ff2e, #00dbff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stories__script {
  margin: 0 0 0.85rem;
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #e8ecf8;
}

.stories__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Carousel */
.carousel {
  position: relative;
  margin-bottom: 2.25rem;
  padding-inline: clamp(2.5rem, 4vw, 3.25rem);
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel__nav {
  position: absolute;
  top: calc(50% - 2.5rem);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 219, 255, 0.45);
  background: rgba(8, 10, 18, 0.85);
  color: #00dbff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0, 219, 255, 0.2);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.carousel__nav:hover:not(:disabled) {
  border-color: var(--color-neon-green);
  color: var(--color-neon-green);
  box-shadow: 0 0 20px rgba(184, 255, 46, 0.25);
}
.carousel__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.carousel__nav--prev {
  left: 0;
}
.carousel__nav--next {
  right: 0;
}

.story-card {
  --story-accent: #ad00ff;
  flex: 0 0 calc((100% - 2rem) / 3);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 14rem;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 12, 22, 0.8);
  border: 1px solid color-mix(in srgb, var(--story-accent) 55%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--story-accent) 18%, transparent);
}
@media (max-width: 899px) {
  .story-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 639px) {
  .story-card {
    flex-basis: 100%;
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.story-card .media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 14rem;
}

.story-card--purple {
  --story-accent: #ad00ff;
}

.story-card--blue {
  --story-accent: #00dbff;
}

.story-card--green {
  --story-accent: #b8ff2e;
}

.story-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.1rem;
}

.story-card__quote {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--story-accent);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--story-accent) 55%, transparent));
  margin-bottom: 0.35rem;
}

.story-card blockquote {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
}

.story-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--story-accent);
}

.story-card__role {
  margin: 0.15rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.story-card__li {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  color: var(--story-accent);
  font-size: 1.05rem;
  transition: transform var(--transition);
}
.story-card__li:hover {
  transform: scale(1.1);
}

/* Journey */
.journey {
  padding: 1.35rem 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}

.journey__title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.journey__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.journey__steps > li:not(.journey__sep) {
  flex: 1 1 7.5rem;
  max-width: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.journey__steps > li:not(.journey__sep) i {
  font-size: 3.1rem; /* 2× vs 1.55rem */
  margin-bottom: 0.15rem;
}
.journey__steps > li:not(.journey__sep) strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}
.journey__steps > li:not(.journey__sep) span {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.journey__sep {
  display: none;
  align-self: center;
  color: rgba(0, 219, 255, 0.55);
  font-size: 1rem;
  padding-top: 0.35rem;
}
@media (min-width: 900px) {
  .journey__sep {
    display: block;
  }
}

/* Impact */
.impact {
  margin-bottom: 1.75rem;
}

.impact__title {
  margin: 0 0 1.15rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact__list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 22, 0.55);
}
@media (min-width: 700px) {
  .impact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .impact__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}
.impact__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.impact__list li > i {
  font-size: 1.76rem; /* ~+30% vs 1.35rem */
  margin-top: 0.15rem;
}
.impact__list li span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.impact__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.impact__value--purple {
  color: #c44dff;
  text-shadow: 0 0 14px rgba(173, 0, 255, 0.45);
}
.impact__value--blue {
  color: #00dbff;
  text-shadow: 0 0 14px rgba(0, 219, 255, 0.45);
}
.impact__value--green {
  color: var(--color-neon-green);
  text-shadow: 0 0 14px rgba(184, 255, 46, 0.4);
}

/* Stories CTA bar */
.stories-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1rem 1.25rem;
}

.stories-cta__copy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1 1 16rem;
}
.stories-cta__copy > i {
  font-size: 1.55rem;
  flex-shrink: 0;
}

.stories-cta__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #b8ff2e, #00dbff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stories-cta__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.btn--outline-cta {
  padding: 0.8rem 1.25rem;
  font-size: 0.72rem;
  color: var(--color-text);
  border: 1px solid transparent;
  background: linear-gradient(rgba(8, 10, 18, 0.92), rgba(8, 10, 18, 0.92)) padding-box, var(--gradient-cta) border-box;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}
.btn--outline-cta i {
  color: var(--color-neon-green);
}

/* ==========================================================================
   Section 5 (w5.png) — Who's Speaking
   ========================================================================== */
.speakers {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.speakers__top {
  display: grid;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1040px) {
  .speakers__top {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
  }
}

.speakers__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00dbff;
}

.speakers__num {
  color: #c44dff;
}
.speakers__num::after {
  content: "—";
  margin-left: 0.5rem;
  color: #00dbff;
}

.speakers__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.speakers__title-accent {
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.speakers__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.speakers-stats {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 520px) {
  .speakers-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .speakers-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.speakers-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 0.9rem;
  border-radius: 12px;
  background: rgba(10, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.speakers-stats__item i {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}
.speakers-stats__item strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.speakers-stats__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.speakers-stats__hint {
  font-size: 0.78rem;
}

.speakers-stats__item--purple {
  border-color: rgba(173, 0, 255, 0.45);
  box-shadow: 0 0 18px rgba(173, 0, 255, 0.1);
}
.speakers-stats__item--purple .speakers-stats__hint {
  color: #c44dff;
}

.speakers-stats__item--blue {
  border-color: rgba(0, 219, 255, 0.45);
  box-shadow: 0 0 18px rgba(0, 219, 255, 0.1);
}
.speakers-stats__item--blue .speakers-stats__hint {
  color: #00dbff;
}

.speakers-stats__item--green {
  border-color: rgba(184, 255, 46, 0.45);
  box-shadow: 0 0 18px rgba(184, 255, 46, 0.1);
}
.speakers-stats__item--green .speakers-stats__hint {
  color: var(--color-neon-green);
}

.speakers-stats__item--teal {
  border-color: rgba(62, 203, 255, 0.45);
  box-shadow: 0 0 18px rgba(62, 203, 255, 0.1);
}
.speakers-stats__item--teal .speakers-stats__hint {
  color: #3ecbff;
}

.speakers-feature {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .speakers-feature {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.speakers-feature__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.speakers-feature__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}

.speakers-feature__glow {
  position: absolute;
  inset: auto auto -2px -2px;
  width: 55%;
  height: 45%;
  border-left: 3px solid #ad00ff;
  border-bottom: 3px solid #ff4fd8;
  border-radius: 0 0 0 18px;
  box-shadow: -6px 6px 24px rgba(173, 0, 255, 0.45), inset 0 0 18px rgba(255, 79, 216, 0.15);
  pointer-events: none;
}

.speakers-feature__badge {
  position: absolute;
  top: 10%;
  right: 6%;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-neon-green);
  text-shadow: 0 0 18px rgba(184, 255, 46, 0.65);
  transform: rotate(-6deg);
}

.speakers-feature__quote i {
  font-size: 1.85rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.speakers-feature__quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.45;
  font-style: italic;
  font-weight: 500;
}

.speakers-feature__name {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.speakers-feature__role {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.speakers-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.95rem 1.2rem;
  margin-bottom: 1.75rem;
}

.speakers-banner__copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.speakers-banner__copy i {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.speakers-banner__copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.speakers-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6ad5;
  white-space: nowrap;
}
.speakers-banner__link:hover {
  color: #ff8ae0;
}

.speakers-include {
  width: 100%;
  margin-bottom: 1.75rem;
  text-align: center;
}

.speakers-include__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.speakers-include__grid {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0 auto 1.25rem;
  padding: 0;
  width: 100%;
  text-align: left;
}
@media (min-width: 520px) {
  .speakers-include__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 800px) {
  .speakers-include__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.speaker-tile {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 12, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.speaker-tile:hover {
  transform: translateY(-3px);
}
.speaker-tile img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 18%;
}

.speaker-tile__name {
  margin: 0.7rem 0.7rem 0.15rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.speaker-tile__role {
  margin: 0 0.7rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
}

.speaker-tile__company {
  margin: 0.55rem 0.7rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.speaker-tile--purple {
  border-color: rgba(173, 0, 255, 0.35);
}
.speaker-tile--purple .speaker-tile__name {
  color: #c44dff;
}
.speaker-tile--purple:hover {
  box-shadow: 0 0 22px rgba(173, 0, 255, 0.18);
}

.speaker-tile--blue {
  border-color: rgba(0, 219, 255, 0.35);
}
.speaker-tile--blue .speaker-tile__name {
  color: #00dbff;
}
.speaker-tile--blue:hover {
  box-shadow: 0 0 22px rgba(0, 219, 255, 0.16);
}

.speaker-tile--green {
  border-color: rgba(184, 255, 46, 0.35);
}
.speaker-tile--green .speaker-tile__name {
  color: var(--color-neon-green);
}
.speaker-tile--green:hover {
  box-shadow: 0 0 22px rgba(184, 255, 46, 0.16);
}

.speaker-tile--teal {
  border-color: rgba(62, 203, 255, 0.35);
}
.speaker-tile--teal .speaker-tile__name {
  color: #3ecbff;
}

.speaker-tile--magenta {
  border-color: rgba(255, 106, 213, 0.35);
}
.speaker-tile--magenta .speaker-tile__name {
  color: #ff6ad5;
}

.speakers-include__cta {
  display: flex;
  justify-content: center;
}

.btn--speakers {
  padding: 0.85rem 1.35rem;
  font-size: 0.75rem;
  color: var(--color-text);
  border: 1px solid rgba(173, 0, 255, 0.55);
  background: rgba(8, 10, 18, 0.85);
  box-shadow: 0 0 20px rgba(173, 0, 255, 0.18);
}
.btn--speakers i {
  color: #ff6ad5;
}
.btn--speakers:hover {
  border-color: #ff6ad5;
}

/* ==========================================================================
   Section 6 (w6.png) — Our Partners
   ========================================================================== */
.partners {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}

.partners__top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 980px) {
  .partners__top {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
  }
}

.partners__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-neon-green);
}

.partners__num {
  color: #c44dff;
}
.partners__num::after {
  content: "—";
  margin-left: 0.5rem;
  color: var(--color-neon-green);
}

.partners__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.partners__title-accent {
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.partners__lead {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 34rem;
}

.partners__callout {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--color-neon-green);
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34rem;
  box-shadow: -4px 0 16px rgba(184, 255, 46, 0.15);
}

.partners-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 18rem;
}

.partners-hero__img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.9) contrast(1.05);
}

.partners-hero__powered {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.partners-hero__script {
  position: absolute;
  left: 1rem;
  bottom: 1.25rem;
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #dbeafe;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.partners-hero__card {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: 9.5rem;
  padding: 0.85rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--color-text-muted);
  border-color: rgba(0, 219, 255, 0.35);
}

.partners__pixel {
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  background: #00dbff;
  box-shadow: 0 0 10px rgba(0, 219, 255, 0.9);
  z-index: 2;
  animation: pixel-flicker 2.2s ease-in-out infinite;
}
.partners__pixel--1 {
  top: 12%;
  right: -0.1rem;
}
.partners__pixel--2 {
  bottom: 18%;
  left: -0.1rem;
  background: #ad00ff;
  box-shadow: 0 0 10px rgba(173, 0, 255, 0.9);
  animation-delay: 0.5s;
}

.partners-strategic {
  margin-bottom: 2.25rem;
}

.partners-strategic__label {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-neon-green);
}

.partners-strategic__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-color: rgba(0, 219, 255, 0.28);
}

.partners-strategic__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.partners-strategic__logos li {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.partners-strategic__more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.partners-strategic__plus {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  border: 1px solid rgba(184, 255, 46, 0.5);
  color: var(--color-neon-green);
  font-weight: 700;
  box-shadow: 0 0 14px rgba(184, 255, 46, 0.2);
}

.media-placeholder {
  display: grid;
  place-items: center;
  background: #000;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

.partners-cta {
  display: grid;
  gap: 1.5rem;
  padding: 1.35rem 1.35rem 1.45rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
@media (min-width: 1100px) {
  .partners-cta {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

.partners-cta__features {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .partners-cta__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}
@media (min-width: 900px) {
  .partners-cta__features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.5rem;
  }
}
.partners-cta__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.7rem;
  min-height: 100%;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}
.partners-cta__features li i {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  font-size: 2.35rem; /* wyraźnie większe */
  line-height: 1;
  flex-shrink: 0;
}
.partners-cta__features li span {
  display: block;
  max-width: 11.5rem;
}

.partners-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  min-width: min(100%, 15.5rem);
}
@media (max-width: 1099px) {
  .partners-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
}
.partners-cta__actions > .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 1099px) {
  .partners-cta__actions > .btn {
    width: auto;
    min-width: 13rem;
  }
}

.partners-cta__become {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
}
@media (max-width: 1099px) {
  .partners-cta__become {
    width: auto;
    min-width: 13rem;
  }
}
.partners-cta__become .btn {
  width: 100%;
  justify-content: center;
}
.partners-cta__become p {
  margin: 0;
  max-width: 15rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}

.partners-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding-top: 0.5rem;
}

.partners-foot__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #ad00ff;
  box-shadow: 0 6px 16px rgba(173, 0, 255, 0.2);
}

.partners-foot__tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  flex: 1 1 14rem;
}
.partners-foot__tag .is-cyan {
  color: #00dbff;
}
.partners-foot__tag .is-green {
  color: var(--color-neon-green);
}

.partners-foot__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00dbff, #7b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Section 7 (w7.png) — Beyond the Event
   ========================================================================== */
.beyond {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.beyond__top {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 900px) {
  .beyond__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .beyond__top {
    grid-template-columns: 0.9fr 1.15fr 0.95fr;
    align-items: stretch;
  }
}

.beyond__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.beyond__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.beyond__num {
  color: #c44dff;
}
.beyond__num::after {
  content: "—";
  margin-left: 0.5rem;
  color: var(--color-text-muted);
}

.beyond__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.beyond__title-accent {
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.beyond__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 28rem;
}

.beyond-map {
  padding: 1.15rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

/* Research box — fills full cell */
.beyond-research {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 18rem;
  padding: 1.35rem 1.25rem 1.15rem;
  border-color: rgba(0, 219, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(173, 0, 255, 0.08), 0 0 36px rgba(0, 219, 255, 0.08);
}

.beyond-research__head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-shrink: 0;
}

.beyond-research__title,
.beyond-map__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.beyond-research__title span {
  display: inline;
  background: linear-gradient(90deg, #ad00ff, #00dbff 45%, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.beyond-map__title span {
  color: var(--color-neon-green);
}

.beyond-research__context {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.beyond-donuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0;
  padding: 1.25rem 0;
  flex: 1 1 auto;
  align-content: center;
  align-items: start;
}
.beyond-donuts li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.7rem;
  height: 100%;
}
.beyond-donuts p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.74rem;
  line-height: 1.35;
  max-width: 9.5rem;
}

.beyond-donut {
  --value: 90;
  --donut-color: #ad00ff;
  position: relative;
  width: clamp(4.75rem, 8vw, 5.75rem);
  height: clamp(4.75rem, 8vw, 5.75rem);
  border-radius: 50%;
  background: conic-gradient(var(--donut-color) calc(var(--value) * 1%), rgba(255, 255, 255, 0.08) 0);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--donut-color) 35%, transparent), 0 0 22px color-mix(in srgb, var(--donut-color) 40%, transparent);
}
.beyond-donut::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #0c101c, #080a12);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.beyond-donut span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.beyond-donut--purple {
  --donut-color: #ad00ff;
}
.beyond-donut--blue {
  --donut-color: #00dbff;
}
.beyond-donut--green {
  --donut-color: #b8ff2e;
}

.beyond-research__note {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  line-height: 1.35;
  flex-shrink: 0;
}

.beyond-map__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.beyond-map__visual {
  position: relative;
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(0, 219, 255, 0.25);
  box-shadow: 0 0 24px rgba(0, 219, 255, 0.12);
}
.beyond-map__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.75) contrast(1.1);
}

.beyond-map__pin {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #00dbff;
  box-shadow: 0 0 12px rgba(0, 219, 255, 0.9);
  animation: pixel-flicker 2.4s ease-in-out infinite;
}
.beyond-map__pin--1 {
  top: 38%;
  left: 48%;
}
.beyond-map__pin--2 {
  top: 42%;
  left: 52%;
  animation-delay: 0.3s;
}
.beyond-map__pin--3 {
  top: 48%;
  left: 45%;
  animation-delay: 0.6s;
}
.beyond-map__pin--4 {
  top: 55%;
  left: 58%;
  width: 0.4rem;
  height: 0.4rem;
  animation-delay: 0.9s;
}
.beyond-map__pin--5 {
  top: 35%;
  left: 40%;
  width: 0.35rem;
  height: 0.35rem;
  background: #b8ff2e;
  box-shadow: 0 0 12px rgba(184, 255, 46, 0.85);
  animation-delay: 1.1s;
}

.beyond-cards {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .beyond-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .beyond-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .beyond-cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.beyond-card {
  --card-accent: #ad00ff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 12, 22, 0.85);
  border: 1px solid color-mix(in srgb, var(--card-accent) 45%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--card-accent) 12%, transparent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.beyond-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px color-mix(in srgb, var(--card-accent) 22%, transparent);
}

.beyond-card--purple {
  --card-accent: #ad00ff;
}

.beyond-card--blue {
  --card-accent: #00dbff;
}

.beyond-card--green {
  --card-accent: #b8ff2e;
}

.beyond-card--teal {
  --card-accent: #3ecbff;
}

.beyond-card--magenta {
  --card-accent: #ff6ad5;
}

.beyond-card--lime {
  --card-accent: #d4ff4f;
}

.beyond-card__media {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.beyond-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 10, 18, 0.92) 100%);
}

.beyond-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 0.9rem 1.05rem;
  flex: 1;
}
.beyond-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}
.beyond-card__body > p:not(.beyond-card__label) {
  margin: 0;
  flex: 1;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.beyond-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-accent);
}
.beyond-card__body a:hover {
  gap: 0.5rem;
}

.beyond-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.beyond-card__label i {
  font-size: 1.05rem;
}

.beyond-eco {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 1.25rem;
  align-items: center;
}
@media (min-width: 900px) {
  .beyond-eco {
    grid-template-columns: 1fr 1.4fr auto;
    gap: 1.5rem;
  }
}

.beyond-eco__motto {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.beyond-eco__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #ad00ff, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.beyond-eco__line {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.beyond-eco__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 700px) {
  .beyond-eco__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.beyond-eco__stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.beyond-eco__stats li i {
  font-size: 1.45rem;
  margin-bottom: 0.15rem;
}
.beyond-eco__stats li strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}
.beyond-eco__stats li span {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.btn--eco {
  white-space: nowrap;
  justify-self: start;
}
@media (min-width: 900px) {
  .btn--eco {
    justify-self: end;
  }
}

/* ==========================================================================
   Section 8 (w8.png) — Final CTA + Footer
   ========================================================================== */
.final-cta {
  position: relative;
  min-height: clamp(28rem, 62vh, 36rem);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.45) saturate(0.85);
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 8, 0.96) 0%, rgba(5, 5, 8, 0.82) 42%, rgba(5, 5, 8, 0.35) 72%, rgba(5, 5, 8, 0.45) 100%), linear-gradient(180deg, rgba(173, 0, 255, 0.12), transparent 40%, rgba(0, 219, 255, 0.08));
}

.final-cta__streak {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ad00ff, #00dbff, transparent);
  box-shadow: 0 0 20px rgba(0, 219, 255, 0.55);
  transform: rotate(-12deg);
  opacity: 0.7;
}

.final-cta__pixel {
  position: absolute;
  width: 0.35rem;
  height: 0.35rem;
  background: #00dbff;
  box-shadow: 0 0 10px rgba(0, 219, 255, 0.9);
  animation: pixel-flicker 2.2s ease-in-out infinite;
  z-index: 1;
}
.final-cta__pixel--1 {
  top: 22%;
  right: 28%;
}
.final-cta__pixel--2 {
  top: 48%;
  right: 18%;
  background: #ad00ff;
  box-shadow: 0 0 10px rgba(173, 0, 255, 0.9);
  animation-delay: 0.4s;
}
.final-cta__pixel--3 {
  bottom: 28%;
  right: 34%;
  background: #b8ff2e;
  box-shadow: 0 0 10px rgba(184, 255, 46, 0.85);
  animation-delay: 0.8s;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.final-cta__script {
  margin: 0 0 0.65rem;
  font-family: var(--font-script);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(90deg, #ad00ff, #00dbff 50%, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.final-cta__script::after {
  content: "";
  display: block;
  width: 72%;
  height: 3px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ad00ff, #b8ff2e);
  box-shadow: 0 0 12px rgba(184, 255, 46, 0.45);
}

.final-cta__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.final-cta__title-accent {
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.final-cta__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 0;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.final-cta__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}
.final-cta__meta li:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.final-cta__meta li i {
  font-size: 1.15rem;
}
.final-cta__meta li .is-cyan {
  color: #00dbff;
}
.final-cta__meta li .is-green {
  color: var(--color-neon-green);
}

/* Footer */
.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #06070c;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.site-footer__row {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 720px) {
  .site-footer__row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 22rem;
}
.site-footer__brand .logo {
  height: 3.25rem;
  max-width: 16rem;
}

.site-footer__desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.text-gradient-soft {
  background: linear-gradient(90deg, #00dbff, #b8ff2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.site-footer__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer__heading--purple {
  color: #c44dff;
}
.site-footer__heading--green {
  color: #3ecbff;
}
.site-footer__heading--lime {
  color: var(--color-neon-green);
}

.site-footer__social-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .site-footer__social-wrap {
    align-items: flex-end;
    text-align: right;
  }
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.site-footer__social a.is-purple {
  color: #c44dff;
  border-color: rgba(196, 77, 255, 0.4);
}
.site-footer__social a.is-purple:hover {
  box-shadow: 0 0 14px rgba(173, 0, 255, 0.35);
}
.site-footer__social a.is-cyan {
  color: #00dbff;
  border-color: rgba(0, 219, 255, 0.4);
}
.site-footer__social a.is-cyan:hover {
  box-shadow: 0 0 14px rgba(0, 219, 255, 0.35);
}
.site-footer__social a.is-blue {
  color: #3ecbff;
  border-color: rgba(62, 203, 255, 0.4);
}
.site-footer__social a.is-blue:hover {
  box-shadow: 0 0 14px rgba(62, 203, 255, 0.35);
}
.site-footer__social a.is-green {
  color: var(--color-neon-green);
  border-color: rgba(184, 255, 46, 0.4);
}
.site-footer__social a.is-green:hover {
  box-shadow: 0 0 14px rgba(184, 255, 46, 0.3);
}

.site-footer__copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bar,
  .hero__shot,
  .days__arrow,
  .days__arrow-pixels span,
  .why__badge,
  .why__pixel,
  .carousel__track,
  .partners__pixel,
  .final-cta__pixel {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/*# sourceMappingURL=style.css.map */
