/*
 * homepage-2026.css
 * Styles for the AI-native homepage redesign.
 *
 * Design tokens inherit from main.css :root variables.
 * Effects sourced from:
 *   - vyudu.com theme designs/SOURCE (button, section, asideCounters, scroll patterns)
 *   - fx for sites/docs (simple-clip-reveal, lenis-services-list, text-weight-marquee)
 *   - ai_ide_effects_library_reference (stagger-grid, fade-in-section, theme-color-shifts)
 *
 * All animations respect prefers-reduced-motion.
 */

/* ============================================================
   SHARED ENTRANCE ANIMATION
   Based on theme's data-arts-os-animation scroll reveal pattern
   and the "fade-in-section" effect from the effects library.
   ============================================================ */

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Clip-path reveal — from simple-clip-reveal-sections effect */
@keyframes clipReveal {
  from {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0;
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

@keyframes scrollLineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Staggered counter animation from ai_ide_effects library */
@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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


/* ============================================================
   1. HERO 2026
   ============================================================ */

.hero-2026 {
  min-height: 100vh;
}

.hero-2026__row {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Eyebrow — subtle letter-spaced small-caps above the H1 */
.hero-2026__eyebrow-text {
  display: inline-block;
  color: var(--color-gray-2);
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  border-left: 2px solid var(--color-gray-1);
  padding-left: 12px;
  animation: fadeIn 0.8s ease 0.3s both;
}

/* H1 — uses theme fluid type, no override needed except color assurance */
.hero-2026 .h1 {
  color: var(--h1-color-light);
  line-height: var(--h1-line-height);
}

/* Subhead */
.hero-2026__sub-text {
  color: var(--color-gray-2);
  max-width: 640px;
  line-height: 1.75;
  font-size: 17px;
}

/* CTA block */
.hero-2026__ctas {
  gap: 0;
}

.hero-2026__btn-primary,
.hero-2026__btn-secondary {
  min-width: 220px;
}

/* Scroll hint — vertical line + label, from theme scroll-down pattern */
.hero-2026__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: var(--gutter-horizontal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-2026__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--color-gray-1);
  transform-origin: top center;
  animation: scrollLineGrow 1s ease 1.4s both;
}

.hero-2026__scroll-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--color-gray-1);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@media screen and (max-width: 991px) {
  .hero-2026__row {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 90vh;
  }

  .hero-2026__scroll-hint {
    display: none;
  }

  .hero-2026__btn-primary,
  .hero-2026__btn-secondary {
    min-width: 160px;
    font-size: 13px;
  }
}


/* ============================================================
   2. SOCIAL PROOF — luxury treatment
   ============================================================ */

.social-proof-2026 {
  background: #0a0a0a;
  padding: 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.social-proof-2026.sp-entered {
  opacity: 1;
  transform: translateY(0);
}

/* Gold top/bottom rule */
.social-proof-2026__top-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 58, 237, 0.15) 20%,
    rgba(124, 58, 237, 0.55) 50%,
    rgba(124, 58, 237, 0.15) 80%,
    transparent 100%
  );
}

/* Stat header — centered with flanking lines */
.social-proof-2026__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 48px 40px 36px;
}

.social-proof-2026__header-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12));
}

.social-proof-2026__header-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent);
}

.social-proof-2026__stat {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.9);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Marquee keyframes ---- */
@keyframes sp-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes sp-scroll-right {
  from { transform: translateX(-33.333%); }
  to   { transform: translateX(0); }
}

/* ---- Marquee wrapper — clips and fades edges ---- */
.sp-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  padding: 4px 0;
}

.sp-marquee-wrap--row2 {
  padding: 0 0 28px;
  opacity: 0.55;
}

/* ---- The scrolling track ---- */
.sp-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.sp-track--left {
  animation: sp-scroll-left 35s linear infinite;
}
.sp-track--right {
  animation: sp-scroll-right 45s linear infinite;
}

/* Pause on hover */
.sp-track.sp-paused {
  animation-play-state: paused;
}

/* ---- Inner span holds all items in a single row ---- */
.sp-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* ---- Individual brand name item ---- */
.sp-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-secondary);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  padding-right: 20px;
  flex-shrink: 0;
}

.sp-dot {
  font-size: 9px;
  color: rgba(124, 58, 237, 0.65);
  font-style: normal;
  flex-shrink: 0;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sp-track--left,
  .sp-track--right {
    animation: none;
  }
  .social-proof-2026 {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sp-marquee-wrap {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Work CTA link */
.sp-work-cta {
  display: flex;
  justify-content: center;
  padding: 20px 40px 4px;
}

.sp-work-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .65rem;
  letter-spacing: .15em;
  transition: color .2s ease;
}

.sp-work-cta__link:hover { color: #fff; }

.sp-work-cta__arrow {
  transition: transform .2s ease;
  color: #b8974a;
}

.sp-work-cta__link:hover .sp-work-cta__arrow { transform: translateX(4px); }

/* Mid divider between marquee and press */
.social-proof-2026__press-wrap {
  padding: 36px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-proof-2026__press-label {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.social-proof-2026__press-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 960px;
}

.social-proof-2026__press-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.social-proof-2026__press-sep {
  display: block;
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.social-proof-2026__press-name-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

a.social-proof-2026__press-name-wrap {
  text-decoration: none;
}

.social-proof-2026__press-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
  line-height: 1;
}

.social-proof-2026__press-name:hover {
  color: rgba(124, 58, 237, 0.9);
}

.social-proof-2026__press-sub {
  font-family: var(--font-primary);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  position: relative;
  z-index: 1;
}

/* ---- Row 2 light-weight variant (visual depth contrast) ---- */
.sp-inner--light .sp-item {
  font-weight: 300;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sp-inner--light .sp-dot {
  color: rgba(124, 58, 237, 0.3);
  font-size: 6px;
}

/* ---- Stat anchor ---- */
.sp-stat-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-stat-anchor__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.25));
}

.sp-stat-anchor__line:last-child {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.25), transparent);
}

.sp-stat-anchor__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sp-stat-anchor__number {
  font-family: var(--font-secondary);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  letter-spacing: -0.01em;
}

.sp-stat-anchor__label {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.7);
}

/* ---- Press item: always visible, no clip-path entrance ---- */
.social-proof-2026__press-item {
  opacity: 1;
  clip-path: none;
}

/* ---- Figure-logo hover overlay (from theme figureLogo.sass) ---- */
.sp-press-overlay {
  position: absolute;
  inset: -12px -16px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.social-proof-2026__press-name-wrap:hover .sp-press-overlay {
  transform: scaleY(1);
}

.social-proof-2026__press-name-wrap:hover .social-proof-2026__press-name {
  transform: translateY(-6px);
  color: rgba(124, 58, 237, 0.95);
}

.social-proof-2026__press-name {
  transition: transform 0.3s ease, color 0.3s ease;
}

.sp-press-overlay__name {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
}

.social-proof-2026__press-name-wrap:hover .sp-press-overlay__name {
  opacity: 1;
  transform: translateY(0);
}

.sp-press-overlay__line {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(124, 58, 237, 0.6);
  transform: scaleX(0);
  transition: transform 0.25s ease 0.18s;
}

.social-proof-2026__press-name-wrap:hover .sp-press-overlay__line {
  transform: scaleX(1);
}

@media screen and (max-width: 767px) {
  .social-proof-2026__header {
    padding: 36px 24px 28px;
    gap: 16px;
  }

  .social-proof-2026__header-line {
    max-width: 60px;
  }

  .social-proof-2026__stat {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .social-proof-2026__press-wrap {
    padding: 28px 24px 36px;
  }

  .social-proof-2026__press-row {
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    gap: 0;
  }

  .social-proof-2026__press-item {
    width: 100%;
    padding: 16px 0;
  }

  .social-proof-2026__press-sep {
    width: 40px;
    height: 1px;
    align-self: auto;
  }

  .social-proof-2026__press-name {
    font-size: 18px;
  }
}


/* ============================================================
   3. AGENCY ERA — comparison grid
   Card entrance uses clip-path reveal + stagger-grid patterns
   ============================================================ */

.agency-era-2026 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.agency-era-2026__heading {
  color: var(--h2-color-dark);
}

/* Stagger-grid: each col animates in sequence */
.agency-era-2026__col:nth-child(1) { animation-delay: 0.1s; }
.agency-era-2026__col:nth-child(2) { animation-delay: 0.25s; }
.agency-era-2026__col:nth-child(3) { animation-delay: 0.4s; }

.agency-era-2026__card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  padding: 36px 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}

.agency-era-2026__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.agency-era-2026__icon {
  color: var(--color-dark-3);
  flex-shrink: 0;
}

.agency-era-2026__era-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--color-gray-1);
  margin-bottom: 6px;
}

.agency-era-2026__era-label_new {
  color: var(--color-dark-3);
}

.agency-era-2026__era-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-dark-3);
  margin: 0;
  line-height: 1.4;
}

.agency-era-2026__era-text_old {
  color: var(--color-gray-1);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.25);
}

.agency-era-2026__era-text_new {
  color: var(--color-dark-1);
  font-weight: 600;
}

.agency-era-2026__divider {
  color: var(--color-gray-2);
  display: flex;
  justify-content: flex-start;
}

.agency-era-2026__closing {
  font-family: var(--font-secondary);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--color-dark-2);
  font-style: italic;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .agency-era-2026__col + .agency-era-2026__col {
    margin-top: 20px;
  }
}


/* ============================================================
   4. SERVICES GRID
   Stagger-grid pattern from effects library.
   Card hover uses theme's hoverZoom aesthetic.
   ============================================================ */

.services-grid-2026 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.services-grid-2026 .h2 {
  color: var(--h2-color-light);
}

.services-grid-2026__grid {
  row-gap: 24px;
}

/* Stagger delays per card */
.services-grid-2026__col:nth-child(1) { --stagger-delay: 0.05s; }
.services-grid-2026__col:nth-child(2) { --stagger-delay: 0.15s; }
.services-grid-2026__col:nth-child(3) { --stagger-delay: 0.25s; }
.services-grid-2026__col:nth-child(4) { --stagger-delay: 0.35s; }

.services-grid-2026__card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 36px 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.services-grid-2026__card:hover {
  border-color: rgba(255,255,255,0.18);
  background: var(--color-dark-3);
}

.services-grid-2026__icon {
  color: var(--color-gray-2);
  flex-shrink: 0;
}

.services-grid-2026__name {
  color: var(--h4-color-light);
  font-family: var(--font-primary);
}

.services-grid-2026__outcome {
  color: var(--color-gray-2);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
  margin: 0 0 20px;
}

.services-grid-2026__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}

.services-grid-2026__price {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-gray-1);
}

.services-grid-2026__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-light-1);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: gap 0.25s ease, color 0.25s ease;
}

.services-grid-2026__link:hover {
  gap: 10px;
  color: #ffffff;
}

.services-grid-2026__link-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.services-grid-2026__link:hover .services-grid-2026__link-arrow {
  transform: translateX(3px);
}


/* ============================================================
   5. VYUDUSKIN CASE STUDY
   Visual box uses theme's svg-rectangle / figureInfo aesthetic.
   Badge counters use countUp animation from effects library.
   ============================================================ */

.vyuduskin-2026 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.vyuduskin-2026__eyebrow {
  color: var(--color-gray-1);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.vyuduskin-2026 .h2 {
  color: var(--h2-color-dark);
}

.vyuduskin-2026__visual {
  position: relative;
  margin-top: 48px;
}

@media screen and (min-width: 992px) {
  .vyuduskin-2026__visual {
    margin-top: 0;
  }
}

/* Decorative stat badges */
.vyuduskin-2026__badge {
  position: absolute;
  background: var(--color-dark-1);
  color: var(--color-light-1);
  padding: 14px 20px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.vyuduskin-2026__badge_1 { top: -20px; right: 12%; }
.vyuduskin-2026__badge_2 { top: 40%; left: -16px; }
.vyuduskin-2026__badge_3 { bottom: -20px; right: 8%; }

.vyuduskin-2026__badge-value {
  font-family: var(--font-secondary);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.1;
  color: var(--color-light-1);
}

.vyuduskin-2026__badge-label {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--color-gray-1);
  margin-top: 4px;
}

/* Main quote box — uses theme's figure-info border aesthetic */
.vyuduskin-2026__box {
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--color-light-2);
  padding: 40px 36px;
  position: relative;
}

.vyuduskin-2026__quote {
  font-family: var(--font-secondary);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--color-dark-2);
  margin: 0 0 16px;
}

.vyuduskin-2026__quote-attr {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--color-gray-1);
}

@media screen and (max-width: 767px) {
  .vyuduskin-2026__badge { display: none; }
  .vyuduskin-2026__box { padding: 28px 24px; }
}


/* ============================================================
   6. FOUNDER BIO
   AsideCounters SASS pattern adapted for credentials list.
   ============================================================ */

.founder-bio-2026 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.founder-bio-2026__eyebrow {
  color: var(--color-gray-1);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.founder-bio-2026 .h2 {
  color: var(--h2-color-light);
}

/* Credentials list — matches asideCounters divider pattern */
.founder-bio-2026__credential-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 28px;
}

.founder-bio-2026__credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.founder-bio-2026__credential:first-child {
  padding-top: 0;
}

.founder-bio-2026__credential-press {
  padding: 16px 0 0;
}

.founder-bio-2026__credential-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--color-gray-1);
}

.founder-bio-2026__credential-value {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-light-1);
}

.founder-bio-2026__press-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.founder-bio-2026__press-link {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-2);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.founder-bio-2026__press-link:hover {
  color: var(--color-light-1);
}

@media screen and (max-width: 991px) {
  .founder-bio-2026__aside {
    margin-bottom: 48px;
  }

  .founder-bio-2026__credential-list {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .founder-bio-2026__credential {
    width: 50%;
    padding: 16px 16px 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-right: none;
  }
}


/* ============================================================
   7. FINAL CTA
   Uses theme's section-cta patterns + fade-up animation.
   ============================================================ */

.final-cta-2026 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.final-cta-2026__heading {
  color: var(--h2-color-light);
}

.final-cta-2026__sub {
  color: var(--color-gray-2);
  font-size: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta-2026__btn {
  min-width: 280px;
}

.final-cta-2026__reassurance {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--color-gray-1);
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .final-cta-2026 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .final-cta-2026__btn {
    min-width: 220px;
    font-size: 13px;
  }
}


/* ============================================================
   GLOBAL: theme-color-shifts between sections
   Smooth background transitions as user scrolls section to section.
   Based on global-theme-shift pattern from fx library.
   ============================================================ */

.bg-dark-1,
.bg-dark-2,
.bg-dark-3,
.bg-light-1,
.bg-light-2,
.bg-light-3 {
  transition: background-color 0.4s ease;
}


/* ============================================================
   PERFORMANCE: Contain layout reflow for new sections
   ============================================================ */

.hero-2026,
.social-proof-2026,
.agency-era-2026,
.services-grid-2026,
.vyuduskin-2026,
.founder-bio-2026,
.final-cta-2026 {
  contain: layout style;
}

/* ============================================================
   8. WORKS REEL
   portfolio-scroll-system (effects library) +
   figureProject hover overlay + hoverZoom scale (theme)
   ============================================================ */

.wr-section {
  background: #080808;
  padding: 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wr-section.wr-entered {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Header ---- */
.wr-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 64px 60px 48px;
}

.wr-header__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3));
}

.wr-header__line:last-child {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.3), transparent);
}

.wr-header__text {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}

.wr-header__label {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.85);
}

.wr-header__count {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ---- Two-column body ---- */
.wr-body {
  display: flex;
  align-items: flex-start;
  padding: 0 60px 80px;
  gap: 60px;
}

/* ---- Left: scrollable name list ---- */
.wr-list {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
}

.wr-name-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  transition: opacity 0.4s ease;
  opacity: 0.3;
}

.wr-name-item--active {
  opacity: 1;
}

.wr-name-item:hover {
  opacity: 0.85;
}

.wr-name-item--active:hover {
  opacity: 1;
}

.wr-name-item__index {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-style: italic;
  color: rgba(124, 58, 237, 0.5);
  flex-shrink: 0;
  width: 24px;
  line-height: 1;
  transition: color 0.3s ease;
}

.wr-name-item--active .wr-name-item__index {
  color: rgba(124, 58, 237, 0.9);
}

.wr-name-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.wr-name-item__name {
  font-family: var(--font-secondary);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.1;
  transition: transform 0.35s ease;
}

/* figureProject hover content lift */
.wr-name-item--active .wr-name-item__name,
.wr-name-item:hover .wr-name-item__name {
  transform: translateX(6px);
}

.wr-name-item__cat {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.3s ease;
}

.wr-name-item--active .wr-name-item__cat {
  color: rgba(255, 255, 255, 0.45);
}

.wr-name-item__role {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.45);
  margin-top: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wr-name-item--active .wr-name-item__role {
  opacity: 1;
}

.wr-name-item__play {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(124, 58, 237, 0.7);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.wr-name-item--active .wr-name-item__play,
.wr-name-item:hover .wr-name-item__play {
  opacity: 1;
  transform: scale(1);
}

.wr-name-item__rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  display: block;
}

/* ---- Right: sticky GIF preview ---- */
.wr-preview-col {
  flex: 1;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}

.wr-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(124, 58, 237, 0.1);
  overflow: hidden;
  background: #0a0a0a;
}

/* Individual GIF frame — cross-fades between active */
.wr-preview__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.wr-preview__frame--active {
  opacity: 1;
  pointer-events: auto;
}

/* hoverZoom outer container */
.wr-preview__hover-zoom {
  position: relative;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
}

/* hoverZoom inner — counter-scale on hover */
.wr-preview__inner {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.wr-preview__hover-zoom:hover .wr-preview__inner {
  transform: scale(0.93);
}

/* GIF image — hoverZoom__zoom scale */
.wr-preview__gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.5s ease;
  will-change: transform;
}

.wr-preview__hover-zoom:hover .wr-preview__gif {
  transform: scale(1.12);
}

/* figure-project_hover-inner overlay */
.wr-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.4) 45%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.wr-preview__hover-zoom:hover .wr-preview__overlay {
  opacity: 1;
  visibility: visible;
}

.wr-preview__overlay-cat {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.8);
}

.wr-preview__overlay-name {
  font-family: var(--font-secondary);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
}

.wr-preview__overlay-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.9);
  border-bottom: 1px solid rgba(124, 58, 237, 0.4);
  padding-bottom: 2px;
  transform: translateY(4px);
  transition: transform 0.25s ease 0.1s, color 0.25s ease;
}

.wr-preview__hover-zoom:hover .wr-preview__overlay-cta {
  transform: translateY(0);
}

/* figure-project__letter watermark */
.wr-preview__letter {
  position: absolute;
  bottom: -20px;
  right: 16px;
  font-family: var(--font-secondary);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---- Cinema8 Modal ---- */
.wr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  animation: wrModalIn 0.35s ease forwards;
}

@keyframes wrModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wr-modal__inner {
  position: relative;
  width: min(90vw, 1100px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wr-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
  line-height: 0;
}

.wr-modal__close:hover {
  color: rgba(124, 58, 237, 0.9);
}

.wr-modal__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.wr-modal__index {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-style: italic;
  color: rgba(124, 58, 237, 0.6);
}

.wr-modal__title {
  font-family: var(--font-secondary);
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.85);
}

.wr-modal__video-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  gap: 2px;
}

.wr-modal__video-sub {
  font-family: var(--font-primary);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.wr-modal__video-label {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.6);
}

.wr-modal__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

/* ---- Responsive ---- */
@media screen and (max-width: 1023px) {
  .wr-body {
    flex-direction: column;
    padding: 0 32px 60px;
    gap: 0;
  }

  .wr-list {
    flex: none;
    width: 100%;
  }

  .wr-preview-col {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 32px;
    order: -1;
  }

  .wr-preview {
    aspect-ratio: 16/9;
  }
}

@media screen and (max-width: 767px) {
  .wr-header {
    padding: 48px 24px 32px;
  }

  .wr-body {
    padding: 0 24px 48px;
  }

  .wr-name-item {
    padding: 20px 0;
  }

  .wr-name-item__name {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wr-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .wr-preview__gif,
  .wr-preview__inner {
    transition: none;
  }
  .wr-preview__frame {
    transition: none;
  }
}

/* ---- Header restructure for tabs ---- */
.wr-header {
  padding: 64px 60px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wr-header__top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* ---- Tab navigation ---- */
.wr-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 0 0 0;
}

.wr-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 12px 28px 14px;
  position: relative;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wr-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(124, 58, 237, 0.85);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.wr-tab--active {
  color: rgba(255, 255, 255, 0.9);
}

.wr-tab--active::after {
  transform: scaleX(1);
}

.wr-tab:hover {
  color: rgba(255, 255, 255, 0.6);
}

.wr-tab__count {
  font-size: 8px;
  font-weight: 400;
  color: rgba(124, 58, 237, 0.55);
  letter-spacing: 0.1em;
}

/* ---- Preview detail strip (below GIF in Work tab) ---- */
.wr-preview__detail-strip {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 12px;
}

.wr-preview__detail-index {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-style: italic;
  color: rgba(124, 58, 237, 0.5);
  flex-shrink: 0;
}

.wr-preview__detail-name {
  font-family: var(--font-secondary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.wr-preview__detail-cat {
  font-family: var(--font-primary);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-left: auto;
}

/* ---- Name item view arrow ---- */
.wr-name-item__view {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(124, 58, 237, 0.6);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.wr-name-item--active .wr-name-item__view,
.wr-name-item:hover .wr-name-item__view {
  opacity: 1;
  transform: scale(1);
}

/* ---- Overlay detail text ---- */
.wr-preview__overlay-detail {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-top: 4px;
  max-width: 320px;
}

/* ══ GRAPHICS TAB ══ */
.wr-graphics {
  padding: 48px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.wr-graphic-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wr-graphic-item__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

.wr-graphic-item__index {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-style: italic;
  color: rgba(124, 58, 237, 0.5);
  flex-shrink: 0;
}

.wr-graphic-item__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wr-graphic-item__name {
  font-family: var(--font-secondary);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.1;
}

.wr-graphic-item__cat {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.wr-graphic-item__embed {
  width: 100%;
  border: 1px solid rgba(124, 58, 237, 0.08);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.wr-graphic-item__embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

@media screen and (max-width: 1023px) {
  .wr-graphics {
    padding: 40px 32px 60px;
  }
  .wr-graphic-item__embed iframe {
    height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .wr-graphics {
    padding: 32px 24px 48px;
  }
  .wr-graphic-item__embed iframe {
    height: 280px;
  }
}

/* ══ REELS TAB ══ */
.wr-reels {
  padding: 48px 60px 80px;
  display: flex;
  flex-direction: column;
  max-width: 860px;
}

.wr-reel-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wr-reel-item__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.wr-reel-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.6);
}

.wr-reel-item__thumb:hover .wr-reel-item__img {
  transform: scale(1.04);
  filter: brightness(0.5);
}

.wr-reel-item__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.wr-reel-item__play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(124, 58, 237, 0.85);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.wr-reel-item__thumb:hover .wr-reel-item__play-btn {
  transform: scale(1.1);
  border-color: rgba(124, 58, 237, 0.9);
}

.wr-reel-item__info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wr-reel-item__index {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-style: italic;
  color: rgba(124, 58, 237, 0.5);
  flex-shrink: 0;
  width: 24px;
}

.wr-reel-item__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.wr-reel-item__title {
  font-family: var(--font-secondary);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.1;
}

.wr-reel-item__sub {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.wr-reel-item__watch {
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: rgba(124, 58, 237, 0.8);
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.wr-reel-item__watch:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.7);
  color: rgba(124, 58, 237, 1);
}

.wr-reel-item__rule {
  display: none;
}

/* ══ MEDIA & RESOURCES TAB ══ */
.wr-resources {
  padding: 48px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.wr-resources__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wr-resources__heading {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.6);
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
}

/* Media feature cards — 3-col grid */
.wr-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.wr-media-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.wr-media-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(124, 58, 237, 0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.wr-media-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.wr-media-card:hover::before {
  transform: scaleX(1);
}

.wr-media-card__outlet {
  font-family: var(--font-primary);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(124, 58, 237, 0.7);
}

.wr-media-card__title {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.wr-media-card__sub {
  font-family: var(--font-primary);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
}

.wr-media-card__arrow {
  margin-top: auto;
  padding-top: 10px;
  color: rgba(124, 58, 237, 0.4);
  line-height: 0;
  transition: color 0.25s ease, transform 0.25s ease;
  display: block;
  transform: translate(0, 0);
}

.wr-media-card:hover .wr-media-card__arrow {
  color: rgba(124, 58, 237, 0.8);
  transform: translate(2px, -2px);
}

/* Resources — full-width row list */
.wr-resources__list {
  display: flex;
  flex-direction: column;
}

.wr-resource-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.2s ease;
}

.wr-resource-row:hover {
  padding-left: 6px;
}

.wr-resource-row__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(124, 58, 237, 0.6);
  transition: border-color 0.25s ease;
}

.wr-resource-row:hover .wr-resource-row__icon {
  border-color: rgba(124, 58, 237, 0.5);
}

.wr-resource-row__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.wr-resource-row__label {
  font-family: var(--font-secondary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  transition: color 0.25s ease;
}

.wr-resource-row:hover .wr-resource-row__label {
  color: rgba(255, 255, 255, 0.95);
}

.wr-resource-row__sub {
  font-family: var(--font-primary);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.wr-resource-row__arrow {
  flex-shrink: 0;
  color: rgba(124, 58, 237, 0.3);
  line-height: 0;
  transform: translate(0, 0);
  transition: color 0.25s ease, transform 0.25s ease;
}

.wr-resource-row:hover .wr-resource-row__arrow {
  color: rgba(124, 58, 237, 0.7);
  transform: translate(2px, -2px);
}

/* ---- Responsive for new tabs ---- */
@media screen and (max-width: 1023px) {
  .wr-header {
    padding: 48px 32px 0;
  }
  .wr-reels,
  .wr-resources {
    padding: 40px 32px 60px;
  }
  .wr-resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .wr-header {
    padding: 40px 24px 0;
  }
  .wr-tab {
    padding: 10px 16px 12px;
    font-size: 9px;
  }
  .wr-reels,
  .wr-resources {
    padding: 32px 24px 48px;
  }
  .wr-resources__grid {
    grid-template-columns: 1fr;
  }
  .wr-reel-item__thumb {
    aspect-ratio: 16/9;
  }
}
