:root {
  --poko-accent: #e51a4b;
  --poko-accent-dark: #c3123f;
  --poko-accent-soft: rgba(229, 26, 75, .1);
  --poko-ink: #171619;
  --poko-charcoal: #29272c;
  --poko-body: #333;
  --poko-muted: #68646b;
  --poko-pale: #fff7f9;
  --poko-soft: #f4f2f1;
  --poko-white: #fff;
  --poko-container: 1200px;
  --poko-reading: 760px;
  --poko-radius-sm: 10px;
  --poko-radius-md: 18px;
  --poko-radius-lg: 28px;
  --poko-radius-pill: 999px;
  --poko-shadow: 0 18px 50px rgba(32, 13, 22, 0.12);
  --poko-shadow-hover: 0 26px 64px rgba(32, 13, 22, 0.18);
  --poko-section-space: clamp(4rem, 7vw, 6.25rem);
  --poko-section-space-spacious: clamp(4.5rem, 8.5vw, 7.5rem);
  --poko-section-space-compact: clamp(3rem, 5vw, 4.5rem);
  --poko-heading-gap: clamp(1.75rem, 3.2vw, 2.75rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden;
}

/*
 * The homepage pattern renders header, hero, sections and footer as direct
 * children of .wp-site-blocks (the post-content filter returns the pattern
 * without a wrapper). Core adds margin-block-start: 24px between those
 * children, which produced a visible gap under the header and between every
 * section. Sections own their vertical rhythm through padding instead.
 */
body .wp-site-blocks > *,
body .wp-block-post-content > * {
  margin-block: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--poko-accent);
  outline-offset: 4px;
}

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

.poko-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--poko-section-space);
}

/* Spacing variants follow the production rhythm: designed stages (Speakers, CYE)
   breathe more, short utility sections (FAQ) sit tighter. */
.poko-section--spacious {
  padding-block: var(--poko-section-space-spacious);
}

.poko-section--compact {
  padding-block: var(--poko-section-space-compact);
}

.poko-section--soft {
  background: var(--poko-soft);
}

/*
 * Accessibility (Phase 7.5, approved design decision): --poko-accent
 * measures 4.10:1 on this #f4f2f1 background, short of 4.5:1. Darker,
 * still on-hue shade used only on this light background; contrast: 5.81:1.
 */
.poko-section--soft .poko-kicker,
.poko-section--soft .poko-eyebrow {
  color: #ba1339;
}

.poko-section--dark {
  background: var(--poko-ink);
  color: var(--poko-white);
}

.poko-section--dark h2,
.poko-section--dark h3,
.poko-section--dark a {
  color: inherit;
}

.poko-section-heading {
  max-width: var(--poko-reading);
  margin-bottom: var(--poko-heading-gap);
}

.poko-section-heading h2,
.poko-split h2,
.poko-cye h2,
.poko-contact h2,
.poko-ticket-band h2 {
  margin: .12em 0 .26em;
  font-size: clamp(2.15rem, 5.6vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.poko-section-heading > p:last-child,
.poko-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}

.poko-kicker,
.poko-eyebrow {
  margin: 0 0 .8rem;
  color: var(--poko-accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.poko-kicker--dash::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 3px;
  margin: 0 10px 3px 0;
  border-radius: var(--poko-radius-pill);
  background: var(--poko-accent);
  box-shadow: 0 0 18px rgba(229, 26, 75, .35);
  vertical-align: middle;
}

.poko-pill {
  display: inline-block;
  margin: 0 0 .8rem;
  padding: 8px 14px;
  border-radius: var(--poko-radius-pill);
  background: var(--poko-accent-soft);
  color: var(--poko-accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.poko-pill--neutral {
  background: rgba(17, 17, 17, .06);
  color: var(--poko-ink);
}

.poko-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.poko-button {
  display: inline-flex;
  box-sizing: border-box;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.35rem;
  border: 2px solid transparent;
  border-radius: var(--poko-radius-pill);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.poko-button:hover {
  transform: translateY(-2px);
}

.poko-button:active {
  transform: translateY(0) scale(.98);
}

.poko-button--primary {
  background: var(--poko-accent);
  color: var(--poko-white) !important;
}

.poko-button--dark {
  background: var(--poko-ink);
  color: var(--poko-white) !important;
}

.poko-button--light {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.poko-text-link {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--poko-accent-dark);
  font-weight: 800;
  text-underline-offset: .2em;
}

.poko-content-note {
  color: var(--poko-muted);
  font-size: .88rem;
}

/*
 * Core wraps the header template part in its own <header class=
 * "wp-block-template-part"> box, sized to exactly the header's own height.
 * A sticky element can only stick within room left by its containing
 * block, so that wrapper (as tall as .poko-header itself) left no room to
 * detach from flow and the header just scrolled away. display: contents
 * removes the wrapper from the box tree so .poko-header's containing
 * block becomes .wp-site-blocks, which spans the full page height.
 */
header.wp-block-template-part {
  display: contents;
}

.poko-header {
  position: sticky;
  z-index: 100;
  top: 0;
  margin: 0 !important;
  border-bottom: 1px solid rgba(23, 22, 25, .08);
  background: rgba(255, 255, 255, .97);
}

.admin-bar .poko-header {
  top: 32px;
}

.poko-header__inner {
  min-height: 84px;
  padding-block: .5rem;
}

.poko-header__logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.poko-navigation {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.poko-navigation a {
  text-decoration: none;
}

.poko-navigation__language > a {
  padding: .45rem .7rem !important;
  border: 1px solid var(--poko-ink);
  border-radius: var(--poko-radius-pill);
}

.wp-block-navigation__responsive-container.is-menu-open {
  padding: 1.5rem;
  background: var(--poko-white);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: 4rem;
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  color: var(--poko-ink);
}

.poko-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 84px));
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--poko-ink);
  color: var(--poko-white);
}

.poko-hero__backdrop,
.poko-hero__backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poko-hero__backdrop img {
  object-fit: cover;
  object-position: center;
  /* Production keeps the Kraków photo bright and present; the glass card
     supplies its own contrast for the content it holds. */
  opacity: .88;
}

.poko-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .98fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.poko-hero__brand {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
}

/* Production's logo plate is a modest badge that leaves most of the Kraków
   photo visible, not a dominant left-side element — sized to match. */
.poko-hero__circle {
  position: absolute;
  width: min(17vw, 240px);
  max-width: none;
}

.poko-hero__logo {
  position: relative;
  z-index: 2;
  width: min(15vw, 210px);
}

.poko-hero .poko-pill {
  background: var(--poko-accent-soft);
  color: var(--poko-accent);
}

.poko-hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  color: var(--poko-ink);
  text-align: center;
}

/* Production glass card: translucent white over the Kraków photo with a blur.
   Browsers without backdrop-filter keep the more opaque fallback above. */
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .poko-hero__content {
    background: rgba(255, 255, 255, .6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* Production keeps this as a restrained single heading, not the site's
   largest display-heading tier — the date pill and the video underneath
   carry more visual weight than the title itself. */
.poko-hero h1 {
  max-width: 480px;
  margin: 0 0 1rem;
  color: var(--poko-ink);
  font-size: clamp(1.7rem, 1.9vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.poko-hero__content > .poko-lead {
  max-width: 440px;
  margin: 0 0 1.4rem;
  color: var(--poko-body);
}

/* A large, distinct media object — not a second translucent card nested
   inside the glass card (Phase 4.7 "glass inside glass" correction still
   holds) — sized to be a major Hero element, matching production. */
.poko-hero-video {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 520px;
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: 14px;
  background: var(--poko-ink);
  box-shadow: 0 14px 32px rgba(23, 22, 25, .28);
  color: var(--poko-white);
  text-decoration: none;
}

/* The poster is a light image; a dark bottom gradient makes the tile read as
   one solid media object (and carries the label) rather than a second glass layer. */
.poko-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 16, 19, 0) 35%, rgba(17, 16, 19, .72) 100%);
  pointer-events: none;
}

.poko-hero-video img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.poko-hero-video__play {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--poko-accent);
  transform: translate(-50%, -50%);
}

.poko-hero-video__label {
  position: absolute;
  z-index: 1;
  right: .75rem;
  bottom: .6rem;
  left: .75rem;
  font-size: .78rem;
  font-weight: 800;
  text-align: right;
}

/* Hero-only CTA composition: centered and vertically stacked, matching
   production, rather than the side-by-side pair used elsewhere (e.g. the
   .poko-actions single-button case in the After Party section, left
   untouched). Scoped to the Hero card so no other section is affected. */
.poko-hero__content .poko-actions {
  flex-direction: column;
  gap: .85rem;
}

.poko-hero__art {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.poko-hero__art--left {
  z-index: 1;
  bottom: -40px;
  left: 36%;
  width: clamp(170px, 18vw, 250px);
}

.poko-hero__art--right {
  z-index: 5;
  top: 54%;
  right: -70px;
  width: clamp(180px, 20vw, 290px);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .45)) drop-shadow(0 38px 64px rgba(0, 0, 0, .36));
}

.poko-value {
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding-block: var(--poko-section-space);
  background: var(--poko-white);
}

.poko-value > .wp-block-group {
  position: relative;
  z-index: 1;
}

.poko-value__intro {
  max-width: var(--poko-reading) !important;
  margin: 0 auto clamp(2rem, 4vw, 3rem) !important;
  text-align: center;
}

.poko-value__intro h2 {
  font-size: clamp(2.15rem, 5vw, 4.5rem);
}

.poko-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* The group carries core's flow layout; its child margin must not offset cards 2-3. */
.poko-value__grid > * {
  margin-block: 0 !important;
}

.poko-value-card {
  overflow: hidden;
  border-radius: var(--poko-radius-lg);
  background: var(--poko-white);
  box-shadow: var(--poko-shadow);
  transition: transform .22s ease, box-shadow .22s ease, opacity .5s ease;
}

.poko-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--poko-shadow-hover);
}

.poko-value-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.poko-value-card div {
  padding: 1.5rem;
}

.poko-value-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.poko-brand-art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/*
 * Approved POKO motifs, placed where the production design places them:
 * asset-a / asset-d flank the Value and Venue sections and the pink ticket
 * band; asset-b / asset-c sit in the Contact corners. CSS only positions the
 * original artwork.
 */
.poko-brand-art--side-a {
  top: 55%;
  left: -190px;
  width: min(38vw, 520px);
  opacity: .12;
  transform: translateY(-50%);
}

.poko-brand-art--side-d {
  top: 45%;
  right: -210px;
  width: min(40vw, 560px);
  opacity: .1;
  transform: translateY(-50%);
}

.poko-brand-art--band-a {
  top: 50%;
  left: -120px;
  width: 420px;
  opacity: .24;
  transform: translateY(-50%) rotate(-8deg);
}

.poko-brand-art--band-d {
  top: 50%;
  right: -150px;
  width: 460px;
  opacity: .22;
  transform: translateY(-50%) rotate(8deg);
}

.poko-brand-art--corner-b {
  top: -110px;
  left: -140px;
  width: min(40vw, 560px);
  opacity: .14;
}

.poko-brand-art--corner-c {
  right: -160px;
  bottom: -130px;
  width: min(44vw, 620px);
  opacity: .12;
}

.poko-section > .poko-container,
.poko-ticket-band > .poko-container {
  position: relative;
  z-index: 1;
}

/* Speakers: production treatment - pale gradient, watermark, centred header, dark portrait cards */
.poko-speakers {
  background:
    radial-gradient(circle at 92% 10%, rgba(229, 26, 75, .11), transparent 27rem),
    radial-gradient(circle at 4% 96%, rgba(82, 61, 180, .1), transparent 30rem),
    linear-gradient(180deg, #f7f6f8 0%, #fff 100%);
}

.poko-speakers::before {
  content: attr(data-watermark);
  position: absolute;
  top: 8px;
  left: 50%;
  color: rgba(23, 22, 25, .035);
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.poko-speakers .poko-section-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.poko-speakers .poko-section-heading h2 strong {
  color: var(--poko-accent);
}

.poko-speakers .poko-section-heading > p:last-child {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(23, 22, 25, .68);
}

.poko-speakers .poko-content-note {
  margin: 1.5rem auto 0;
  text-align: center;
}

.poko-speaker-grid {
  --poko-speaker-gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--poko-speaker-gap);
  justify-content: center;
}

/* Collapsed state keeps one complete row per breakpoint; the rest stays in the DOM. */
.poko-speaker-grid.is-collapsed > .poko-speaker-card:nth-child(n + 4) {
  display: none;
}

.poko-collapse-actions {
  margin: 1.75rem 0 0;
  text-align: center;
}

.poko-collapse-toggle {
  cursor: pointer;
  font-family: inherit;
}

.poko-speaker-card {
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 calc((100% - 2 * var(--poko-speaker-gap)) / 3);
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 16%, rgba(229, 26, 75, .38), transparent 15rem),
    radial-gradient(circle at 8% 90%, rgba(82, 61, 180, .32), transparent 18rem),
    #222025;
  box-shadow: 0 24px 60px rgba(23, 22, 25, .16);
  color: var(--poko-white);
  transition: transform .22s ease, box-shadow .22s ease, opacity .5s ease;
}

.poko-speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 74px rgba(23, 22, 25, .24);
}

.poko-speaker-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 16, 19, .02) 18%, rgba(17, 16, 19, .25) 52%, rgba(17, 16, 19, .96) 100%);
  pointer-events: none;
}

.poko-speaker-card__portrait {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
}

.poko-speaker-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poko-speaker-card__initials {
  color: rgba(255, 255, 255, .13);
  font-size: clamp(4.5rem, 8vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -.07em;
}

.poko-speaker-card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.poko-speaker-card__body h3 {
  margin: .6rem 0 .4rem;
  color: var(--poko-white);
  font-size: 1.5rem;
  letter-spacing: -.03em;
}

.poko-speaker-card__body p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}

.poko-speaker-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  color: rgba(255, 255, 255, .74);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.poko-speaker-card__meta span + span::before {
  content: "·";
  margin-right: .35rem;
}

/* CYE: production composition - near-black stage, red CSS shapes (no artwork exists for these), badge, divider steps */
.poko-cye {
  --poko-cye-red: #e30613;
  background: #0b0b0d;
}

.poko-cye::before,
.poko-cye::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.poko-cye::before {
  top: -200px;
  right: -300px;
  width: 520px;
  height: 520px;
  background: var(--poko-cye-red);
  opacity: .95;
}

.poko-cye::after {
  bottom: 130px;
  left: -220px;
  width: 280px;
  height: 280px;
  border: 60px solid var(--poko-cye-red);
  opacity: .35;
}

.poko-cye .poko-kicker {
  color: #ff3340;
}

.poko-cye .poko-kicker--dash::before {
  background: var(--poko-cye-red);
  box-shadow: none;
}

.poko-cye__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.poko-cye h2 span {
  color: var(--poko-cye-red);
}

.poko-cye .poko-lead {
  max-width: 780px;
  color: rgba(255, 255, 255, .86);
}

.poko-cye__badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 260px;
  height: 260px;
  margin-inline: auto;
  padding: 38px;
  border-radius: 50%;
  background: var(--poko-cye-red);
  color: var(--poko-white);
  transform: rotate(4deg);
}

.poko-cye__badge-small {
  margin-bottom: 3px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.poko-cye__badge strong {
  display: block;
  font-size: 4.1rem;
  letter-spacing: -.06em;
  line-height: .95;
}

.poko-cye__badge > span:last-child {
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.poko-cye__steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.poko-cye__steps article {
  padding: 2.4rem 2.2rem 2.6rem 0;
}

.poko-cye__steps article + article {
  padding-left: 2.2rem;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.poko-cye__steps span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--poko-cye-red);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.poko-cye__steps h3 {
  margin: 0 0 .7rem;
  font-size: 1.4rem;
  line-height: 1.2;
}

.poko-cye__steps p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.poko-cye__cta {
  grid-column: 1 / -1;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 2.4rem);
  background: var(--poko-cye-red);
}

.poko-cye__cta p {
  margin: 0;
  font-size: 1.15rem;
}

.poko-cye__cta .poko-button {
  background: var(--poko-white);
  color: var(--poko-ink) !important;
}

.poko-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.poko-venue {
  background:
    radial-gradient(900px 480px at 12% 28%, rgba(226, 27, 67, .1), rgba(226, 27, 67, 0) 62%),
    radial-gradient(760px 460px at 88% 75%, rgba(226, 27, 67, .08), rgba(226, 27, 67, 0) 65%),
    linear-gradient(180deg, #fff 0%, #fff7f9 100%);
}

.poko-split > div:not(.poko-offer-card) > address {
  margin: .75rem 0 1.4rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--poko-accent);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, .64);
}

.poko-section--dark .poko-split > div:not(.poko-offer-card) > address {
  background: rgba(255, 255, 255, .06);
}

.poko-media-card {
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.poko-media-card > img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.poko-media-card figcaption {
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .08);
  font-size: .78rem;
}

.poko-facts {
  display: grid;
  gap: .65rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.poko-facts li {
  padding-left: 1.5rem;
}

.poko-facts li::before,
.poko-check::before {
  content: "✓";
  margin-left: -1.5rem;
  margin-right: .6rem;
  color: var(--poko-accent);
  font-weight: 900;
}

address {
  font-style: normal;
}

.poko-room-key {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.poko-room-key > div {
  display: grid;
  gap: .2rem;
  padding: .85rem 1rem;
  border-radius: var(--poko-radius-md);
  background: var(--poko-white);
}

.poko-room-key span {
  color: var(--poko-muted);
}

/* Agenda: production dark charcoal/crimson stage with light session cards */
.poko-agenda {
  background:
    radial-gradient(circle at 86% 8%, rgba(229, 26, 75, .34) 0, rgba(229, 26, 75, .14) 22%, rgba(229, 26, 75, 0) 46%),
    radial-gradient(circle at 4% 84%, rgba(229, 26, 75, .28) 0, rgba(229, 26, 75, .12) 24%, rgba(229, 26, 75, 0) 48%),
    linear-gradient(180deg, #2b2a29 0%, #201f1f 100%);
  color: var(--poko-white);
}

.poko-agenda h2 {
  color: var(--poko-white);
}

.poko-agenda .poko-section-heading > p:last-child {
  color: rgba(255, 255, 255, .82);
}

.poko-agenda .poko-content-note {
  color: rgba(255, 255, 255, .62);
}

.poko-agenda .poko-room-key > div {
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 3px solid var(--poko-accent);
  background: rgba(255, 255, 255, .08);
  color: var(--poko-white);
}

.poko-agenda .poko-room-key > div:last-child {
  border-top-color: var(--poko-white);
}

.poko-agenda .poko-room-key strong {
  font-size: 1rem;
}

.poko-agenda .poko-room-key span {
  font-size: .88rem;
}

.poko-agenda .poko-room-key span {
  color: rgba(255, 255, 255, .74);
}

.poko-agenda-list {
  display: grid;
  gap: .45rem;
}

.poko-agenda-list.is-collapsed .poko-agenda-item--more {
  display: none;
}

.poko-agenda .poko-collapse-actions {
  text-align: left;
}

.poko-agenda-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 0%, #fff4f7 100%);
  color: var(--poko-body);
}

.poko-agenda-item__time {
  display: grid;
  align-content: center;
  padding: .7rem .5rem;
  background: var(--poko-accent);
  color: var(--poko-white);
  font-size: .85rem;
  line-height: 1.3;
  text-align: center;
}

.poko-agenda-item__time time {
  font-size: 1.05rem;
  font-weight: 800;
}

.poko-agenda-item__content {
  padding: .7rem 1.1rem .75rem;
}

.poko-agenda-item__content h3 {
  margin: .1rem 0 .15rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.poko-agenda-item__content p {
  margin: .1rem 0;
  font-size: .92rem;
  line-height: 1.45;
}

.poko-agenda-item__room {
  color: var(--poko-accent-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.poko-agenda-item__note {
  color: var(--poko-muted);
  font-size: .82rem;
}

.poko-agenda .poko-collapse-actions {
  margin-top: 1.25rem;
}

.poko-ticket-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(720px 280px at 18% 50%, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 66%),
    radial-gradient(640px 260px at 85% 45%, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0) 70%),
    linear-gradient(135deg, #e21b43 0%, #ff174d 42%, #b8002a 100%);
  color: var(--poko-white);
}

.poko-ticket-band .poko-kicker {
  color: rgba(255, 255, 255, .82);
}

.poko-ticket-band .poko-button--primary {
  background: var(--poko-ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

.poko-ticket-band .poko-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.poko-ticket-band h2 {
  max-width: 640px;
  margin-bottom: 0;
  color: inherit;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  letter-spacing: -.02em;
  line-height: 1.25;
}

.poko-check {
  padding-left: 1.5rem;
  font-weight: 700;
}

.poko-after-party {
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 26, 75, .24), transparent 420px),
    linear-gradient(135deg, #171619 0%, #29272c 58%, #151417 100%);
}

.poko-after-party .poko-check {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: .9rem 1.1rem .9rem 2.6rem;
  border: 1px solid rgba(229, 26, 75, .5);
  border-radius: 12px;
  background: rgba(229, 26, 75, .12);
  font-size: .95rem;
}

.poko-gallery .poko-section-heading {
  margin-inline: auto;
  text-align: center;
}

/* Gallery carousel: native horizontal scroll with scroll-snap; buttons are a JS enhancement. */
.poko-carousel {
  --poko-carousel-gap: 22px;
  --poko-carousel-peek: 0px;
  --poko-carousel-items: 3;
  position: relative;
}

.poko-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--poko-carousel-items) - 1) * var(--poko-carousel-gap) - var(--poko-carousel-peek)) / var(--poko-carousel-items));
  gap: var(--poko-carousel-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 4px;
  -webkit-overflow-scrolling: touch;
}

.poko-carousel__track::-webkit-scrollbar {
  display: none;
}

.poko-carousel__track:focus-visible {
  outline: 3px solid var(--poko-accent);
  outline-offset: 6px;
}

.poko-carousel__item {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  scroll-snap-align: start;
  transition: transform .22s ease, box-shadow .22s ease;
}

.poko-carousel__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--poko-shadow-hover);
}

.poko-carousel__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .25s ease;
}

.poko-carousel__item:hover img {
  transform: scale(1.025);
}

.poko-carousel__nav {
  display: none;
}

.poko-carousel.is-ready .poko-carousel__nav {
  display: contents;
}

.poko-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 22, 25, .08);
  border-radius: 50%;
  background: var(--poko-white);
  color: var(--poko-ink);
  box-shadow: 0 12px 30px rgba(23, 22, 25, .18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .18s ease, opacity .18s ease;
}

.poko-carousel__button[data-dir="-1"] {
  left: -24px;
}

.poko-carousel__button[data-dir="1"] {
  right: -24px;
}

.poko-carousel__button::before {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: translateX(-2px) rotate(-45deg);
}

.poko-carousel__button[data-dir="-1"]::before {
  transform: translateX(2px) rotate(135deg);
}

.poko-carousel__button:hover {
  transform: translateY(-50%) scale(1.05);
}

.poko-carousel__button[aria-disabled="true"] {
  cursor: default;
  opacity: .35;
  transform: translateY(-50%);
}

.poko-accommodation {
  background: radial-gradient(circle at 8% 5%, rgba(229, 26, 75, .08), transparent 380px), var(--poko-soft);
}

.poko-accommodation::before {
  content: "9%";
  position: absolute;
  top: -80px;
  left: -30px;
  color: rgba(229, 26, 75, .035);
  font-size: 360px;
  font-weight: 900;
  letter-spacing: -35px;
  line-height: 1;
  pointer-events: none;
}

.poko-offer-card {
  display: grid;
  gap: .8rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 10%, rgba(229, 26, 75, .3), transparent 240px),
    linear-gradient(145deg, #171619 0%, #2e2b31 100%);
  box-shadow: 0 30px 70px rgba(30, 27, 33, .22);
  color: var(--poko-white);
}

.poko-offer-card h3,
.poko-offer-card .poko-text-link {
  color: var(--poko-white);
}

.poko-offer-card .poko-text-link {
  margin-top: .4rem;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}

.poko-offer-card address {
  color: #c9c5ca;
}

.poko-offer-card .poko-button--dark {
  background: var(--poko-accent);
}

.poko-offer-card > * {
  margin: 0;
}

.poko-offer-card .poko-button {
  justify-self: start;
  margin-top: .5rem;
}

.poko-pricing {
  background:
    radial-gradient(1200px 420px at 50% 55%, rgba(226, 27, 67, .06), rgba(226, 27, 67, 0) 60%),
    radial-gradient(520px 420px at 12% 55%, rgba(226, 27, 67, .14), rgba(226, 27, 67, 0) 70%),
    radial-gradient(560px 460px at 88% 55%, rgba(226, 27, 67, .13), rgba(226, 27, 67, 0) 72%),
    var(--poko-white);
}

.poko-pricing .poko-section-heading {
  margin-inline: auto;
  text-align: center;
}

.poko-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 820px;
  margin-inline: auto;
}

/* A locale with a single approved ticket renders one centred card, no empty slot. */
.poko-pricing-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 420px;
}

.poko-price-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border: 1px solid #ddd8da;
  border-radius: var(--poko-radius-lg);
  background: var(--poko-white);
  transition: transform .22s ease, box-shadow .22s ease, opacity .5s ease;
}

.poko-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--poko-shadow-hover);
}

.poko-price-card--featured {
  border: 2px solid var(--poko-accent);
  background: #111;
  box-shadow: 0 14px 34px rgba(229, 26, 75, .22);
  color: var(--poko-white);
}

.poko-price-card--featured:hover {
  box-shadow: 0 20px 46px rgba(229, 26, 75, .3);
}

.poko-price-card--featured h3,
.poko-price-card--featured .poko-price strong {
  color: var(--poko-white);
}

.poko-price-card--featured ul {
  color: rgba(255, 255, 255, .86);
}

/*
 * Accessibility (Phase 7.5, approved design decision): --poko-accent
 * (#e51a4b) measures 4.11:1 on this card's #111 background - short of the
 * WCAG AA 4.5:1 minimum for normal-size text. No single shade of the brand
 * red can pass here and on the #f4f2f1 soft-section background at once (the
 * luminance requirements are mutually exclusive), so this is a lighter,
 * still on-hue tint used only in this dark context; the default accent is
 * unchanged everywhere else. Contrast: 5.89:1.
 */
.poko-price-card--featured .poko-kicker {
  color: #ff4d70;
}

.poko-price-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.poko-price {
  margin: .6rem 0 .8rem;
  font-size: 1rem;
}

.poko-price strong {
  color: var(--poko-ink);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.poko-price-card p {
  margin: .35rem 0;
}

.poko-price-card ul {
  margin: .6rem 0 1.4rem;
  padding-left: 1.2rem;
}

.poko-price-card .poko-button {
  align-self: flex-start;
  margin-top: auto;
}

.poko-faq-list {
  display: grid;
  gap: .75rem;
}

.poko-faq details {
  border-radius: var(--poko-radius-md);
  background: var(--poko-white);
}

.poko-faq summary {
  cursor: pointer;
  padding: 1.25rem 3.5rem 1.25rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.poko-faq details p {
  margin: 0;
  padding: 0 1.35rem 1.35rem;
}

.poko-contact {
  background:
    radial-gradient(900px 480px at 12% 30%, rgba(226, 27, 67, .09), rgba(226, 27, 67, 0) 62%),
    radial-gradient(760px 460px at 90% 80%, rgba(226, 27, 67, .08), rgba(226, 27, 67, 0) 65%),
    linear-gradient(180deg, #fff 0%, #fff7f9 100%);
}

.poko-contact__grid > div:first-child > p:last-of-type {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--poko-accent);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .05);
}

.poko-contact__grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.poko-contact__actions {
  display: grid;
  gap: .75rem;
}

.poko-contact__actions a {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(226, 27, 67, .12);
  border-radius: var(--poko-radius-md);
  background: rgba(255, 255, 255, .78);
  color: var(--poko-ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(32, 13, 22, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.poko-contact__actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(32, 13, 22, .14);
}

.poko-footer {
  padding-block: 3rem;
  background: var(--poko-ink);
  color: var(--poko-white);
}

.poko-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: start;
}

.poko-footer p {
  max-width: 390px;
  margin: .4rem 0 0;
  color: #c9c5ca;
}

.poko-footer nav,
.poko-footer__social {
  display: grid;
  gap: .45rem;
}

.poko-footer a {
  color: var(--poko-white);
  text-underline-offset: .2em;
}

.poko-footer__credit {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.poko-footer__credit p {
  margin: 0;
  color: #9b969f;
  font-size: .8rem;
}

.poko-footer__credit a {
  color: #9b969f;
  text-decoration: underline;
}

.poko-footer__credit a:hover {
  color: var(--poko-white);
}

/*
 * WPML's own "Footer" language-switcher location (WPML_LS_Render::
 * wp_footer_action, wp_footer priority 19) renders a second, redundant
 * "English / Polski (Polish)" strip below the theme's real footer. The
 * theme's own footer nav already carries the single, deliberate language
 * link (parts/footer.html / footer-pl.html) per this project's "one
 * canonical bilingual structure" rule. No WPML setting is touched here —
 * this hides only WPML's own specifically-named output class.
 */
.wpml-ls-statics-footer {
  display: none;
}

@media (max-width: 980px) {
  .poko-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .poko-hero__brand {
    min-height: 220px;
  }

  .poko-speaker-card {
    flex-basis: calc((100% - var(--poko-speaker-gap)) / 2);
    min-height: 460px;
  }

  .poko-speaker-grid.is-collapsed > .poko-speaker-card:nth-child(n + 3) {
    display: none;
  }

  .poko-carousel {
    --poko-carousel-items: 2;
  }
}

@media (max-width: 782px) {
  .admin-bar .poko-header {
    top: 46px;
  }

  .poko-hero {
    min-height: auto;
  }

  .poko-hero__grid,
  .poko-cye__grid,
  .poko-split,
  .poko-contact__grid {
    grid-template-columns: 1fr;
  }

  .poko-cye__badge {
    width: 200px;
    height: 200px;
    padding: 28px;
  }

  .poko-cye__badge strong {
    font-size: 3.2rem;
  }

  .poko-cye__steps {
    grid-template-columns: 1fr;
  }

  .poko-cye__steps article {
    padding: 1.5rem 0;
  }

  .poko-cye__steps article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .poko-speakers::before {
    top: 24px;
  }

  .poko-hero__grid {
    gap: 0;
    padding-block: 2rem 4rem;
  }

  .poko-hero__brand {
    min-height: 200px;
  }

  .poko-hero__circle {
    width: min(48vw, 220px);
  }

  .poko-hero__logo {
    width: min(42vw, 190px);
  }

  .poko-hero__content {
    max-width: 620px;
    padding: 1.25rem;
  }

  .poko-hero-video {
    max-width: 100%;
  }

  .poko-carousel__button {
    width: 40px;
    height: 40px;
  }

  .poko-carousel__button[data-dir="-1"] {
    left: 8px;
  }

  .poko-carousel__button[data-dir="1"] {
    right: 8px;
  }

  .poko-hero__art--left {
    bottom: -26px;
    left: -56px;
    width: 170px;
  }

  .poko-hero__art--right {
    z-index: 1;
    top: 48px;
    right: -88px;
    width: 210px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .35));
  }

  .poko-cye::before {
    top: -150px;
    right: -120px;
    width: 240px;
    height: 240px;
  }

  .poko-cye::after {
    bottom: 90px;
    left: -200px;
    width: 240px;
    height: 240px;
    border-width: 48px;
  }

  .poko-brand-art--corner-b {
    top: -90px;
    left: -120px;
    width: 300px;
  }

  .poko-brand-art--corner-c {
    right: -120px;
    bottom: -100px;
    width: 320px;
  }

  .poko-brand-art--band-a,
  .poko-brand-art--band-d {
    width: 300px;
  }

  .poko-value__grid,
  .poko-pricing-grid {
    grid-template-columns: 1fr;
  }

  .poko-cye__cta,
  .poko-ticket-band .poko-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .poko-ticket-band .poko-container {
    display: flex;
  }

  .poko-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .poko-footer__grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --poko-section-space: 4.25rem;
    --poko-section-space-spacious: 5rem;
    --poko-section-space-compact: 3rem;
    --poko-heading-gap: 1.75rem;
  }

  .poko-container {
    width: min(calc(100% - 1.5rem), var(--poko-container));
  }

  .poko-header__inner {
    min-height: 68px;
  }

  .poko-header__logo img {
    max-height: 50px;
  }

  .poko-hero__grid {
    padding-top: 1rem;
  }

  .poko-hero__brand {
    min-height: 160px;
  }

  .poko-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .poko-speaker-grid {
    --poko-speaker-gap: 1rem;
  }

  .poko-speaker-card {
    flex-basis: 100%;
    min-height: 420px;
  }

  .poko-speaker-grid.is-collapsed > .poko-speaker-card:nth-child(n + 2) {
    display: none;
  }

  .poko-speaker-card__body {
    padding: 1.25rem;
  }

  .poko-room-key {
    grid-template-columns: 1fr;
  }

  .poko-agenda-item {
    grid-template-columns: 78px 1fr;
  }

  .poko-agenda-item__time {
    padding: .8rem .4rem;
  }

  .poko-agenda-item__content {
    padding: .8rem .9rem .85rem;
  }

  .poko-agenda-item__content p {
    font-size: .95rem;
    line-height: 1.5;
  }

  .poko-agenda-item__time time {
    font-size: 1rem;
  }

  .poko-carousel {
    --poko-carousel-items: 1;
    --poko-carousel-gap: 12px;
    --poko-carousel-peek: 16%;
  }

  .poko-footer__grid {
    grid-template-columns: 1fr;
  }

  .poko-footer__grid > :first-child {
    grid-column: auto;
  }
}

/* Back-to-top: fixed, bottom-right, hidden until [data-poko-visible] is set
   by JS after a scroll threshold; stays clear of mobile CTAs (offset above
   the safe area, modest size, never overlaps the sticky header). */
.poko-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 22, 25, .1);
  border-radius: 50%;
  background: var(--poko-white);
  color: var(--poko-ink);
  box-shadow: 0 10px 26px rgba(23, 22, 25, .18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.poko-to-top[hidden] {
  display: grid;
}

.poko-to-top[data-poko-visible] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.poko-to-top span {
  font-size: 1.1rem;
  line-height: 1;
}

.poko-to-top:hover {
  background: var(--poko-soft);
}

@media (max-width: 620px) {
  .poko-to-top {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px) + .75rem);
    width: 42px;
    height: 42px;
  }
}

/*
 * Scroll reveal: opt-in via .poko-reveal-active, added to <html> only by
 * JS once IntersectionObserver support and prefers-reduced-motion are both
 * confirmed safe (see poko-interactions.js). Cards are fully visible by
 * default — with JS disabled or failed, nothing here ever applies.
 */
/* :not(.poko-is-visible) so the rule stops matching entirely once a card
   has revealed — falling back to the plain card's own transform (none)
   and its :hover lift, instead of an explicit "transform: none" here
   permanently outranking :hover by specificity. */
.poko-reveal-active .poko-value-card:not(.poko-is-visible),
.poko-reveal-active .poko-speaker-card:not(.poko-is-visible),
.poko-reveal-active .poko-price-card:not(.poko-is-visible) {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

/* Light stagger only where a full row lands in the viewport together. */
.poko-value__grid > .poko-value-card:nth-child(2) {
  transition-delay: 70ms;
}

.poko-value__grid > .poko-value-card:nth-child(3) {
  transition-delay: 140ms;
}

.poko-pricing-grid > .poko-price-card:nth-child(2) {
  transition-delay: 90ms;
}

@media (prefers-reduced-motion: reduce) {
  .poko-to-top {
    transition: opacity .01ms ease;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  /* Hover lift is decorative; keep the shadow feedback but drop the
     position shift itself. The scroll-reveal JS already gates on this
     same preference and never adds .poko-reveal-active, but these rules
     are a CSS-level backstop so content is never transform-hidden here. */
  .poko-value-card:hover,
  .poko-speaker-card:hover,
  .poko-price-card:hover,
  .poko-carousel__item:hover,
  .poko-contact__actions a:hover,
  .poko-button:hover,
  .poko-button:active {
    transform: none;
  }

  .poko-reveal-active .poko-value-card,
  .poko-reveal-active .poko-speaker-card,
  .poko-reveal-active .poko-price-card {
    opacity: 1;
    transform: none;
  }
}
