:root{
  --bg:#060812;
  --bg2:#090C1B;
  --text:#EEF1FF;
  --muted:#A9B2CC;
  --line: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.04);
  --shadow: 0 28px 90px rgba(0,0,0,0.55);
  --r: 22px;
  --surface-radius: 24px;
  --surface-radius-sm: 16px;
  --surface-pad: 22px;
  --surface-border: 1px solid rgba(255,255,255,0.1);
  --surface-shadow: 0 20px 56px rgba(2,8,24,0.34);
  --surface-bg:
    radial-gradient(140% 130% at 0% 0%, rgba(124,92,255,0.12), transparent 58%),
    radial-gradient(130% 120% at 100% 0%, rgba(42,168,255,0.08), transparent 56%),
    linear-gradient(180deg, rgba(15,19,36,0.86), rgba(8,12,24,0.94));
  --surface-bg-strong:
    radial-gradient(140% 130% at 0% 0%, rgba(124,92,255,0.18), transparent 56%),
    radial-gradient(130% 120% at 100% 0%, rgba(42,168,255,0.12), transparent 54%),
    linear-gradient(180deg, rgba(16,21,40,0.9), rgba(8,12,24,0.97));
  --header-h: 0px;
  --stage-steps: 5;
  --stage-step: 90vh;
  --stage-pad: 120px;
  --stage-stick-top: var(--header-h);

  --a1:#7C5CFF;
  --a2:#2AA8FF;
  --slides-steps: 6;
  --slides-step: 85vh;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(1200px 900px at 20% 10%, rgba(124,92,255,0.18), transparent 55%),
    radial-gradient(1000px 800px at 80% 30%, rgba(42,168,255,0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  letter-spacing: -0.015em;
}
body.is-menu-open{ overflow:hidden; }
body.is-modal-open{ overflow:hidden; }
body.is-return-modal-open{ overflow:hidden; }

a{ color:inherit; text-decoration:none; }
a:focus{ outline:2px solid rgba(124,92,255,0.65); outline-offset: 3px; border-radius: 10px; }

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

/* Header: logo left, menu center, donate right */
.header{
  position: sticky;
  top:0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6,8,18,0.55);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding: 18px 0;
  gap: 16px;
}
.header__actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap: 10px;
}
.menu-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  align-items:center;
  justify-content:center;
  gap: 4px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.menu-toggle:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.menu-toggle__bar{
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  display:block;
  transition: transform 220ms ease, opacity 200ms ease;
}

.mobile-menu{
  display:none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--header-h);
  background: rgba(6,8,18,0.58);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 35;
}
.mobile-menu__panel{
  position: absolute;
  left: 16px;
  right: 16px;
  top: 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(8,10,20,0.96);
  box-shadow: var(--shadow);
  padding: 18px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  max-height: calc(100vh - var(--header-h) - 32px);
  overflow: auto;
}
.mobile-nav{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.mobile-nav .nav__link{
  justify-content:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 16px;
}
.mobile-menu__actions{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}

body.is-menu-open .mobile-menu{
  opacity: 1;
  pointer-events: auto;
}
body.is-menu-open .mobile-menu__panel{
  opacity: 1;
  transform: translateY(0);
}
body.is-menu-open .menu-toggle__bar:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
body.is-menu-open .menu-toggle__bar:nth-child(2){
  opacity: 0;
}
body.is-menu-open .menu-toggle__bar:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}
.logo{
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 18px;
  display:flex;
  align-items:center;
}
.logo img{
  height: 26px;
  width: auto;
  display:block;
}
.nav{
  display:flex;
  justify-content:center;
  gap: 22px;
}
.nav__link{
  color: var(--muted);
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}
.nav__link:hover{ background: rgba(255,255,255,0.06); color: var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 720;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn--primary{
  border: 0;
  padding: 13px 17px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(42,168,255,0.85));
  color: #0B0F1C;
  box-shadow: 0 14px 45px rgba(124,92,255,0.18);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.06); }
.btn--ghost-bright{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: var(--text);
}
.btn--ghost-bright:hover{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.lang-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 34px 10px 12px;
  border-radius: 999px;
  font-weight: 720;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 11px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.lang-select:focus{
  outline:2px solid rgba(124,92,255,0.65);
  outline-offset: 3px;
  border-radius: 999px;
}

/* Cover */
.cover{
  min-height: calc(100vh - 70px);
  display:flex;
  align-items:center;
  padding: 90px 0 90px;
}
.cover__inner{
  max-width: 920px;
}
.kicker{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 18px;
}
.mega{
  margin:0 0 18px;
  font-weight: 920;
  line-height: 0.96;
  font-size: clamp(52px, 6vw, 92px);
}
.lead{
  margin:0 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  max-width: 62ch;
}
.cover__cta{ display:flex; gap: 12px; flex-wrap:wrap; }
.cover__hint{
  margin-top: 70px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* Idea rail */
.slides{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0 86px;
  scroll-margin-top: calc(var(--header-h) + 12px);
  overflow: hidden;
}
.slides__shell{
  display: grid;
  gap: 20px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.slides__rail{
  --idea-card-w: clamp(300px, 34vw, 430px);
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  padding-inline: clamp(20px, 6.5vw, 140px);
  scroll-padding-inline: clamp(20px, 6.5vw, 140px);
  padding-bottom: 6px;
}
.slides__rail::-webkit-scrollbar{ display: none; }
.slide-card{
  flex: 0 0 var(--idea-card-w);
  min-height: 320px;
  padding: 22px 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(42,168,255,0.12), transparent 55%),
    linear-gradient(180deg, rgba(15,19,32,0.94), rgba(9,12,24,0.98));
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
  scroll-snap-align: start;
  display: grid;
  align-content: start;
  gap: 14px;
}
.slide-card:nth-child(even){
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(124,92,255,0.12), transparent 55%),
    linear-gradient(180deg, rgba(15,19,32,0.94), rgba(9,12,24,0.98));
}
.slide-card__index{
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(162,183,214,0.62);
}
.slide-card__title{
  margin: 0;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 11ch;
}
.slide-card__text{
  margin: 0;
  color: rgba(206,219,240,0.8);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.45;
  max-width: 28ch;
}
.slides__nav{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: clamp(20px, 6.5vw, 140px);
}

/* Product Stage */
.stage{
  padding: var(--stage-pad) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  scroll-margin-top: calc(var(--header-h) + 12px);
  min-height: 0;
  position: relative;
}
.stage__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items:center;
  position: relative;
  top: auto;
  min-height: 0;
}
.product{
  position: relative;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items: center;
}
.product__frame{
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.product__hero-shot{
  width: auto;
  height: 60vh;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.product__chrome{
  display:flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}
.dot{
  width: 10px; height: 10px; border-radius: 99px;
  background: rgba(255,255,255,0.16);
}
.product__screen{ padding: 18px; }

.product__media{
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: auto;
  min-height: clamp(470px, 60vh, 580px);
}

/* Product carousel (Apple-like horizontal cards) */
.stage__note{
  margin-bottom: 24px;
}
.product-carousel{
  display: grid;
  gap: 18px;
}
.product-carousel__track{
  /* Card width constraints: desktop min 700px */
  --pc-card-w: clamp(700px, 48vw, 820px);
  --pc-gap: clamp(14px, 1.9vw, 26px);
  display: flex;
  gap: var(--pc-gap);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: clamp(20px, 6.5vw, 140px);
  padding-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(20px, 6.5vw, 140px);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.product-carousel__track::-webkit-scrollbar{ display: none; }
.product-carousel__track{ scrollbar-width: none; }

/* Carousel order: Agora first */
.product-carousel__track > .media__item[data-state="5"]{ order: 1 !important; }
.product-carousel__track > .media__item[data-state="1"]{ order: 2 !important; }
.product-carousel__track > .media__item[data-state="3"]{ order: 3 !important; }
.product-carousel__track > .media__item[data-state="2"]{ order: 4 !important; }
.product-carousel__track > .media__item[data-state="6"]{ order: 5 !important; }
.product-carousel__track > .media__item[data-state="7"]{ order: 6 !important; }
.product-carousel__track > .media__item[data-state="4"]{ order: 7 !important; }
.product-carousel__track > .media__item{
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
  z-index: 0;
  flex: 0 0 var(--pc-card-w);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 16px;
  scroll-snap-align: start;
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(14,22,38,0.86), rgba(9,14,26,0.9));
  padding: clamp(18px, 2vw, 26px);
  min-height: clamp(620px, 74vh, 780px);
}
.product-carousel__track > .media__item.is-active{
  z-index: 0;
}
.product-carousel__track > .media__item .media__canvas{
  width: auto;
  max-width: min(100%, 480px);
  min-height: 0;
  box-shadow: 0 16px 44px rgba(0,0,0,0.34);
  margin-inline: auto;
  margin-block: auto;
}
.product-carousel__copy{
  display: grid;
  gap: 8px;
  padding-inline: 4px;
}
.product-carousel__copy .h3big{
  margin: 0;
  font-size: clamp(19px, 1.6vw, 26px);
}
.product-carousel__copy .pbig{
  margin: 0;
  max-width: 48ch;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.42;
  color: rgba(220,232,250,0.82);
}
.product-carousel__nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: clamp(20px, 6.5vw, 140px);
}
.slides__nav .talk__arrow,
.product-carousel__nav .talk__arrow{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.09);
  color: rgba(232,240,255,0.92);
  font-size: 31px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.slides__nav .talk__position,
.product-carousel__nav .talk__position{
  min-width: 54px;
  text-align: center;
}
.slides__nav .talk__arrow:hover,
.product-carousel__nav .talk__arrow:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.18);
}
.slides__nav .talk__arrow:disabled,
.product-carousel__nav .talk__arrow:disabled{
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.slides__nav .talk__arrow:focus-visible,
.product-carousel__nav .talk__arrow:focus-visible{
  outline: 2px solid rgba(54,140,255,0.9);
  outline-offset: 2px;
}
.media__item{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  filter: blur(6px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
  pointer-events: none;
}
.media__item.is-active{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 1;
}
.media__item[data-state="1"]{
  --media-accent: rgba(124,92,255,0.55);
  --media-accent-2: rgba(42,168,255,0.35);
  --pop-origin-x: 50%;
  --pop-origin-y: 50%;
}
.media__item[data-state="1"],
.media__item[data-state="2"],
.media__item[data-state="3"],
.media__item[data-state="4"],
.media__item[data-state="5"],
.media__item[data-state="6"]{
  display: grid;
  place-items: center;
}
.media__item[data-state="1"] .media__canvas{
  width: min(100%, 480px);
  height: auto;
  aspect-ratio: 1 / 1.12;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(98,194,245,0.34);
  background: linear-gradient(180deg, rgba(7,14,28,0.98), rgba(5,11,22,0.98));
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}
.media__item[data-state="1"] .media__canvas::after{
  display: none;
}
.media__item[data-state="1"].is-pop-from-feed .media__canvas{
  animation: feedCardPopup 680ms cubic-bezier(0.16, 0.9, 0.22, 1) both;
  transform-origin: var(--pop-origin-x) var(--pop-origin-y);
}
@keyframes feedCardPopup{
  0%{
    opacity: 0;
    transform: translate(0, 0) scale(0.08);
    filter: blur(10px);
  }
  62%{
    opacity: 1;
    transform: translate(0, 0) scale(1.02);
    filter: blur(0);
  }
  100%{
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
}
.symp-mockup{
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  color: #dbe8ff;
}
.symp-mockup__topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(97,184,236,0.26);
  background: rgba(7,17,31,0.82);
}
.symp-mockup__brand{
  font-size: 20px;
  line-height: 1;
  color: rgba(215,233,253,0.96);
  letter-spacing: -0.02em;
}
.symp-mockup__top-actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.symp-mockup__token{
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.3);
  background: rgba(13,24,40,0.9);
  color: rgba(210,228,249,0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.symp-mockup__avatar{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(210,235,255,0.44);
  background: #12243c;
}
.symp-mockup__avatar--top{
  width: 26px;
  height: 26px;
}
.symp-mockup__avatar--placeholder{ object-fit: cover; background: #0f1c30; padding: 0; }
.symp-mockup__hero{
  margin: 10px 12px 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
  min-height: 130px;
  border-radius: 14px;
  border: 1px solid rgba(97,184,236,0.3);
  background: rgba(8,19,35,0.72);
  overflow: hidden;
}
.symp-mockup__hero-copy{
  padding: 12px 14px;
  display: grid;
  gap: 7px;
  align-content: start;
}
.symp-mockup__eyebrow{
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(193,216,246,0.72);
}
.symp-mockup__hero-title{
  margin: 0;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #d6e4f2;
  max-width: 18ch;
}
.symp-mockup__hero-title--placeholder{
  display: block;
  width: 90%;
  height: 13px;
  border-radius: 999px;
  background: rgba(192,212,236,0.45);
}
.symp-mockup__hero-text{
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(197,217,243,0.82);
  max-width: 38ch;
}
.symp-mockup__hero-placeholder{
  display: grid;
  gap: 6px;
  max-width: 38ch;
}
.symp-mockup__hero-placeholder span{
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(197,217,243,0.34);
}
.symp-mockup__hero-placeholder span.short{
  width: 62%;
}
.symp-mockup__hero-media{
  position: relative;
  min-height: 100%;
  background: #0b1c31;
  overflow: hidden;
}
.symp-mockup__hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,15,30,0.22), rgba(7,15,30,0.64));
}
.symp-mockup__hero-media-placeholder{
  width: 100%;
  height: 100%;
  display: block;
  background:
    radial-gradient(120% 120% at 80% 20%, rgba(60,165,230,0.32), transparent 62%),
    linear-gradient(145deg, rgba(32,57,88,0.9), rgba(14,28,45,0.95));
}
.symp-mockup__hero-cover{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.22) brightness(0.68) contrast(1.04);
}
.symp-mockup__content{
  min-height: 0;
  padding: 10px 12px 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  gap: 10px;
}
.symp-mockup__participants,
.symp-mockup__timeline{
  border-radius: 12px;
  border: 1px solid rgba(97,184,236,0.26);
  background: rgba(8,19,35,0.68);
}
.symp-mockup__participants{
  padding: 10px;
  display: grid;
  gap: 7px;
  align-content: start;
}
.symp-mockup__section-title{
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: #cdddec;
}
.symp-mockup__person{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(97,184,236,0.16);
}
.symp-mockup__person div strong{
  display: block;
  font-size: 10px;
  line-height: 1.25;
}
.symp-mockup__name-placeholder{
  width: 74%;
  max-width: 72px;
  min-width: 52px;
  height: 7px;
  border-radius: 999px;
  margin-top: 2px;
  background: rgba(190,212,239,0.48);
}
.symp-mockup__name-placeholder--short{
  width: 42px;
  max-width: none;
  min-width: 0;
}
.symp-mockup__person div span{
  display: block;
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.2;
  color: rgba(190,212,239,0.75);
}
.symp-mockup__meta-placeholder{
  display: block;
  width: 78%;
  height: 6px;
  border-radius: 999px;
  margin-top: 4px;
  background: rgba(190,212,239,0.36);
}
.symp-mockup__timeline{
  padding: 10px;
  display: grid;
  gap: 9px;
  align-content: start;
}
.symp-mockup__timeline-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.symp-mockup__lane{
  display: grid;
  gap: 12px;
  padding: 2px 0;
  max-height: 332px;
  overflow: hidden;
}
.symp-mockup__play{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0b1f35;
  background: linear-gradient(135deg, #6be6fb, #31c9eb);
}
.symp-mockup__entry{
  position: relative;
  width: min(220px, 84%);
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}
.symp-mockup__entry--left{
  justify-self: start;
}
.symp-mockup__entry--right{
  justify-self: end;
}
.symp-mockup__entry::before{
  content: "";
  position: absolute;
  left: -7px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(123,195,236,0.76);
  box-shadow: 0 0 0 2px rgba(123,195,236,0.22);
}
.symp-mockup__entry--right::before{
  left: auto;
  right: -7px;
}
.symp-mockup__entry-head{
  display: flex;
  gap: 7px;
  align-items: center;
}
.symp-mockup__entry--right .symp-mockup__entry-head{
  flex-direction: row-reverse;
}
.symp-mockup__entry-meta{
  display: grid;
  gap: 2px;
}
.symp-mockup__entry--right .symp-mockup__entry-meta{
  text-align: right;
}
.symp-mockup__entry-meta strong{
  font-size: 10px;
  line-height: 1.25;
}
.symp-mockup__entry-meta span{
  font-size: 8px;
  line-height: 1.2;
  color: rgba(188,211,238,0.78);
}
.symp-mockup__time{
  margin: 0;
  display: block;
  font-size: 8px;
  color: rgba(180,203,232,0.75);
}
.symp-mockup__time.is-placeholder{
  width: 34px;
  height: 6px;
  margin-top: 4px;
  border-radius: 999px;
  background: rgba(180,203,232,0.35);
  color: transparent;
}
.symp-mockup__entry-body{
  position: relative;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}
.symp-mockup__entry--right .symp-mockup__entry-body{
  align-items: center;
}
.symp-mockup__clip{
  width: 82px;
  height: 82px;
  position: relative;
  border-radius: 999px;
  border: 2px solid rgba(123,195,236,0.74);
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.12), transparent 38%),
    url("./media/pictures/avatar-placeholder-dark.svg") center / 118% no-repeat,
    linear-gradient(145deg, #1a304d, #102339);
  box-shadow: inset 0 0 0 1px rgba(123,195,236,0.16);
}
.symp-mockup__clip::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(8,16,28,0.58);
  border: 1px solid rgba(220,239,255,0.45);
  transform: translate(-50%, -50%);
}
.symp-mockup__clip::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 7px solid rgba(238,248,255,0.95);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translate(-32%, -50%);
}
.symp-mockup__clip--alt{
  border-color: rgba(123,195,236,0.74);
}
.symp-mockup__clip--gold{
  border-color: rgba(123,195,236,0.74);
}
.symp-mockup__entry--left .symp-mockup__clip{
  transform: translateX(-18px);
}
.symp-mockup__entry--right .symp-mockup__clip{
  transform: translateX(18px);
}
.symp-mockup__entry--left .symp-mockup__insight{
  transform: translateX(-18px);
}
.symp-mockup__entry--right .symp-mockup__insight{
  transform: translateX(18px);
}
.symp-mockup__insight,
.symp-chat-mockup__insight{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 16px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.4);
  background: rgba(10,21,37,0.75);
  color: rgba(212,229,249,0.9);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.symp-mockup__cursor{
  position: absolute;
  left: calc(50% + 36px);
  top: calc(50% + 10px);
  width: 20px;
  height: 24px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}
.symp-mockup__cursor::after{
  content: "";
  position: absolute;
  inset: 0;
  background: #ecf6ff;
  clip-path: polygon(0 0, 0 100%, 38% 72%, 56% 100%, 72% 92%, 54% 64%, 100% 64%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.42));
}
.symp-mockup__cursor::before,
.symp-feed-mockup__cursor::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(200,236,255,0.95);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  pointer-events: none;
}
.media__item[data-state="1"] .symp-mockup__entry:first-child .symp-mockup__insight{
  transform-origin: center;
}
.media__item[data-state="1"].is-insight-clicking .symp-mockup__entry:first-child .symp-mockup__cursor--insight{
  animation: mockCursorClick 380ms ease both;
}
.media__item[data-state="1"].is-insight-clicking .symp-mockup__entry:first-child .symp-mockup__cursor--insight::before{
  animation: mockCursorPulse 380ms ease both;
}
.media__item[data-state="2"]{
  --media-accent: rgba(42,168,255,0.55);
  --media-accent-2: rgba(117,247,255,0.28);
  --pop-origin-x: 34%;
  --pop-origin-y: 74%;
}
.media__item[data-state="3"]{
  --media-accent: rgba(98,194,245,0.45);
  --media-accent-2: rgba(149,179,255,0.28);
}
.media__item[data-state="3"] .media__canvas{
  width: min(100%, 480px);
  height: auto;
  aspect-ratio: 1 / 1.12;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(98,194,245,0.34);
  background: linear-gradient(180deg, rgba(7,14,28,0.98), rgba(5,11,22,0.98));
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}
.media__item[data-state="3"] .media__canvas::after{
  display: none;
}
.media__item[data-state="2"] .media__canvas{
  padding: 0;
  width: min(100%, 480px);
  height: auto;
  aspect-ratio: 1 / 1.12;
  border: 1px solid rgba(98,194,245,0.4);
  background: linear-gradient(180deg, rgba(7,14,28,0.98), rgba(5,11,22,0.98));
}
.media__item[data-state="2"] .media__canvas::after{
  display: none;
}
.media__item[data-state="2"].is-pop-from-insight .media__canvas{
  animation: insightsModalPopup 980ms cubic-bezier(0.14, 0.9, 0.2, 1) both;
  transform-origin: var(--pop-origin-x) var(--pop-origin-y);
}
.media__item[data-state="2"].is-pop-to-insight{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  z-index: 2;
  pointer-events: none;
  transition: none;
  transform-origin: var(--pop-origin-x) var(--pop-origin-y);
  animation: insightsModalClose 560ms cubic-bezier(0.55, 0.06, 0.68, 0.19) both;
}
@keyframes insightsModalPopup{
  0%{
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
    filter: blur(8px);
  }
  62%{
    opacity: 1;
    transform: translate(0, 0) scale(1.02);
    filter: blur(0);
  }
  100%{
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
}
@keyframes insightsModalClose{
  0%{
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
  100%{
    opacity: 0;
    transform: translate(0, 0) scale(0.08);
    filter: blur(10px);
  }
}
.symp-modal-mockup{
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  color: #dde9ff;
}

.symp-chat-mockup{
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  color: #dbe8ff;
}
.symp-chat-mockup__hero{
  margin: 10px 12px 0;
  border-radius: 12px;
  border: 1px solid rgba(97,184,236,0.28);
  background: rgba(10,21,37,0.72);
}
.symp-chat-mockup__hero-copy{
  padding: 10px 12px;
  display: grid;
  gap: 7px;
}
.symp-chat-mockup__title-line{
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(197,217,243,0.35);
}
.symp-chat-mockup__title-line--short{
  width: 72%;
}
.symp-chat-mockup__hero-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.symp-chat-mockup__hero-meta span{
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.35);
  background: rgba(8,19,35,0.8);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(205,224,247,0.92);
}
.symp-chat-mockup__content{
  min-height: 0;
  padding: 10px 12px 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  gap: 10px;
}
.symp-chat-mockup__participants,
.symp-chat-mockup__timeline{
  border-radius: 12px;
  border: 1px solid rgba(97,184,236,0.26);
  background: rgba(8,19,35,0.68);
}
.symp-chat-mockup__participants{
  padding: 10px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.symp-chat-mockup__participant{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(97,184,236,0.16);
}
.symp-chat-mockup__role{
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.32);
  background: rgba(14,28,45,0.88);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200,221,247,0.92);
}
.symp-chat-mockup__timeline{
  padding: 10px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.symp-chat-mockup__lane{
  display: grid;
  gap: 8px;
  align-content: start;
  max-height: 336px;
  overflow: hidden;
}
.symp-chat-mockup__msg{
  display: grid;
  gap: 4px;
  width: min(230px, 86%);
}
.symp-chat-mockup__msg-head{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.symp-chat-mockup__msg-head .symp-mockup__name-placeholder{
  display: block;
  align-self: center;
  margin-top: 0;
}
.symp-chat-mockup__msg--left{
  justify-self: start;
}
.symp-chat-mockup__msg--right{
  justify-self: end;
}
.symp-chat-mockup__msg--right .symp-chat-mockup__msg-head{
  flex-direction: row-reverse;
}
.symp-chat-mockup__msg-role{
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(188,210,237,0.76);
}
.symp-chat-mockup__msg--right .symp-chat-mockup__msg-role{
  text-align: right;
}
.symp-chat-mockup__bubble{
  border-radius: 10px;
  border: 1px solid rgba(97,184,236,0.32);
  background: rgba(12,24,41,0.86);
  padding: 7px 8px;
  display: grid;
  gap: 5px;
}
.symp-chat-mockup__msg--right .symp-chat-mockup__bubble{
  border-color: rgba(117,247,255,0.28);
  background: rgba(10,26,42,0.92);
}
.symp-chat-mockup__bubble i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(205,224,247,0.35);
}
.symp-chat-mockup__bubble i.short{
  width: 64%;
}
.symp-chat-mockup__insight{
  align-self: flex-start;
  margin-top: 1px;
  pointer-events: none;
}
.symp-chat-mockup__msg--right .symp-chat-mockup__insight{
  align-self: flex-end;
}

.media__canvas > .symp-mockup,
.media__canvas > .symp-modal-mockup,
.media__canvas > .symp-user-mockup,
.media__canvas > .symp-feed-mockup,
.media__canvas > .symp-watch-mockup{
  height: calc(100% - 25px);
  margin-top: 0;
}
.symp-chat-mockup__bubble--audio{
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border-color: rgba(122, 178, 225, 0.52);
  background: linear-gradient(180deg, rgba(72,90,112,0.46), rgba(59,74,95,0.5));
  padding: 6px 8px;
}
.symp-chat-mockup__audio-play{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(153,207,245,0.58);
  background: rgba(139,200,239,0.42);
  position: relative;
  flex: 0 0 auto;
}
.symp-chat-mockup__audio-play::before{
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 0;
  height: 0;
  border-left: 7px solid rgba(230,243,255,0.95);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.symp-chat-mockup__audio-main{
  display: grid;
  gap: 4px;
  min-width: 0;
}
.symp-chat-mockup__audio-track{
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(201,210,222,0.56);
}
.symp-chat-mockup__audio-progress{
  display: block;
  width: 22%;
  height: 100%;
  border-radius: inherit;
  background: rgba(236,244,252,0.9);
}
.symp-chat-mockup__audio-knob{
  position: absolute;
  top: 50%;
  left: 22%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(245,249,255,0.98);
  box-shadow: 0 0 0 1px rgba(90,112,138,0.45);
}
.symp-chat-mockup__audio-timecode{
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(219,232,246,0.88);
}
.symp-chat-mockup__audio-speed{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(133,184,224,0.56);
  background: rgba(69,88,110,0.7);
  font-size: 8px;
  font-weight: 800;
  color: rgba(225,238,251,0.9);
}

.symp-mockup--chamber .symp-chat-mockup__lane{
  max-height: 332px;
  padding: 2px 0;
}
.symp-mockup--chamber .symp-chat-mockup__msg{
  width: min(220px, 84%);
}
.symp-modal-mockup__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.symp-modal-mockup__name{
  font-size: 11px;
  color: rgba(206,223,245,0.92);
}
.symp-modal-mockup__name--placeholder{
  width: 34%;
  height: 8px;
  border-radius: 999px;
  background: rgba(194,214,239,0.42);
}
.symp-modal-mockup__nav{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.symp-modal-mockup__nav-btn{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(21,33,54,0.82);
  color: #d9ebff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}
.symp-modal-mockup__grid{
  min-height: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 9px;
}
.symp-modal-mockup__left,
.symp-modal-mockup__right{
  min-height: 0;
  display: grid;
  gap: 8px;
  align-content: start;
}
.symp-modal-card{
  border-radius: 10px;
  border: 1px solid rgba(97,184,236,0.34);
  background: rgba(8,19,35,0.7);
  padding: 8px;
}
.symp-modal-card--fact{
  border-color: rgba(237,206,95,0.48);
}
.symp-modal-card__title{
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(195,217,246,0.9);
}
.symp-modal-card__text{
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(208,224,244,0.9);
}
.symp-modal-video{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  aspect-ratio: 16 / 10;
  background: #10243f;
}
.symp-modal-video__placeholder{
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(146,180,214,0.2), transparent 60%),
    linear-gradient(160deg, rgba(29,52,84,0.9), rgba(13,28,49,0.95));
}
.symp-modal-video__avatar{
  position: absolute;
  left: -6%;
  right: -6%;
  top: -6%;
  bottom: -6%;
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(12,20,34,0.22), rgba(12,20,34,0.42)),
    url("./media/pictures/avatar-video-dark.svg") center / cover no-repeat;
  animation: mockVideoDrift 9s ease-in-out infinite alternate;
}
.symp-modal-video__bar{
  position: absolute;
  left: 14px;
  height: 7px;
  border-radius: 999px;
  background: rgba(210,229,247,0.35);
}
.symp-modal-video__bar--one{
  width: 46%;
  bottom: 14px;
}
.symp-modal-video__bar--two{
  width: 28%;
  bottom: 26px;
}
.symp-modal-video::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,12,24,0.12), rgba(6,12,24,0.6));
}
.symp-modal-video__play{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(0,0,0,0.46);
  border: 1px solid rgba(255,255,255,0.36);
  z-index: 1;
}
.symp-modal-video__play::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  border-left: 10px solid rgba(255,255,255,0.92);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.symp-modal-video__meta{
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  font-size: 10px;
  color: rgba(240,247,255,0.92);
}
.symp-modal-pills{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.symp-modal-pills li{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 0;
  height: 24px;
  position: relative;
}
.symp-modal-pills li::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 66%;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(217,232,249,0.35);
}
.symp-modal-pills li:nth-child(2)::before{
  width: 54%;
}
.symp-modal-pills li:nth-child(3)::before{
  width: 72%;
}
.symp-modal-list{
  display: grid;
  gap: 6px;
}
.symp-modal-list span{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  padding: 6px 8px;
  display: grid;
  gap: 5px;
}
.symp-modal-list span em{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(217,232,249,0.35);
}
.symp-modal-list span em.short{
  width: 48%;
}
.symp-modal-text-placeholder{
  display: grid;
  gap: 6px;
}
.symp-modal-text-placeholder span{
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(214,230,248,0.34);
}
.symp-modal-text-placeholder span.short{
  width: 62%;
}
.symp-modal-tags{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
}
.symp-modal-tags span{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  padding: 3px 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(209,226,248,0.9);
}
.symp-modal-tags span.is-green{
  border-color: rgba(104,223,171,0.42);
  background: rgba(104,223,171,0.14);
  color: #77efba;
}
.symp-modal-comments{
  display: grid;
  gap: 6px;
}
.symp-modal-comments p{
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 6px 8px;
  display: grid;
  gap: 6px;
}
.symp-modal-comments strong{
  color: #cfdeed;
  font-size: 10px;
  line-height: 1.2;
}
.symp-modal-name-placeholder{
  display: block;
  width: 32%;
  height: 7px;
  border-radius: 999px;
  background: rgba(197,218,244,0.4);
}
.symp-modal-comment-placeholder{
  display: grid;
  gap: 5px;
}
.symp-modal-comment-placeholder i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(214,230,248,0.34);
}
.symp-modal-comment-placeholder i.short{
  width: 56%;
}
.media__item[data-state="4"],
.media__item[data-state="5"],
.media__item[data-state="6"]{
  --media-accent: rgba(77,156,210,0.18);
  --media-accent-2: rgba(150,206,244,0.1);
}
.media__item[data-state="4"] .media__canvas,
.media__item[data-state="5"] .media__canvas,
.media__item[data-state="6"] .media__canvas{
  width: min(100%, 480px);
  height: auto;
  aspect-ratio: 1 / 1.12;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(98,194,245,0.34);
  background: linear-gradient(180deg, rgba(7,14,28,0.98), rgba(5,11,22,0.98));
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}
.media__item[data-state="4"] .media__canvas::after,
.media__item[data-state="5"] .media__canvas::after,
.media__item[data-state="6"] .media__canvas::after{
  display: none;
}
.media__canvas{
  position: relative;
  height: 100%;
  border-radius: calc(var(--r) - 10px);
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(120% 120% at 10% 0%, var(--media-accent), transparent 60%),
    radial-gradient(120% 120% at 90% 0%, var(--media-accent-2), transparent 60%),
    linear-gradient(180deg, rgba(10,12,26,0.96), rgba(8,10,20,0.98));
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media__shot{
  width: auto;
  height: 60vh;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}
.media__canvas::after{
  content:"";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
  pointer-events: none;
}
.media__badge{
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 700;
}
.media__title{
  height: 18px;
  width: 68%;
  border-radius: 10px;
  background: rgba(255,255,255,0.16);
}
.media__line{
  height: 10px;
  width: 88%;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
}
.media__line.short{ width: 56%; }
.media__grid{
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.media__grid span{
  height: 68px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.media__item[data-state="2"] .media__grid{
  grid-template-columns: 1.4fr 1fr;
}
.media__item[data-state="2"] .media__grid span:nth-child(3){
  grid-column: 1 / -1;
  height: 46px;
}

.symp-user-mockup,
.symp-feed-mockup,
.symp-watch-mockup{
  height: 100%;
  min-height: 0;
  color: #dce9fa;
}

.symp-user-mockup{
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}
.symp-user-mockup__header,
.symp-feed-mockup__header,
.symp-watch-mockup__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(97,184,236,0.24);
}
.symp-user-mockup__header span:first-child,
.symp-feed-mockup__header span:first-child,
.symp-watch-mockup__header span:first-child{
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,220,245,0.88);
}
.symp-user-mockup__header span:last-child,
.symp-watch-mockup__header span:last-child{
  width: 44px;
  height: 8px;
  border-radius: 999px;
  background: rgba(189,213,238,0.32);
}
.symp-user-mockup__top{
  padding: 8px 12px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
  gap: 8px;
  min-height: 0;
  align-items: start;
}
.symp-profile-card{
  border-radius: 10px;
  border: 1px solid rgba(97,184,236,0.28);
  background: rgba(8,19,35,0.68);
  padding: 8px;
  display: grid;
  gap: 8px;
  align-content: start;
  align-self: start;
}
.symp-profile-card__head{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}
.symp-profile-card__avatar{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid rgba(97,184,236,0.5);
  background:
    rgba(16,35,58,0.95)
    url("./media/pictures/avatar-placeholder-dark.svg") center / 120% no-repeat;
}
.symp-profile-card__identity{
  display: grid;
  gap: 7px;
}
.symp-profile-card__roles{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.symp-profile-card__roles span{
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.3);
  background: rgba(255,255,255,0.02);
}
.symp-profile-side{
  display: grid;
  gap: 8px;
  min-height: 0;
}
.symp-profile-progress{
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}
.symp-profile-progress__bar{
  display: block;
  width: 56%;
  height: 100%;
  border-radius: inherit;
  background: rgba(97,184,236,0.9);
}
.symp-profile-tabs{
  padding: 8px 12px 0;
  display: flex;
  gap: 6px;
}
.symp-profile-tabs span{
  height: 19px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.28);
  background: rgba(255,255,255,0.02);
}
.symp-profile-tabs span:nth-child(1){ width: 16%; }
.symp-profile-tabs span:nth-child(2){ width: 14%; }
.symp-profile-tabs span:nth-child(3){ width: 14%; }
.symp-profile-tabs span:nth-child(4){ width: 28%; }
.symp-profile-tabs span:nth-child(5){ width: 20%; }
.symp-profile-tabs span.is-active{
  border-color: rgba(97,184,236,0.55);
  box-shadow: inset 0 0 0 1px rgba(97,184,236,0.35);
}
.symp-ui-line{
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(188,211,235,0.36);
}
.symp-ui-line--name{ width: 44%; }
.symp-ui-line--meta{ width: 62%; }

.symp-ui-card{
  border-radius: 10px;
  border: 1px solid rgba(97,184,236,0.28);
  background: rgba(8,19,35,0.68);
  padding: 8px;
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 0;
}
.symp-ui-card--revenue-symposyum{
  min-height: auto;
  align-self: start;
}
.symp-ui-card__title{
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,220,245,0.9);
}
.symp-ui-lines{
  display: grid;
  gap: 6px;
}
.symp-ui-lines span{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
.symp-ui-lines span.short{
  width: 56%;
}
.symp-ui-list{
  display: grid;
  gap: 6px;
}
.symp-ui-list span{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 6px;
  display: grid;
  gap: 5px;
}
.symp-ui-list span i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
.symp-ui-list span i.short{
  width: 54%;
}
.symp-ui-list--compact{
  gap: 5px;
}
.symp-ui-list--compact span{
  padding: 5px;
}
.symp-user-mockup .symp-ui-list.symp-ui-list--compact{
  display: none;
}
.symp-ui-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.symp-ui-chips span{
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.3);
  background: rgba(255,255,255,0.02);
}
.symp-ui-chips span:nth-child(1){ width: 34%; }
.symp-ui-chips span:nth-child(2){ width: 26%; }
.symp-ui-chips span:nth-child(3){ width: 20%; }
.symp-ui-chips span:nth-child(4){ width: 24%; }

.symp-user-mockup__layout{
  padding: 8px 12px 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 0.34fr);
  gap: 8px;
  min-height: 0;
}
.symp-profile-main,
.symp-profile-rail{
  display: grid;
  gap: 8px;
  min-height: 0;
}
.symp-revenue-role{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.symp-revenue-role span{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  padding: 8px 6px;
}
.symp-revenue-role strong{
  display: block;
  font-size: 15px;
  line-height: 1;
  color: #cfdeed;
}
.symp-revenue-list{
  display: grid;
  gap: 6px;
}
.symp-revenue-list span{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  align-items: center;
}
.symp-revenue-list span i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
.symp-revenue-list span em{
  font-style: normal;
  font-size: 12px;
  color: rgba(213,230,250,0.94);
}
.symp-toggle-list{
  display: grid;
  gap: 6px;
}
.symp-toggle-list span{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  align-items: center;
}
.symp-toggle-list span i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
.symp-toggle-list span b{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.2);
}
.symp-toggle-list span b.is-on{
  background: rgba(97,184,236,0.88);
}
.symp-status-list{
  display: grid;
  gap: 6px;
}
.symp-status-list span{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  align-items: center;
}
.symp-status-list span i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
.symp-status-list span em{
  font-style: normal;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(213,230,250,0.92);
}

.symp-feed-mockup{
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
}
.symp-feed-mockup__topbar{
  border-bottom: 1px solid rgba(97,184,236,0.24);
  background: rgba(7,17,31,0.7);
}
.symp-feed-mockup__intro{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px 0;
}
.symp-feed-mockup__title{
  margin: 0;
  font-size: 13px;
  color: #ccdeee;
  letter-spacing: -0.01em;
}
.symp-feed-mockup__subtitle{
  width: 40%;
  height: 7px;
  border-radius: 999px;
  background: rgba(193,214,239,0.3);
}
.symp-feed-mockup__layout{
  min-height: 0;
  padding: 8px 10px 10px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.3fr);
  gap: 8px;
}
.symp-feed-debate-grid,
.symp-feed-mockup__rail{
  display: grid;
  gap: 8px;
  min-height: 0;
}
.symp-feed-debate-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  max-height: 300px;
  overflow: hidden;
}
.symp-feed-debate-card{
  --feed-media-h: 76px;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(97,184,236,0.24);
  background: rgba(8,19,35,0.68);
  overflow: hidden;
  display: grid;
  grid-template-rows: var(--feed-media-h) 1fr;
  min-height: 0;
}
.symp-feed-debate-card::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 38px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.46);
  background: rgba(97,184,236,0.18);
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  pointer-events: none;
}
.symp-feed-debate-card__media{
  display: block;
  border-bottom: 1px solid rgba(97,184,236,0.22);
  background:
    radial-gradient(120% 120% at 80% 20%, rgba(60,165,230,0.32), transparent 62%),
    linear-gradient(145deg, rgba(32,57,88,0.9), rgba(14,28,45,0.95));
}
.symp-feed-debate-card__body{
  padding: 7px;
  display: grid;
  gap: 5px;
  align-content: start;
  position: static;
}
.symp-feed-debate-card__chips{
  display: flex;
  gap: 5px;
  position: absolute;
  left: 7px;
  right: 7px;
  width: auto;
  top: calc(var(--feed-media-h) - 24px);
  transform: none;
  z-index: 2;
}
.symp-feed-debate-card__chips span{
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
}
.symp-feed-debate-card__chips span:first-child{ width: 32%; }
.symp-feed-debate-card__chips span:last-child{ width: 26%; }
.media__item[data-state="1"] .symp-mockup__meta-placeholder,
.media__item[data-state="1"] .symp-mockup__time.is-placeholder{
  display: none;
}
.symp-feed-debate-card__title{
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  color: rgba(232,243,255,0.95);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.5em;
}
.symp-feed-debate-card__title--placeholder{
  min-height: 0;
  display: grid;
  gap: 5px;
}
.symp-feed-debate-card__title--placeholder span{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.38);
}
.symp-feed-debate-card__title--placeholder span.short{
  width: 72%;
}
.symp-feed-mockup__cursor{
  position: absolute;
  left: 50%;
  top: 38px;
  width: 20px;
  height: 24px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}
.symp-feed-mockup__cursor::after{
  content: "";
  position: absolute;
  inset: 0;
  background: #ecf6ff;
  clip-path: polygon(0 0, 0 100%, 38% 72%, 56% 100%, 72% 92%, 54% 64%, 100% 64%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.42));
}
.media__item[data-state="5"].is-card-clicking .symp-feed-debate-card:nth-child(2) .symp-feed-mockup__cursor{
  animation: mockCursorClick 380ms ease both;
}
.media__item[data-state="5"].is-card-clicking .symp-feed-debate-card:nth-child(2) .symp-feed-mockup__cursor::before{
  animation: mockCursorPulse 380ms ease both;
}
.symp-feed-debate-card__text{
  display: grid;
  gap: 4px;
}
.symp-feed-debate-card__text i{
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
.symp-feed-debate-card__text i.short{
  width: 68%;
}
@media (min-width: 921px){
  .symp-feed-debate-grid{ max-height: 440px; }
  .symp-feed-debate-card__text i.short{ display: none; }
}
.symp-feed-debate-card__avatars{
  display: inline-flex;
  align-items: center;
}
.symp-feed-debate-card__avatars b{
  width: 18px;
  height: 18px;
  margin-left: -4px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.44);
  background:
    rgba(16,35,58,0.95)
    url("./media/pictures/avatar-placeholder-dark.svg") center / 124% no-repeat;
}
.symp-feed-debate-card__avatars b:first-child{
  margin-left: 0;
}
.symp-feed-ask{
  display: grid;
  gap: 8px;
}
.symp-feed-ask__input{
  display: block;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.24);
  background: rgba(255,255,255,0.02);
}
.symp-feed-ask__btn{
  display: block;
  width: 56%;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.46);
  background: rgba(56,158,226,0.28);
}
.symp-feed-mockup__rail .symp-ui-chips span{
  width: 36%;
}
.symp-feed-mockup__rail .symp-ui-chips span:nth-child(2){ width: 32%; }
.symp-feed-mockup__rail .symp-ui-chips span:nth-child(3){ width: 26%; }
.symp-feed-mockup__rail .symp-ui-chips span:nth-child(4){ width: 28%; }
.symp-feed-mockup__rail .symp-ui-chips span:nth-child(5){ width: 30%; }
.symp-feed-mockup__rail .symp-ui-card__title{
  font-size: 10px;
  line-height: 1.25;
}
@keyframes mockCursorClick{
  0%{
    opacity: 0;
    transform: translate(calc(-50% - 8px), calc(-50% - 7px)) scale(0.94);
  }
  20%{
    opacity: 1;
  }
  60%{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  76%{
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}
@keyframes mockClickPulse{
  0%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  30%{
    opacity: 0.9;
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.2);
  }
}
@keyframes mockCursorPulse{
  0%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  30%{
    opacity: 0.95;
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.2);
  }
}

.symp-watch-mockup{
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 8px 10px 10px;
  gap: 8px;
}
.symp-watch-headline{
  display: grid;
  gap: 4px;
  padding: 0 2px;
}
.symp-watch-headline__kicker{
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(197,218,244,0.8);
}
.symp-watch-headline__title{
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #ccdeee;
}
.symp-watch-headline__title--placeholder{
  width: 72%;
  height: 11px;
  border-radius: 999px;
  background: rgba(200,220,244,0.4);
}
.symp-watch-mockup__layout{
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 0.34fr);
  gap: 8px;
}
.symp-watch-main,
.symp-watch-rail{
  display: grid;
  gap: 8px;
  min-height: 0;
}
.symp-watch-player__surface{
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(97,184,236,0.3);
  background: linear-gradient(155deg, rgba(18,38,60,0.9), rgba(8,22,38,0.98));
  aspect-ratio: 1920 / 1080;
  min-height: 0;
  overflow: hidden;
}
.symp-watch-player__speaker{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: inherit;
  border: 0;
  background:
    radial-gradient(130% 110% at 82% 16%, rgba(66,158,225,0.2), transparent 62%),
    linear-gradient(160deg, rgba(25,47,74,0.92), rgba(10,22,38,0.98));
}
.symp-watch-player__speaker::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(54px, 22%, 120px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(133,201,245,0.45);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    url("./media/pictures/avatar-placeholder-dark.svg") center / 78% no-repeat,
    rgba(10,19,32,0.9);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.symp-watch-player__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(8,15,28,0.8);
  border: 1px solid rgba(255,255,255,0.24);
}
.symp-watch-player__play::before{
  content: "";
  position: absolute;
  left: 13px;
  top: 9px;
  width: 0;
  height: 0;
  border-left: 11px solid rgba(227,240,255,0.95);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.symp-watch-player__meta{
  display: flex;
  gap: 6px;
  padding-top: 2px;
}
.symp-watch-player__meta span{
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(97,184,236,0.26);
  background: rgba(255,255,255,0.02);
}
.symp-watch-player__meta span:nth-child(1){ width: 18%; }
.symp-watch-player__meta span:nth-child(2){ width: 12%; }
.symp-watch-player__meta span:nth-child(3){ width: 16%; }
.symp-watch-player__segments{
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;
  padding-top: 2px;
}
.symp-watch-player__segments i{
  display: block;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(97,184,236,0.45);
}
.symp-watch-player__segments i:nth-child(2),
.symp-watch-player__segments i:nth-child(4),
.symp-watch-player__segments i:nth-child(7){
  background: rgba(255,204,113,0.58);
}
.symp-watch-player__segments i:nth-child(5),
.symp-watch-player__segments i:nth-child(8){
  background: rgba(255,133,154,0.64);
}
.symp-watch-player__times{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: rgba(188,211,236,0.78);
}
.symp-watch-related{
  display: grid;
  gap: 6px;
}
.symp-watch-related span{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 5px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px;
  align-items: center;
}
.symp-watch-related span b{
  display: block;
  width: 38px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(97,184,236,0.22);
  background: rgba(16,35,58,0.62);
}
.symp-watch-related span i{
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200,220,244,0.3);
}
@keyframes mockVideoDrift{
  0%{
    transform: translate3d(-1.2%, -0.8%, 0) scale(1.04);
  }
  50%{
    transform: translate3d(1.1%, 0.7%, 0) scale(1.07);
  }
  100%{
    transform: translate3d(-0.4%, 1.2%, 0) scale(1.05);
  }
}

.talk{
  position: relative;
  min-height: clamp(240px, 40vh, 420px);
  padding-bottom: 74px;
}
.talk__step{
  position: absolute;
  inset: 0 0 74px;
  border-left: none;
  padding-left: 0;
  border-radius: 0;
  transition: opacity 520ms ease;
  cursor: pointer;
  opacity: 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  pointer-events: none;
}
.talk__step:hover{ opacity: 1; }
.talk__step.is-active{
  opacity: 1;
  pointer-events: auto;
}
.talk__step:focus-visible{
  outline: 2px solid rgba(124,92,255,0.55);
  outline-offset: 6px;
}
.h3big{
  margin:0 0 16px;
  font-weight: 850;
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 1.05;
}
.pbig{
  margin:0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 70ch;
}

.talk__nav{
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,10,20,0.58);
  backdrop-filter: blur(10px);
}

.talk__arrow{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.talk__arrow:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}

.talk__arrow:disabled{
  opacity: 0.36;
  cursor: not-allowed;
  transform: none;
}

.talk__position{
  min-width: 48px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Panels (demo + funding) */
.panel{
  padding: 120px 0;
}
.panel--funding{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.panel__inner{ max-width: 1120px; }
#funding .panel__inner{ max-width: 1120px; }

/* Desktop: demo + funding fill at least one viewport, but can grow with content */
@media (min-width: 921px){
  .cover__inner{
    max-width: 1120px;
  }
  #demo.panel,
  #funding.panel--funding{
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
  }

  #demo .panel__inner,
  #funding .panel__inner{
    width: 100%;
  }
}
.panel__title{
  margin:0 0 16px;
  font-weight: 900;
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 1.05;
}
.panel__text{
  margin:0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 70ch;
}
.panel__actions{ display:flex; gap: 12px; flex-wrap:wrap; }
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-card{
  max-width: 100%;
  border-radius: var(--surface-radius);
  border: var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  padding: var(--surface-pad);
  display: grid;
  align-content: start;
  gap: 12px;
}
.contact-card .panel__title{
  font-size: clamp(32px, 3.1vw, 50px);
  margin-bottom: 10px;
}
.contact-card .panel__text{
  margin-bottom: 8px;
  font-size: 17px;
}
.newsletter-shell{
  border-radius: clamp(22px, 2.4vw, 28px);
  border: var(--surface-border);
  background: var(--surface-bg-strong);
  box-shadow: var(--surface-shadow);
  padding: clamp(20px, 2.8vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
}
.newsletter-shell__title{
  max-width: none;
  margin-bottom: 14px;
}
.newsletter-shell__text{
  max-width: 48ch;
  margin: 0;
}
.waitlist-text__prefix,
.waitlist-text__suffix{
  white-space: pre-wrap;
}
.waitlist-flip{
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  margin: 0 0.12em;
  vertical-align: -0.08em;
  font-variant-numeric: tabular-nums;
}
.waitlist-flip__digit{
  position: relative;
  width: 1em;
  height: 1.32em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  perspective: 260px;
  transform-style: preserve-3d;
  border-radius: 0.22em;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 8px 20px rgba(2,8,24,0.4);
  overflow: hidden;
  color: #ecf5ff;
}
.waitlist-flip__digit::after{
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  transform: translateY(-0.5px);
  pointer-events: none;
}
.waitlist-flip__digit-static{
  position: relative;
  z-index: 1;
  font-size: 0.92em;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
  transform-origin: center center;
}
.waitlist-flip__digit.is-flipping .waitlist-flip__digit-static{
  animation: waitlist-digit-flip 420ms cubic-bezier(.2,.75,.2,1) both;
}
.waitlist-flip__sep{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.24em;
  color: rgba(236,245,255,0.78);
  font-size: 0.98em;
  transform: translateY(-0.04em);
}
@keyframes waitlist-digit-flip{
  0% {
    transform: rotateX(-82deg) translateY(-0.02em);
    opacity: 0.25;
    filter: blur(0.6px);
  }
  55% {
    transform: rotateX(8deg) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce){
  .waitlist-flip__digit.is-flipping .waitlist-flip__digit-static{
    animation: none !important;
  }
}
.newsletter-shell__form-wrap{
  display: grid;
  gap: 10px;
}
.newsletter-benefits{
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 12px 14px;
}
.newsletter-benefits__title{
  margin: 0 0 8px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}
.newsletter-benefits__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.newsletter-benefits__list li{
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.newsletter-benefits__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(42,168,255,0.9));
}
.newsletter-form{
  margin: 0;
}
.newsletter-form__row{
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(5,9,21,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 16px 34px rgba(2,8,24,0.4);
  padding: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.newsletter-form__input{
  min-height: 48px;
  width: 100%;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0 14px;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.newsletter-form__input::placeholder{
  color: rgba(212,222,246,0.58);
}
.newsletter-form__input:focus{
  outline: none;
  box-shadow: none;
}
.newsletter-form__submit{
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 12px;
}
.newsletter-form__consent{
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.newsletter-form__consent input{
  margin-top: 1px;
  width: 15px;
  height: 15px;
  accent-color: #6a7dff;
}
.newsletter-form__status{
  min-height: 1.2em;
  margin-top: 0;
}
.newsletter-shell__note{
  margin-top: 2px;
}
.contact-card .panel__actions{
  margin-top: auto;
}
.contact-social{
  margin-top: 4px;
  display: grid;
  gap: 10px;
}
.contact-social__label{
  margin: 0;
}
.contact-social__links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.contact-social__link{
  padding: 0;
}
.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.social-link:hover{
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.social-link__icon{
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.newsletter-form__status.is-ok{
  color: #98dbb8;
}
.newsletter-form__status.is-error{
  color: #f6a7a7;
}

.fund{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 20px;
}
.fund__left, .fund__right{
  border-radius: var(--surface-radius);
  border: var(--surface-border);
  background: var(--surface-bg);
  box-shadow: var(--surface-shadow);
  padding: var(--surface-pad);
}
.fund__left.funding-main{
  background: rgba(255,255,255,0.018);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.fund__left.funding-main .funding-tier{
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.012);
  box-shadow: none;
}
.fund__left.funding-main .funding-goal-card{
  border: 0;
  background: transparent;
  box-shadow: none;
}
.fund__left.funding-main .funding-tier--featured{
  border-color: rgba(124,92,255,0.34);
  background: rgba(124,92,255,0.10);
}
.fund__left.funding-main .funding-tiers{
  gap: 10px;
}
@media (min-width: 921px){
  #funding .fund{
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  }
}
.funding-main{
  display: grid;
  gap: 14px;
}
.funding-goal-card{
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: var(--surface-radius-sm);
  border: 0;
  background: transparent;
  box-shadow: none;
}
.funding-goal-card__amount{
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(28px, 3.1vw, 44px);
}
.funding-progress-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.funding-progress-pills{
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.funding-progress-stat{
  margin: 0;
  display: grid;
  gap: 4px;
}
.funding-progress-stat__label{
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.funding-progress-stat__value{
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 28px rgba(124,92,255,0.22);
}
.funding-progress-pill{
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124,92,255,0.4);
  background: rgba(124,92,255,0.12);
  color: #dfe7ff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  white-space: nowrap;
}
.funding-progress-pill span{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.88;
  font-weight: 700;
}
.funding-progress-pill strong{
  font-size: 16px;
  line-height: 1;
}
.funding-goal-card__note{
  margin: 0;
}
.progress{
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(10,14,28,0.98), rgba(16,22,44,0.95));
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -1px 0 rgba(0,0,0,0.32);
  margin: 0;
}
.progress__bar{
  position: relative;
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124,92,255,0.95), rgba(42,168,255,0.85));
  box-shadow: 0 0 22px rgba(42,168,255,0.35);
}
.progress__bar::before{
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 9px,
    rgba(255,255,255,0.26) 9px,
    rgba(255,255,255,0.26) 14px
  );
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: fundingBarFlow 10s linear infinite;
}
.progress__bar::after{
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(124,92,255,0.28);
}
.funding-progress-scale{
  margin-top: -2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}
.funding-progress-current{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
}
.funding-progress-goal{
  margin-left: auto;
}
@keyframes fundingBarFlow{
  from{ transform: translateX(0); }
  to{ transform: translateX(28px); }
}
.funding-tiers{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.funding-tier{
  border-radius: var(--surface-radius-sm);
  border: var(--surface-border);
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(124,92,255,0.09), transparent 60%),
    linear-gradient(180deg, rgba(13,18,36,0.76), rgba(8,12,24,0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 14px;
  display: grid;
  gap: 8px;
}
.funding-tier--featured{
  border-color: rgba(124,92,255,0.5);
  background:
    radial-gradient(140% 130% at 0% 0%, rgba(124,92,255,0.22), transparent 58%),
    radial-gradient(130% 120% at 100% 0%, rgba(42,168,255,0.09), transparent 56%),
    linear-gradient(180deg, rgba(14,18,40,0.82), rgba(8,12,24,0.92));
}
.funding-tier__label{
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}
.funding-tier__text{
  margin: 0;
}
.funding-tier .btn{
  width: 100%;
  margin-top: 4px;
}
.funding-consent-note{
  margin: 8px 2px 0;
  color: var(--muted);
  line-height: 1.55;
}
.funding-consent-note a{
  color: var(--c-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.funding-scope-card{
  display: grid;
  align-content: start;
  gap: 12px;
}
.funding-scope-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.funding-scope-list li{
  position: relative;
  padding: 12px 12px 12px 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(140% 150% at 0% 0%, rgba(124,92,255,0.08), transparent 64%),
    linear-gradient(180deg, rgba(17,23,43,0.78), rgba(10,14,27,0.92));
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.funding-scope-list li::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(42,168,255,0.85));
  box-shadow: 0 0 0 4px rgba(124,92,255,0.18);
}
.funding-scope-note{
  margin-top: 2px;
}
.muted{ color: var(--muted); font-weight: 600; }

.fine{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.funding-popup-entry{
  margin-top: 28px;
  display: grid;
  gap: 10px;
  justify-items: start;
}
.funding-popup-entry__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.funding-popup-entry__btn{
  padding-inline: 22px;
}
.funding-popup-entry__hint{
  max-width: 62ch;
}

.funding-popup{
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.funding-popup.is-open{
  opacity: 1;
  pointer-events: auto;
}
.funding-popup__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(4,7,16,0.75);
  backdrop-filter: blur(10px);
}
.funding-popup__panel{
  position: relative;
  width: min(840px, 100%);
  max-height: min(88svh, 900px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(140% 130% at 0% 0%, rgba(124,92,255,0.2), transparent 56%),
    radial-gradient(130% 120% at 100% 0%, rgba(42,168,255,0.14), transparent 54%),
    linear-gradient(180deg, rgba(14,19,37,0.96), rgba(8,10,20,0.98));
  box-shadow: var(--shadow);
  padding: clamp(18px, 3.1vw, 30px);
  display: grid;
  gap: 12px;
}
.funding-popup__close{
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.funding-popup__kicker{
  margin-bottom: 12px;
}
.funding-popup__title{
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  max-width: 19ch;
}
.funding-popup__lead{
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  max-width: 66ch;
}
.funding-popup__charter-title{
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--text);
}
.funding-popup__charter{
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
}
.funding-popup__charter li{
  position: relative;
  padding: 11px 12px 11px 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.funding-popup__charter li::before{
  content: "✓";
  position: absolute;
  left: 13px;
  top: 10px;
  color: rgba(117,247,255,0.95);
  font-weight: 800;
  font-size: 14px;
}
.funding-popup__actions{
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.funding-popup__actions .btn{
  width: 100%;
}
.funding-popup__consent{
  margin: 2px 2px 0;
  color: var(--muted);
  line-height: 1.55;
}
.funding-popup__consent a{
  color: var(--c-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.return-popup{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.return-popup.is-open{
  display: grid;
  opacity: 1;
  pointer-events: auto;
}
.return-popup__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(4,7,16,0.72);
  backdrop-filter: blur(8px);
}
.return-popup__panel{
  position: relative;
  width: min(640px, 100%);
  max-height: min(86dvh, 760px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(130% 120% at 0% 0%, rgba(124,92,255,0.2), transparent 60%),
    radial-gradient(120% 110% at 100% 0%, rgba(42,168,255,0.12), transparent 56%),
    linear-gradient(180deg, rgba(14,19,37,0.95), rgba(8,10,20,0.98));
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
  padding-top: clamp(44px, 4.2vw, 52px);
  display: grid;
  gap: 12px;
}
.return-popup__close{
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  min-height: 34px;
  min-width: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  touch-action: manipulation;
}
.return-popup__kicker{
  margin-bottom: 6px;
}
.return-popup__step{
  display: grid;
  gap: 12px;
}
.return-popup__step[hidden]{
  display: none !important;
}
.return-popup__question{
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
  max-width: 46ch;
}
.return-popup__step-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.return-popup__step-actions .btn{
  width: 100%;
}
.return-popup__content{
  display: grid;
  gap: 10px;
}
.return-popup__content[hidden]{
  display: none !important;
}
.return-popup__title{
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  max-width: 18ch;
}
.return-popup__lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}
.return-popup__form-wrap{
  display: grid;
  gap: 8px;
}
.return-popup__newsletter-form .newsletter-form__consent{
  margin-top: 10px;
  font-size: 12px;
}
.return-popup__status{
  min-height: 1.2em;
}
.return-popup__actions{
  margin-top: 2px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.return-popup__actions .btn{
  width: 100%;
}

body.is-return-modal-open{
  overflow: hidden;
}

/* Footer */
.footer{
  padding: 56px 0 70px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.12);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  align-items:center;
  flex-wrap: wrap;
}
.footer__links{ display:flex; gap: 14px; }
.footer__social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.footer__cookie-btn{
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__cookie-btn:hover{ color: var(--text); }

/* Cinematic reveal */
.cinematic{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity 900ms ease, transform 900ms ease, filter 900ms ease;
}
.cinematic.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 920px){
  .header__inner{
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "logo donate toggle";
    gap: 12px;
    padding: 12px 0;
  }
  .logo{ grid-area: logo; }
  .nav{ display:none; }
  .header__actions{
    grid-area: donate;
    display:flex;
    justify-self:end;
    gap: 8px;
  }
  .header__actions .btn{
    padding: 10px 15px;
    font-size: 13px;
  }
  .header__actions .lang-select{ display:none; }
  .menu-toggle{ display:inline-flex; grid-area: toggle; justify-self:end; }
  .mobile-menu{ display:block; }
  .slides{
    padding: 64px 0 56px;
  }
  .slides__shell{
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
  .slides__rail{
    --idea-card-w: clamp(250px, 76vw, 340px);
    gap: 14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }
  .slide-card{
    min-height: 268px;
    padding: 18px 18px 20px;
    border-radius: 22px;
    gap: 12px;
  }
  .slide-card__title{
    font-size: clamp(24px, 8vw, 36px);
  }
  .slide-card__text{
    font-size: 15px;
    line-height: 1.45;
  }
  .stage{
    --stage-step: 70svh;
    --stage-stick-top: calc(var(--header-h) + 22px);
    --mobile-product-h: 50svh;
  }
  .stage__note{
    margin-bottom: 16px;
  }
  .product-carousel{
    gap: 14px;
  }
  .product-carousel__track{
    /* Card width constraints: mobile min 260px */
    --pc-card-w: clamp(260px, 78vw, 560px);
    --pc-gap: 20px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }
  .product-carousel__track > .media__item{
    gap: 10px;
    min-height: clamp(470px, 70svh, 620px);
    padding: 14px;
  }
  .product-carousel__track > .media__item .media__canvas{
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    height: auto;
    max-height: none;
  }
  .product-carousel__track > .media__item .media__canvas > .symp-mockup,
  .product-carousel__track > .media__item .media__canvas > .symp-modal-mockup,
  .product-carousel__track > .media__item .media__canvas > .symp-user-mockup,
  .product-carousel__track > .media__item .media__canvas > .symp-feed-mockup,
  .product-carousel__track > .media__item .media__canvas > .symp-watch-mockup{
    height: 100%;
  }
  .product-carousel__copy{
    gap: 8px;
    padding-inline: 2px;
  }
  .product-carousel__copy .h3big{
    font-size: clamp(15px, 4.1vw, 20px);
  }
  .product-carousel__copy .pbig{
    font-size: 13px;
    line-height: 1.45;
  }
  .product-carousel__nav{
    padding-inline: 14px;
    margin-top: 2px;
  }
  .slides__nav{
    padding-inline: 14px;
  }
  .slides__nav .talk__arrow,
  .product-carousel__nav .talk__arrow{
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .stage__grid{
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, var(--mobile-product-h)) auto;
    row-gap: 18px;
    align-items: start;
    min-height: 0;
  }
  .product{
    position: relative;
    height: var(--mobile-product-h);
    min-height: var(--mobile-product-h);
    max-height: var(--mobile-product-h);
    justify-content: flex-start;
    overflow: hidden;
  }
  .product__frame{ border-radius: 16px; }
  .product__hero-shot{ border-radius: 0; }
  .product__chrome{ padding: 10px 12px; }
  .product__screen{ padding: 12px; }
  .product__media{
    width: min(100%, 480px);
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  .product__media .media__item{
    place-items: start center;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  .product__media .media__canvas{
    height: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  .product__media .media__canvas > .symp-mockup,
  .product__media .media__canvas > .symp-modal-mockup,
  .product__media .media__canvas > .symp-user-mockup,
  .product__media .media__canvas > .symp-feed-mockup,
  .product__media .media__canvas > .symp-watch-mockup{
    height: calc(100% - 54px);
  }
  .product__hero-shot,
  .media__shot{
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  .product > .fine{ display:none; }
  .talk{
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
  }
  .talk__nav{
    position: static;
    margin-top: 0;
    order: 1;
    align-self: flex-start;
    gap: 5px;
    padding: 4px;
  }
  .talk__arrow{ width: 26px; height: 26px; font-size: 12px; }
  .talk__position{ min-width: 34px; font-size: 10px; }
  .talk__step{
    position: static;
    inset: auto;
    display: none;
    opacity: 0;
    pointer-events: none;
    justify-content: flex-start;
    order: 2;
  }
  .talk__step.is-active{
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .h3big{ font-size: clamp(20px, 6vw, 28px); }
  .pbig{ font-size: 15px; line-height: 1.6; }

  /* Keep mockups visually consistent on mobile */
  .symp-mockup__topbar{ padding: 8px 10px; }
  .symp-mockup__brand{ font-size: 16px; }
  .symp-mockup__token{ font-size: 8px; padding: 4px 8px; }
  .symp-mockup__hero{
    margin: 8px 10px 0;
    min-height: 84px;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }
  .symp-mockup__hero-copy{ padding: 10px 11px; gap: 5px; }
  .symp-mockup__eyebrow{ font-size: 8px; }
  .symp-mockup__hero-title{ font-size: 13px; max-width: 16ch; }
  .symp-mockup__hero-placeholder span{ height: 6px; }
  .symp-mockup__hero-placeholder span:nth-child(2){ display: none; }
  .media__item[data-state="5"] .symp-feed-mockup__subtitle{ display: none; }
  .media__item[data-state="1"] .symp-mockup__hero-placeholder{ display: none; }
  .symp-mockup__content{ padding: 8px 10px 10px; gap: 8px; }
  .symp-mockup__section-title{ font-size: 10px; }
  .symp-mockup__participants{ padding: 8px; gap: 6px; }
  .symp-mockup__timeline{ padding: 8px; gap: 8px; }
  .symp-mockup__lane{ gap: 6px; }
  .symp-mockup__person div strong,
  .symp-mockup__entry-meta strong{ font-size: 9px; }
  .symp-mockup__person div span,
  .symp-mockup__entry-meta span,
  .symp-mockup__time{ font-size: 7px; }
  .symp-mockup__clip{ width: 58px; height: 58px; }
  .symp-mockup__insight,
  .symp-chat-mockup__insight{
    width: 56px;
    height: 14px;
    padding: 0;
    font-size: 6px;
  }
  .symp-chat-mockup__hero{
    margin: 8px 10px 0;
  }
  .symp-chat-mockup__hero-copy{
    padding: 9px 10px;
    gap: 6px;
  }
  .symp-chat-mockup__title-line{
    height: 6px;
  }
  .symp-chat-mockup__hero-meta span{
    font-size: 7px;
    padding: 2px 6px;
  }
  .symp-chat-mockup__content{
    padding: 8px 10px 10px;
    gap: 8px;
  }
  .symp-chat-mockup__participants{ padding: 8px; gap: 6px; }
  .symp-chat-mockup__timeline{ padding: 8px; gap: 8px; }
  .symp-chat-mockup__lane{ gap: 6px; }
  .symp-chat-mockup__msg{ width: min(180px, 88%); }
  .symp-chat-mockup__msg-role{ font-size: 7px; }
  .symp-chat-mockup__bubble{ padding: 6px 7px; gap: 4px; }
  .symp-chat-mockup__bubble i{ height: 5px; }
  .symp-chat-mockup__insight{ margin-top: 1px; }
  .symp-chat-mockup__msg--left .symp-chat-mockup__insight{ justify-self: start; }
  .symp-chat-mockup__msg--right .symp-chat-mockup__insight{ justify-self: end; }
  .symp-chat-mockup__bubble--audio{
    gap: 6px;
    padding: 5px 7px;
  }
  .symp-chat-mockup__audio-play{
    width: 18px;
    height: 18px;
  }
  .symp-chat-mockup__audio-play::before{
    left: 7px;
    top: 5px;
    border-left-width: 5px;
    border-top-width: 4px;
    border-bottom-width: 4px;
  }
  .symp-chat-mockup__audio-track{
    height: 6px;
  }
  .symp-chat-mockup__audio-knob{
    width: 7px;
    height: 7px;
  }
  .symp-chat-mockup__audio-timecode{
    font-size: 7px;
  }
  .symp-chat-mockup__audio-speed{
    min-width: 28px;
    height: 15px;
    padding: 0 6px;
    font-size: 7px;
  }
  .symp-modal-mockup__header{ justify-content: space-between; }
  .symp-modal-mockup__name{ display: inline; }
  .media__item[data-state="2"] .symp-modal-video__meta{ display: none; }
  .symp-modal-card__title{ font-size: 8px; }
  .symp-modal-tags span{ font-size: 8px; }
  .symp-modal-comments strong{ font-size: 9px; }
  .symp-ui-card__title{ font-size: 7px; }
  .symp-feed-mockup__title{ font-size: 11px; }
  .media__item[data-state="5"] .symp-feed-mockup__layout{
    padding: 6px 10px 8px;
    align-items: start;
  }
  .media__item[data-state="5"] .symp-feed-mockup__rail{
    gap: 6px;
    align-content: start;
    align-items: start;
  }
  .media__item[data-state="5"] .symp-feed-mockup__rail .symp-ui-card{
    padding: 6px;
    gap: 5px;
  }
  .media__item[data-state="5"] .symp-feed-mockup__rail .symp-ui-card:last-child{
    padding-bottom: 5px;
  }
  .symp-feed-mockup__rail .symp-ui-card__title{
    font-size: 6px;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }
  .media__item[data-state="5"] .symp-feed-mockup__rail .symp-ui-chips{
    gap: 4px;
  }
  .media__item[data-state="5"] .symp-feed-mockup__rail .symp-ui-chips span{
    height: 14px;
  }
  .media__item[data-state="5"] .symp-feed-mockup__rail .symp-ui-chips span:nth-child(n+4){
    display: none;
  }
  .symp-feed-debate-card{ --feed-media-h: 52px; grid-template-rows: var(--feed-media-h) 1fr; }
  .symp-feed-debate-grid{ max-height: 282px; }
  .symp-feed-debate-card::after{ top: 26px; }
  .symp-feed-mockup__cursor{ top: 26px; }
  .symp-feed-debate-card__title{ font-size: 8px; }
  .symp-feed-debate-card__text i{ height: 4px; }
  .symp-feed-debate-card__text i.short{ display: none; }
  .media__item[data-state="5"] .symp-feed-debate-grid .symp-feed-debate-card:nth-child(n+5){
    display: none;
  }
  .symp-watch-headline__kicker{ font-size: 7px; }
  .symp-watch-headline__title{ font-size: 14px; }
  .media__item[data-state="6"] .symp-watch-main{
    align-content: start;
    gap: 10px;
  }
  .media__item[data-state="6"] .symp-watch-player{
    min-height: 160px;
    padding-bottom: 10px;
    gap: 6px;
    align-content: start;
  }
  .media__item[data-state="6"] .symp-watch-main > .symp-ui-card:last-child{
    min-height: 135px;
    align-content: start;
  }
  .symp-watch-player__surface{
    position: relative;
    isolation: isolate;
    min-height: 0;
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
    margin-bottom: 3px;
  }
  .symp-watch-player__speaker{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-size: auto, auto;
    background-position: center;
  }
  .symp-watch-player__play{
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .symp-watch-player__times{ font-size: 9px; }
  .media__item[data-state="6"] .symp-watch-player__segments,
  .media__item[data-state="6"] .symp-watch-player__times{
    position: relative;
    z-index: 2;
  }
  .media__item[data-state="6"] .symp-watch-player__meta{
    display: none;
  }
  .media__item[data-state="6"] .symp-watch-main > .symp-ui-card:last-child .symp-ui-list span:last-child{
    display: none;
  }
  .media__item[data-state="6"] .symp-watch-related > span:nth-child(3){
    display: none;
  }
  .symp-profile-card{ align-self: start; }
  .media__item[data-state="4"] .symp-profile-tabs{ display: none; }
  .media__item[data-state="4"] .symp-profile-main{ min-height: 180px; }
  .media__item[data-state="4"] .symp-revenue-role strong{ font-size: 11px; }
  .media__item[data-state="4"] .symp-ui-card--revenue-symposyum{
    position: static;
    top: auto;
    transform: none;
    margin-top: 0;
    padding-bottom: 10px;
  }
  .media__item[data-state="4"] .symp-revenue-list span:nth-child(3){ display: none; }
  .media__item[data-state="4"] .symp-profile-main > .symp-ui-card:last-child{ display: none; }
  .fund{ grid-template-columns: 1fr; }
  .fund__left, .fund__right{ padding: 14px; }
  .contact-card{
    padding: 16px;
  }
  .contact-card .panel__title{
    font-size: clamp(30px, 8.2vw, 42px);
  }
  .contact-card .panel__text{
    font-size: 16px;
    margin-bottom: 18px;
  }
  .contact-card .panel__actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-card .panel__actions .btn{
    width: 100%;
    min-height: 44px;
  }
  .contact-social{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .contact-social__label{
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .contact-social__links{
    justify-content: center;
    gap: 10px;
  }
  .contact-social__link{
    min-height: 0;
  }
  .newsletter-shell{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }
  .newsletter-shell__title{
    max-width: 100%;
    margin-bottom: 10px;
  }
  .newsletter-shell__text{
    font-size: 16px;
  }
  .newsletter-benefits{
    padding: 11px 12px;
  }
  .newsletter-benefits__title{
    font-size: 11px;
  }
  .newsletter-benefits__list li{
    font-size: 12px;
  }
  .newsletter-form__row{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }
  .newsletter-form__submit{
    width: 100%;
  }
  .funding-main{ gap: 12px; }
  .funding-goal-card{ padding: 18px; }
  .funding-tiers{ grid-template-columns: 1fr; }
  .funding-tier{ padding: 16px; }
  .funding-consent-note{
    margin-top: 6px;
    font-size: 13px;
  }
  .funding-goal-card__amount{ font-size: clamp(25px, 8vw, 34px); }
  .funding-progress-head{
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .funding-progress-pills{
    justify-content: flex-start;
  }
  .funding-progress-stat__value{
    font-size: clamp(24px, 7vw, 34px);
  }
  .funding-progress-pill{
    align-self: flex-start;
  }
  .funding-scope-list li{
    font-size: 14px;
    padding: 14px 14px 14px 40px;
  }
  .funding-popup{
    padding: 10px;
  }
  .funding-popup__panel{
    width: 100%;
    max-height: calc(100svh - 20px);
    border-radius: 18px;
    padding: 16px;
  }
  .funding-popup__close{
    top: 10px;
    right: 10px;
  }
  .funding-popup__title{
    font-size: clamp(24px, 7.2vw, 34px);
  }
  .funding-popup__lead{
    font-size: 16px;
  }
  .funding-popup__charter{
    font-size: 14px;
    gap: 7px;
  }
  .funding-popup__charter li{
    padding-left: 34px;
  }
  .funding-popup__charter li::before{
    left: 11px;
  }
  .funding-popup__actions{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .funding-popup__consent{
    font-size: 13px;
  }
  .return-popup{
    padding: 10px;
  }
  .return-popup__panel{
    width: 100%;
    max-height: calc(100svh - 20px);
    border-radius: 18px;
    padding: 44px 16px 16px;
    gap: 10px;
  }
  .return-popup__close{
    top: 8px;
    right: 8px;
  }
  .return-popup__title{
    font-size: clamp(24px, 7vw, 32px);
    max-width: none;
  }
  .return-popup__question{
    font-size: 16px;
  }
  .return-popup__step-actions{
    grid-template-columns: 1fr;
  }
  .return-popup__lead{
    font-size: 15px;
  }
  .return-popup__actions{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .funding-popup-entry__actions{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .funding-popup-entry__actions .btn{
    width: 100%;
  }

  /* Footer mobile cleanup */
  .footer{
    padding: 34px 0 40px;
  }
  .footer__inner{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .footer__inner > .fine{
    text-align: center;
    font-size: 12px;
  }
  .footer__links{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .footer__links .fine,
  .footer__cookie-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 8px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    text-align: center;
    line-height: 1.25;
    font-size: 12px;
  }
  .footer__cookie-btn{
    text-underline-offset: 0;
  }
  .footer__social{
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .footer__social .social-link{
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

}

/* Keep carousel cards independent from legacy stage selectors */
.product-carousel__track > .media__item[data-state]{
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  place-items: stretch;
  align-content: start;
  border: none;
  background: transparent;
  padding: 0;
  min-height: 0;
}
.product-carousel__track > .media__item[data-state] .media__canvas{
  width: 100%;
  max-width: none;
  min-width: 0;
  aspect-ratio: 1 / 1.12;
  height: auto;
  padding: clamp(14px, 1.4vw, 22px);
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(16,24,40,0.9), rgba(9,14,27,0.94));
  box-shadow: 0 16px 44px rgba(0,0,0,0.34);
  margin-inline: auto;
  margin-block: 0;
  overflow: hidden;
}
.product-carousel__track > .media__item[data-state] .product-carousel__copy{
  text-align: left;
  padding-inline: 0;
  gap: 6px;
}

/* Temporary placeholder mode for Product mockups */
.product-carousel__track > .media__item[data-state] .media__canvas{
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  background-image: url("./media/pictures/product-placeholder-desktop.svg") !important;
  background-size: 60% auto !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.product-carousel__track > .media__item[data-state] .media__canvas::after{
  display: none !important;
}
.product-carousel__track > .media__item[data-state] .media__canvas > *{
  display: none !important;
}

@media (max-width: 920px){
  .product-carousel__track > .media__item[data-state] .media__canvas{
    aspect-ratio: 5 / 6 !important;
    background-image: url("./media/pictures/product-placeholder-mobile.svg") !important;
    background-size: 60% auto !important;
  }
}

/* First carousel card (Agora): real mockups */
.product-carousel__track > .media__item[data-state="5"] .media__canvas{
  background-image: url("./media/pictures/mockups/card1desktop.png") !important;
  background-size: cover !important;
}

/* Second carousel card (Stage): desktop mockup */
.product-carousel__track > .media__item[data-state="1"] .media__canvas{
  background-image: url("./media/pictures/mockups/card2desktop.png") !important;
  background-size: cover !important;
}

/* Third carousel card (Chamber): desktop mockup */
.product-carousel__track > .media__item[data-state="3"] .media__canvas{
  background-image: url("./media/pictures/mockups/card3desktop.png") !important;
  background-size: cover !important;
}

/* Fourth carousel card (Insights): desktop mockup */
.product-carousel__track > .media__item[data-state="2"] .media__canvas{
  background-image: url("./media/pictures/mockups/card4desktop.png") !important;
  background-size: cover !important;
}

/* Fifth carousel card (Watch): desktop mockup */
.product-carousel__track > .media__item[data-state="6"] .media__canvas{
  background-image: url("./media/pictures/mockups/card5desktop.png") !important;
  background-size: cover !important;
}

/* Sixth carousel card (Podcast): desktop mockup */
.product-carousel__track > .media__item[data-state="7"] .media__canvas{
  background-image: url("./media/pictures/mockups/card6desktop.png") !important;
  background-size: cover !important;
}
/* Seventh carousel card (Profile): desktop mockup */
.product-carousel__track > .media__item[data-state="4"] .media__canvas{
  background-image: url("./media/pictures/mockups/card7desktop.png") !important;
  background-size: cover !important;
}
@media (max-width: 920px){
  .product-carousel__track > .media__item[data-state="5"] .media__canvas{
    background-image: url("./media/pictures/mockups/card1mobile.png") !important;
    background-size: cover !important;
  }
  .product-carousel__track > .media__item[data-state="2"] .media__canvas{
    background-image: url("./media/pictures/mockups/card4mobile.png") !important;
    background-size: cover !important;
  }
  .product-carousel__track > .media__item[data-state="6"] .media__canvas{
    background-image: url("./media/pictures/mockups/card5mobile.png") !important;
    background-size: cover !important;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .cinematic{ transition:none; transform:none; filter:none; opacity:1; }
  .media__item{ transition:none; transform:none; filter:none; }
  .symp-modal-video__avatar,
  .symp-watch-player__speaker{ animation: none; }
  .media__item[data-state="1"].is-pop-from-feed .media__canvas{ animation: none; }
  .media__item[data-state="2"].is-pop-from-insight .media__canvas{ animation: none; }
  .media__item[data-state="2"].is-pop-to-insight{ animation: none; }
  .talk__step{ transition:none; }
  .slide{ transition:none; }
  .progress__bar::before{ animation:none; }
}
