/*
Theme Name: Flow Hello Elementor Child
Template: hello-elementor
Version: 1.2.0
Description: Hardened child theme stylesheet for Flow Animation.
*/

:root {
  --flow-bg: #000;
  --flow-text: #fff;
  --flow-accent-start: #7911c5;
  --flow-accent-end: #5808fb;
  --flow-border-soft: rgba(255, 255, 255, 0.08);
  --flow-border-faint: rgba(255, 255, 255, 0.04);
  --flow-shadow-soft: 0 0 12px rgba(255, 255, 255, 0.03);
  --flow-shadow-menu: 0 12px 40px rgba(0, 0, 0, 0.45);
  --flow-pill: 999px;
  --flow-radius-lg: 34px;
  --flow-radius-md: 28px;
  --flow-transition-fast: 0.25s ease;
  --flow-transition-med: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --flow-transition-slow: 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  --flow-page-max: 1720px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--flow-bg);po
  overflow-x: clip;
}

body {
  background: var(--flow-bg);
  color: var(--flow-text);
  font-family: 'Montserrat', sans-serif;
  padding-top: 140px;
  overflow-x: clip
}

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

a {
  color: inherit;
}

/* -----------------------------------
   HEADER
----------------------------------- */

.flow-header {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

.flow-header__inner {
  position: relative;
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.45));
}

.flow-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.flow-header__logo img {
  display: block;
  width: 115px;
  height: auto;
  transform: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}


/* -----------------------------------
   DESKTOP NAV
----------------------------------- */

.flow-header__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: var(--flow-pill);
  background: #000;
  border: 1px solid var(--flow-border-soft);
  box-shadow:
    0 0 2px rgba(255, 255, 255, 0.12),
    0 0 5px rgba(255, 255, 255, 0.06),
    var(--flow-shadow-soft),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transform: none;
  overflow: hidden;
}

.flow-nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 56px;
  padding: 0 28px;
  border-radius: var(--flow-pill);
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-nav-indicator {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 0;
  height: calc(100% - 16px);
  border-radius: var(--flow-pill);
  pointer-events: none;
  background: linear-gradient(90deg, var(--flow-accent-start) 0%, var(--flow-accent-end) 100%);
  box-shadow:
    0 0 20px rgba(88, 8, 251, 0.35),
    0 0 60px rgba(88, 8, 251, 0.18);
  opacity: 0;
  transition:
    transform var(--flow-transition-slow),
    width var(--flow-transition-slow),
    opacity 0.2s ease;
}

.flow-header__nav.is-ready .flow-nav-indicator {
  opacity: 1;
}

.flow-header__nav.is-no-transition .flow-nav-indicator {
  transition: none !important;
}

.flow-nav-link:hover,
.flow-nav-link:focus-visible {
  color: #fff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 20px rgba(255, 255, 255, 0.08);
  transform: scale(1.03) translateY(-1px);
  outline: none;
}

.flow-nav-link.is-active {
  color: #fff;
}

body.flow-is-navigating .flow-nav-link:hover,
body.flow-is-navigating .flow-nav-link:focus-visible {
  transform: none;
  text-shadow: none;
}

.flow-menu-toggle {
  display: none !important;
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 10001;
  background: transparent !important;
  border: none;
  border-radius: 18px;
  outline: none;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  touch-action: manipulation;
}

.flow-menu-toggle:hover,
.flow-menu-toggle:focus,
.flow-menu-toggle:active,
.flow-menu-toggle.is-open,
.flow-menu-toggle:focus-visible {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.flow-menu-toggle::-moz-focus-inner {
  border: 0;
}

.flow-menu-toggle::before,
.flow-menu-toggle::after {
  content: none !important;
  display: none !important;
}

.flow-menu-toggle span {
  position: absolute;
  left: 6px;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  transition:
    top var(--flow-transition-med),
    transform var(--flow-transition-med),
    opacity var(--flow-transition-fast);
}

.flow-menu-toggle span:nth-child(1) { top: 10px; }
.flow-menu-toggle span:nth-child(2) { top: 21px; }
.flow-menu-toggle span:nth-child(3) { top: 32px; }
.flow-menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.flow-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.flow-menu-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .flow-header {
    top: 48px;
  }

  .flow-header__inner {
    width: min(100%, calc(100% - 48px));
    gap: 18px;
  }

  .flow-header__logo img {
    width: 88px;
  }

  .flow-nav-link {
    min-width: 96px;
    height: 50px;
    padding: 0 18px;
    font-size: 20px;
  }
}

/* -----------------------------------
   PAGE TRANSITIONS
----------------------------------- */

@media (min-width: 901px) {
  main,
  .site-main,
  .elementor-location-single,
  .elementor-location-archive,
  .elementor-location-page,
  [data-elementor-type="wp-page"],
  [data-elementor-type="single-page"],
  [data-elementor-type="single-post"],
  .elementor,
  .flow-work-hero,
  .flow-news-hero,
  .flow-footer {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition:
      opacity 0.42s ease,
      transform 0.42s ease,
      filter 0.42s ease;
    will-change: opacity, transform, filter;
  }

  body.flow-pre-enter main,
  body.flow-pre-enter .site-main,
  body.flow-pre-enter .elementor-location-single,
  body.flow-pre-enter .elementor-location-archive,
  body.flow-pre-enter .elementor-location-page,
  body.flow-pre-enter [data-elementor-type="wp-page"],
  body.flow-pre-enter [data-elementor-type="single-page"],
  body.flow-pre-enter [data-elementor-type="single-post"],
  body.flow-pre-enter .elementor,
  body.flow-pre-enter .flow-work-hero,
  body.flow-pre-enter .flow-news-hero,
  body.flow-pre-enter .flow-footer,
  body.flow-page-enter main,
  body.flow-page-enter .site-main,
  body.flow-page-enter .elementor-location-single,
  body.flow-page-enter .elementor-location-archive,
  body.flow-page-enter .elementor-location-page,
  body.flow-page-enter [data-elementor-type="wp-page"],
  body.flow-page-enter [data-elementor-type="single-page"],
  body.flow-page-enter [data-elementor-type="single-post"],
  body.flow-page-enter .elementor,
  body.flow-page-enter .flow-work-hero,
  body.flow-page-enter .flow-news-hero,
  body.flow-page-enter .flow-footer,
  body.flow-page-leave main,
  body.flow-page-leave .site-main,
  body.flow-page-leave .elementor-location-single,
  body.flow-page-leave .elementor-location-archive,
  body.flow-page-leave .elementor-location-page,
  body.flow-page-leave [data-elementor-type="wp-page"],
  body.flow-page-leave [data-elementor-type="single-page"],
  body.flow-page-leave [data-elementor-type="single-post"],
  body.flow-page-leave .elementor,
  body.flow-page-leave .flow-work-hero,
  body.flow-page-leave .flow-news-hero,
  body.flow-page-leave .flow-footer {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }

  body.flow-page-enter.flow-page-enter-active main,
  body.flow-page-enter.flow-page-enter-active .site-main,
  body.flow-page-enter.flow-page-enter-active .elementor-location-single,
  body.flow-page-enter.flow-page-enter-active .elementor-location-archive,
  body.flow-page-enter.flow-page-enter-active .elementor-location-page,
  body.flow-page-enter.flow-page-enter-active [data-elementor-type="wp-page"],
  body.flow-page-enter.flow-page-enter-active [data-elementor-type="single-page"],
  body.flow-page-enter.flow-page-enter-active [data-elementor-type="single-post"],
  body.flow-page-enter.flow-page-enter-active .elementor,
  body.flow-page-enter.flow-page-enter-active .flow-work-hero,
  body.flow-page-enter.flow-page-enter-active .flow-news-hero,
  body.flow-page-enter.flow-page-enter-active .flow-footer {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* -----------------------------------
   SHARED PAGE LAYOUT
----------------------------------- */

.flow-page__inner {
  width: 100%;
  max-width: var(--flow-page-max);
  margin: 0 auto;
  padding: 72px 48px 80px;
}

.flow-pagination,
.flow-empty-state {
  margin-top: 28px;
}

/* -----------------------------------
   WORK ARCHIVE
----------------------------------- */

.flow-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.flow-work-card {
  position: relative;
}

.flow-work-card__link {
  display: block;
  text-decoration: none;
}

.flow-work-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--flow-radius-lg);
  background: #0b0b0b;
  min-height: 520px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px var(--flow-border-faint);
}

.flow-work-card__image,
.flow-work-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-work-card__image {
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-work-card__placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(88, 8, 251, 0.22), transparent 35%),
    linear-gradient(180deg, #111 0%, #050505 100%);
}

.flow-work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.10) 45%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.flow-work-card__content {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 34px;
  z-index: 2;
}

.flow-work-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.flow-work-card:hover .flow-work-card__image,
.flow-work-card:focus-within .flow-work-card__image {
  transform: scale(1.03);
  filter: brightness(1.04);
}

/* -----------------------------------
   NEWS ARCHIVE
----------------------------------- */

.flow-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.flow-news-card {
  min-width: 0;
}

.flow-news-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.flow-news-card__media {
  position: relative;
  min-height: 420px;
  border-radius: var(--flow-radius-lg);
  overflow: hidden;
  background: #0b0b0b;
}

.flow-news-card__image,
.flow-news-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-news-card__image {
  object-fit: cover;
  object-position: center center;
  display: block;
    transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-news-card:hover .flow-news-card__image,
.flow-news-card:focus-within .flow-news-card__image {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.flow-news-card__placeholder {
  background:
    radial-gradient(circle at 25% 20%, rgba(98, 25, 255, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.96), rgba(5, 5, 8, 1));
}

.flow-news-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.flow-news-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
}

.flow-news-card__meta {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

.flow-news-card__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.02;
  font-weight: 700;
  color: #fff;
}

/* -----------------------------------
   HERO SHORTCODES
----------------------------------- */

.flow-work-hero,
.flow-news-hero {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 72px 48px 80px;
}

.flow-work-hero__link,
.flow-news-hero__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.flow-work-hero__image,
.flow-news-hero__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--flow-radius-md);
  background: #000;
  aspect-ratio: 16 / 4;
}

.flow-work-hero__image img,
.flow-news-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: none;
  transition: none;
}

.flow-work-hero__image::after,
.flow-news-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.flow-work-hero__content,
.flow-news-hero__content {
  margin-top: 20px;
}

.flow-work-hero__title,
.flow-news-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.flow-news-hero__date {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.3;
}

/* -----------------------------------
   FOOTER
----------------------------------- */

.flow-footer {
  background: transparent;
  color: #fff;
  padding: 80px 0 48px;
}

.flow-footer__inner {
  max-width: var(--flow-page-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.flow-footer__content {
  flex: 1 1 auto;
  max-width: 760px;
  text-align: left;
}

.flow-footer__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.flow-footer__logo img {
  display: block;
  width: 115px;
  height: auto;
}

.flow-footer__title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.08;
}

.flow-footer__title-accent {
  font-weight: 700;
  font-style: italic;
}

.flow-footer__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-footer__line {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
}

.flow-footer__line a {
  color: #fff;
  text-decoration: none;
  transition: opacity var(--flow-transition-fast);
}

.flow-footer__line a:hover,
.flow-footer__line a:focus-visible {
  opacity: 0.8;
}

.flow-footer__copyright {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/* -----------------------------------
   WORD REVEAL / STATIC HEADING
----------------------------------- */

.flow-word-reveal {
  margin: 0;
  background: transparent !important;
}

.flow-word-reveal h1,
h1.flow-word-reveal,
.flow-word-reveal .elementor-heading-title,
.flow-word-reveal p,
p.flow-word-reveal {
  margin: 0;
  color: #fff;
  font-size: 62px;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0;
  background: transparent !important;
}

.flow-word-reveal .flow-word,
h1.flow-word-reveal .flow-word,
p.flow-word-reveal .flow-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px) scale(1);
  color: #fff;
  will-change: transform, opacity, color;
  animation: flowWordReveal 1.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    color 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-word-reveal .flow-word:hover,
h1.flow-word-reveal .flow-word:hover,
p.flow-word-reveal .flow-word:hover {
  color: #8f4dff;
  transform: scale(1.05);
  text-shadow:
    0 0 10px rgba(121, 17, 197, 0.28),
    0 0 22px rgba(88, 8, 251, 0.18),
    0 0 36px rgba(88, 8, 251, 0.10);
  filter: brightness(1.06);
}

.flow-word-reveal .flow-word--accent,
h1.flow-word-reveal .flow-word--accent,
p.flow-word-reveal .flow-word--accent {
  font-weight: 700;
  font-style: italic;
}

.flow-word-reveal .flow-word-space {
  display: inline-block;
  width: 0.32em;
}

.flow-heading-static {
  margin: 0 !important;
  color: #fff !important;
  font-size: 54px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
}

.flow-heading-static .flow-accent {
  font-weight: 700 !important;
  font-style: italic !important;
}

@keyframes flowWordReveal {
  from { opacity: 0; transform: translateY(8px) scale(1); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes flowWordRevealMobile {
  from { opacity: 0; transform: translateY(14px) scale(1); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 1200px) {
  .flow-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 92px;
  }

  .flow-header {
    top: 20px;
  }

  .flow-header__inner,
  .flow-page__inner,
  .flow-footer__inner,
  .flow-work-hero,
  .flow-news-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .flow-header__inner {
    align-items: center;
  }

  .flow-header__logo img,
  .flow-footer__logo img {
    width: 58px;
    transform: none !important;
  }

  .flow-menu-toggle {
    display: block !important;
  }

  .flow-menu-toggle,
  .flow-menu-toggle *,
  .flow-menu-toggle::before,
  .flow-menu-toggle::after {
    -webkit-tap-highlight-color: transparent !important;
  }

  .flow-header__nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px;
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid var(--flow-border-soft);
    box-shadow: var(--flow-shadow-menu), var(--flow-shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .flow-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .flow-nav-indicator {
    display: none;
  }

  .flow-nav-link,
  .flow-nav-link.is-active {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    line-height: 1.1;
    border-radius: 18px;
    transform: none !important;
  }

  .flow-nav-link:hover,
  .flow-nav-link:focus-visible {
    transform: none;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .flow-nav-link.is-active {
    background: linear-gradient(90deg, var(--flow-accent-start) 0%, var(--flow-accent-end) 100%);
    box-shadow: 0 0 20px rgba(88, 8, 251, 0.30), 0 0 40px rgba(88, 8, 251, 0.15);
  }

  .flow-page__inner,
  .flow-work-hero,
  .flow-news-hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .flow-work-grid,
  .flow-news-grid {
    gap: 24px;
  }

  .flow-news-grid {
    grid-template-columns: 1fr;
  }

  .flow-work-card__media,
  .flow-news-card__media {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    border-radius: var(--flow-radius-md);
  }

  .flow-work-card__content,
  .flow-news-card__content {
    left: 24px;
    right: 24px;
    bottom: 22px;
  }

  .flow-work-card__title,
  .flow-news-card__title,
  .flow-work-hero__title,
  .flow-news-hero__title {
    font-size: clamp(28px, 7vw, 56px);
    line-height: 1;
  }

  .flow-news-card__meta,
  .flow-news-hero__date {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .flow-work-hero__image,
  .flow-news-hero__image {
    border-radius: 22px;
    aspect-ratio: 1 / 0.88;
  }

  .flow-work-hero__content,
  .flow-news-hero__content {
    margin-top: 14px;
  }

  .flow-footer {
    padding: 56px 0 36px;
  }

  .flow-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .flow-footer__content {
    width: 100%;
    max-width: none;
    order: 2;
  }

  .flow-footer__brand {
    order: 1;
  }

  .flow-footer__title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .flow-footer__line {
    font-size: 18px;
    line-height: 1.5;
  }

  .flow-footer__copyright {
    margin-top: 20px;
    font-size: 14px;
  }

  .flow-word-reveal h1,
  h1.flow-word-reveal,
  .flow-word-reveal .elementor-heading-title,
  .flow-word-reveal p,
  p.flow-word-reveal {
    font-size: 34px;
    line-height: 1.2;
    max-width: 100%;
  }

  .flow-word-reveal .flow-word,
  h1.flow-word-reveal .flow-word,
  p.flow-word-reveal .flow-word {
    animation-name: flowWordRevealMobile;
  }

  .flow-word-reveal .flow-word:hover,
  h1.flow-word-reveal .flow-word:hover,
  p.flow-word-reveal .flow-word:hover {
    transform: scale(1.025);
    text-shadow: 0 0 8px rgba(121, 17, 197, 0.22), 0 0 16px rgba(88, 8, 251, 0.12);
  }
}

@media (min-width: 901px) {
  .flow-menu-toggle {
    display: none !important;
  }

  .flow-header__nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(200px) !important;
  }

  .flow-nav-indicator {
    display: block !important;
  }

  .flow-header__logo img {
    transform: translateX(-200px) !important;
  }
}

@media (max-width: 767px) {
  .flow-heading-static {
    font-size: 20px !important;
    line-height: 1.14 !important;
    max-width: 95% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .flow-header__logo img,
  .flow-header__nav,
  .flow-nav-indicator,
  .flow-nav-link,
  .flow-word-reveal .flow-word {
    transform: none !important;
  }
}

/* -----------------------------------
   Global font for IP contest area
----------------------------------- */

.flow-ip-grid,
.flow-vote-grid,
.flow-ip-card,
.flow-vote-card,
.flow-ip-card *,
.flow-vote-card * {
  font-family: "Montserrat", sans-serif;
}

/* -----------------------------------
   TOP SHOWCASE GRID
----------------------------------- */

.flow-ip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.flow-ip-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  background: #0b0b10;
}

.flow-ip-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.flow-ip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.52) 45%,
    rgba(0, 0, 0, 0.10) 100%
  );
  transition: opacity 0.35s ease;
}

.flow-ip-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.1;
}

.flow-ip-logline {
  margin: 0;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .flow-ip-overlay {
    opacity: 0;
  }

  .flow-ip-card:hover img {
    transform: scale(1.06);
  }

  .flow-ip-card:hover .flow-ip-overlay {
    opacity: 1;
  }

  /* Center the final card when there are 5 items */
  .flow-ip-grid > .flow-ip-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(50%, calc((100% - 18px) / 2));
    justify-self: center;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .flow-ip-overlay {
    opacity: 1;
  }

  .flow-ip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  .flow-ip-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }

  .flow-ip-overlay {
    opacity: 1;
    padding: 16px;
  }

  .flow-ip-title {
    margin: 0;
    font-size: 1.2rem;
  }

  .flow-ip-logline {
    display: none;
  }
}

/* -----------------------------------
   VOTING GRID
----------------------------------- */

.flow-vote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 2;
  margin-top: 36px; /* try 32–48px depending on taste */
}

.flow-vote-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.flow-vote-card__label {
  display: block;
  cursor: pointer;
}

.flow-vote-card__media {
  position: relative;
  overflow: visible;
  border-radius: 24px;
  background: #0b0b10;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.flow-vote-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  transition: filter 0.35s ease;
}

.flow-vote-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.flow-vote-card__overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.1;
}

.flow-vote-card__overlay p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.flow-vote-card__check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  transition: all 0.3s ease;
  pointer-events: none;
}

.flow-vote-card__media,
.flow-vote-card__media img,
.flow-vote-card__overlay,
.flow-vote-card__overlay * {
  pointer-events: none;
}

.flow-vote-card:hover .flow-vote-card__media {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 12px rgba(195, 123, 255, 0.12);
}

.flow-vote-card.is-selected .flow-vote-card__media {
  box-shadow:
    0 0 10px rgba(179, 77, 255, 0.25),
    0 0 20px rgba(179, 77, 255, 0.15);
}

.flow-vote-card.is-selected .flow-vote-card__media img {
  filter: saturate(1.05) brightness(1.03);
}

.flow-vote-card.is-selected .flow-vote-card__check {
  background: linear-gradient(135deg, #7b2cff, #d14dff);
  border-color: #d9b3ff;
}

.flow-vote-card.is-selected .flow-vote-card__check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* -----------------------------------
   Hidden storage field + helper text
----------------------------------- */

.flow-vote-storage-wrap {
  display: none !important;
}

.flow-vote-helper {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
}

/* -----------------------------------
   Responsive
----------------------------------- */

@media (max-width: 1024px) {
  .flow-ip-grid,
  .flow-vote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .flow-ip-grid,
  .flow-vote-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flow-ip-title,
  .flow-vote-card__overlay h3 {
    font-size: 1.2rem;
  }

  .flow-ip-logline,
  .flow-vote-card__overlay p {
    font-size: 0.9rem;
  }
}

/* -----------------------------------
   Submit button — match Flow nav pill
----------------------------------- */

.fluentform .ff_submit_btn_wrapper,
.fluentform .ff-btn-submit-wrapper,
form.fluent_form_3 .ff_submit_btn_wrapper {
  display: flex !important;
  justify-content: center !important;
  margin-top: 40px !important;
}

button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style,
.fluentform button.ff-btn.ff-btn-submit,
.fluentform .ff-btn-submit {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none !important;
  outline: none !important;
  background: linear-gradient(90deg, #7911c5 0%, #5808fb 100%) !important;
  color: #fff !important;
  border-radius: 999px !important;

  min-width: 250px !important;
  height: 72px !important;
  padding: 0 42px !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;

  box-shadow:
    0 0 20px rgba(88, 8, 251, 0.30),
    0 0 40px rgba(88, 8, 251, 0.15) !important;

  transform: scale(1) translateY(0) !important;
  filter: none !important;
  opacity: 1 !important;

  transition:
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;

  will-change: transform, box-shadow, filter;
  cursor: pointer !important;
  position: relative !important;
}

/* Kill plugin overlays that darken on hover */
button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style::before,
button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style::after,
.fluentform button.ff-btn.ff-btn-submit::before,
.fluentform button.ff-btn.ff-btn-submit::after,
.fluentform .ff-btn-submit::before,
.fluentform .ff-btn-submit::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

/* Hover — same feel as nav links */
button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style:hover,
.fluentform button.ff-btn.ff-btn-submit:hover,
.fluentform .ff-btn-submit:hover {
  background: linear-gradient(90deg, #7911c5 0%, #5808fb 100%) !important;
  color: #fff !important;
  transform: scale(1.03) translateY(-1px) !important;
  filter: none !important;
  opacity: 1 !important;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 20px rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 0 24px rgba(88, 8, 251, 0.36),
    0 0 56px rgba(88, 8, 251, 0.18) !important;
}

/* Active */
button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style:active,
.fluentform button.ff-btn.ff-btn-submit:active,
.fluentform .ff-btn-submit:active {
  transform: scale(0.985) translateY(0) !important;
  filter: none !important;
}

/* Focus */
button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style:focus,
button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style:focus-visible,
.fluentform button.ff-btn.ff-btn-submit:focus,
.fluentform button.ff-btn.ff-btn-submit:focus-visible,
.fluentform .ff-btn-submit:focus,
.fluentform .ff-btn-submit:focus-visible {
  outline: none !important;
  filter: none !important;
}

/* -----------------------------------
   Results page thank-you transition
----------------------------------- */

.flow-results-page {
  position: relative;
  min-height: 100vh;
}

.flow-results-main {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-results-page--with-thanks .flow-results-main {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
}

.flow-results-main.is-revealing {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.flow-results-thanks {
  position: absolute;
  inset: 0;
  z-index: 20;
  opacity: 1;
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  pointer-events: none;
}

.flow-results-thanks.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.flow-results-thanks__inner {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;

  /* THIS is the important part */
  padding: 120px 48px 96px;

  text-align: center;
}

.flow-results-thanks.is-hiding .flow-results-thanks__inner {
  transform: translateY(40px);
}

.flow-results-thanks__title {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
}

.flow-results-thanks__text {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .flow-results-thanks__inner {
    padding: 40px 28px 80px;
  }
}

@media (max-width: 767px) {
  .flow-results-thanks__inner {
    padding: 32px 18px 64px;
  }
}

/* -----------------------------------
   IP Vote Results Grid
----------------------------------- */

.flow-results-wrap {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 48px 48px 96px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.flow-results-title {
  margin: 0 0 12px;
  text-align: center;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
}

.flow-results-subtitle {
  margin: 0 0 42px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.flow-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 48px;
}

.flow-results-card {
  min-width: 0;
}

.flow-results-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.flow-results-card__media {
  overflow: hidden;
  border-radius: 28px;
  background: #0b0b10;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 50px rgba(0, 0, 0, 0.28);
}

.flow-results-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-results-card__body {
  padding: 16px 8px 0;
}

.flow-results-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.1vw, 2.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.flow-results-card__type {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.3;
}

.flow-results-card__bar {
  width: 100%;
  height: 14px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.flow-results-card__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7911c5 0%, #5808fb 100%);
  box-shadow:
    0 0 16px rgba(88, 8, 251, 0.35),
    0 0 36px rgba(88, 8, 251, 0.16);
}

.flow-results-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.flow-results-card__percent,
.flow-results-card__votes {
  white-space: nowrap;
}

.flow-results-card:hover .flow-results-card__media img,
.flow-results-card:focus-within .flow-results-card__media img {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.flow-results-card:hover .flow-results-card__title,
.flow-results-card:focus-within .flow-results-card__title {
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 255, 255, 0.06);
}

@media (max-width: 1200px) {
  .flow-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .flow-results-wrap {
    padding: 40px 28px 80px;
  }
}

@media (max-width: 767px) {
  .flow-results-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-results-wrap {
    padding: 32px 18px 64px;
  }

  .flow-results-card__body {
    padding: 16px 0 0;
    text-align: center;
  }

  .flow-results-card__title {
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.3rem, 6.2vw, 1.85rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .flow-results-card__type {
    margin: 8px 0 0;
    text-align: center;
    font-size: 0.95rem;
  }

  .flow-results-card__bar {
    margin-left: auto;
    margin-right: auto;
  }

  .flow-results-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    text-align: center;
    font-size: 0.92rem;
  }
}

/* -----------------------------------
   Results page mobile centering
----------------------------------- */

.flow-results-card__body {
  text-align: center;
}

.flow-results-card__title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.flow-results-card__type {
  text-align: center;
}

.flow-results-card__meta {
  justify-content: center;
  align-items: center;
}

/* Mobile only */
@media (max-width: 767px) {
  .flow-results-card__body {
    text-align: center;
    padding: 16px 0 0;
  }

  .flow-results-card__title {
    text-align: center;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  .flow-results-card__type {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 8px;
  }

  .flow-results-card__bar {
    margin-left: auto;
    margin-right: auto;
  }

  .flow-results-card__meta {
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 12px;
  }
}

/* -----------------------------------
   Home Work Showcase
----------------------------------- */

.flow-home-showcase {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.flow-home-showcase__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.flow-home-showcase__card {
	width: 100%;
	margin: 0;
	opacity: 1;
	transform: none;
	filter: none;
	pointer-events: auto;
}

.flow-home-showcase__card.is-visible {
	opacity: 1;
	transform: none;
	filter: none;
	pointer-events: auto;
}

.flow-home-showcase__link {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: inherit;
}

.flow-home-showcase__media {
	width: 100%;
	height: 620px;
	overflow: hidden;
	border-radius: 20px;
	position: relative;
	line-height: 0;
	background: #0a0a0a;
	box-shadow: 0 0 14px rgba(124, 58, 237, 0.05);
}

.flow-home-showcase__crop {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.flow-home-showcase__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: translateY(var(--flow-image-offset-y, 0px));
	transition:
		transform 0.45s ease,
		filter 0.35s ease;
}

.flow-home-showcase__placeholder {
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
}

.flow-home-showcase__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.28);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.flow-home-showcase__content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: min(700px, 74%);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.flow-home-showcase__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
	text-shadow: 0 4px 18px rgba(0,0,0,0.45);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.flow-home-showcase__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 80%;
	max-height: none;
	object-fit: contain;
	filter: drop-shadow(0 16px 36px rgba(0,0,0,0.65));
	opacity: 0;
	transform: translateY(12px) scale(0.95);
	transition:
		opacity 0.35s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-home-showcase__link:hover .flow-home-showcase__image,
.flow-home-showcase__link:focus-visible .flow-home-showcase__image {
	transform: translateY(var(--flow-image-offset-y, 0px)) scale(1.02);
	filter: brightness(0.7);
}
}

.flow-home-showcase__link:hover .flow-home-showcase__overlay,
.flow-home-showcase__link:focus-visible .flow-home-showcase__overlay {
	opacity: 1;
}

.flow-home-showcase__link:hover .flow-home-showcase__content,
.flow-home-showcase__link:focus-visible .flow-home-showcase__content {
	opacity: 1;
}

.flow-home-showcase__link:hover .flow-home-showcase__logo,
.flow-home-showcase__link:focus-visible .flow-home-showcase__logo,
.flow-home-showcase__link:hover .flow-home-showcase__title,
.flow-home-showcase__link:focus-visible .flow-home-showcase__title {
	opacity: 1;
}

.flow-home-showcase__link:hover .flow-home-showcase__logo,
.flow-home-showcase__link:focus-visible .flow-home-showcase__logo {
	transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
	.flow-home-showcase__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.flow-home-showcase__media {
		height: auto;
		aspect-ratio: 16 / 7;
		border-radius: 5px;
	}
	.flow-home-showcase__image {
		transition: none;
		filter: none;
		transform: none !important;
	}

	.flow-home-showcase__overlay {
		display: none;
	}

	.flow-home-showcase__content {
		display: flex;
		opacity: 1;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.flow-home-showcase__logo {
		display: block !important;
		opacity: 1 !important;
		width: 75% !important;
		max-width: none !important;
		height: auto !important;
		max-height: none !important;
		transform: none !important;
	}

	.flow-home-showcase__title {
		opacity: 1;
	}
}

/* -----------------------------------
   Voting bar per Work Page
----------------------------------- */

.flow-idea-vote-hero-bar {
    width: 98%;
    max-width: 100%;
    margin: 0 auto;
}

.flow-idea-vote-hero-bar__labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1;
    color: #ffffff;
}

.flow-idea-vote-hero-bar__percent,
.flow-idea-vote-hero-bar__votes {
    font-weight: 600;
}

.flow-idea-vote-hero-bar__track {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.flow-idea-vote-hero-bar__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #8a2cff 0%, #b14cff 100%);
    border-radius: 999px;
}

@media (max-width: 767px) {
    
    .flow-idea-vote-hero-bar {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    }

    .flow-idea-vote-hero-bar__labels {
        font-size: 14px;
    }

    .flow-idea-vote-hero-bar__track {
        height: 12px;
    }
}

.flow-vote-card__label::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  transition: all 0.3s ease;
  pointer-events: none;
}

.flow-vote-card.is-selected .flow-vote-card__label::before {
  background: linear-gradient(135deg, #7b2cff, #d14dff);
  border-color: #d9b3ff;
  box-shadow: 0 0 10px rgba(179, 77, 255, 0.22);
}

.flow-vote-card.is-selected .flow-vote-card__label::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 25px;
  width: 6px;
  height: 11px;
  z-index: 4;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  pointer-events: none;
}