/* Store Specific Styles */
.store-hero {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 50px;
}
.store-hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.store-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.store-hero-mockup {
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--card-bg);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}
.store-hero-trailer {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.buy-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.buy-btn-big {
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.25rem 3rem;
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
.price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.price-row strong {
  font-size: 1.15em;
}
.original-price {
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 600;
  opacity: 0.95;
  font-size: 0.85em;
}
body.store-page.dark-mode .buy-btn-big {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 20px 44px -18px rgba(0, 0, 0, 0.82),
    0 8px 20px rgba(0, 0, 0, 0.45);
}
.buy-btn-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
}
body.store-page.dark-mode .buy-btn-big:hover {
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow:
    0 26px 54px -18px rgba(0, 0, 0, 0.88),
    0 12px 24px rgba(0, 0, 0, 0.5);
}
body.store-page.dark-mode .buy-btn-big svg,
body.store-page.dark-mode .buy-btn-big .price-row,
body.store-page.dark-mode .buy-btn-big .price-row strong {
  color: #ffffff !important;
}
.pricing-cta {
  width: min(100%, 28rem);
  margin-inline: auto;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
}

/* Creators Section */
.creators-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.creators-stage {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
}
.creators-title-stack {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 1.5rem;
  pointer-events: none;
}
.creators-title-canvas {
  display: none;
}
.creators-display-text {
  grid-area: 1 / 1;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  text-align: center;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.94);
  z-index: 1;
}
.creators-filter-text {
  display: none;
}
.creators-display-outline {
  transform: none;
  color: transparent;
  -webkit-text-stroke: 1.1px rgba(0, 0, 0, 1);
  z-index: 4;
}
.creators-header {
  z-index: 4;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  text-align: center;
  width: min(28rem, calc(100% - 2rem));
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.82);
  margin-top: 2rem;
}
body.dark-mode .creators-header {
  color: rgba(255, 255, 255, 0.9);
}
.creators-color-reveal {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(1200px, calc(100vw - 2rem));
  height: clamp(110px, 24vw, 260px);
  transform: translate(-50%, -50%);
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask: url(#creatorsTitleRevealMask) center / 100% 100% no-repeat;
  mask: url(#creatorsTitleRevealMask) center / 100% 100% no-repeat;
}
.creators-color-collage {
  position: absolute;
  inset: 0;
}
.creators-collage {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: min(1200px, 100%);
  height: 340vh;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.creator-card {
  position: absolute;
  width: clamp(180px, 20vw, 300px);
  border-radius: var(--radius-lg);
}
.creator-card-color .creator-photo {
  filter: none;
}
.creator-card-color .creator-name,
.creator-card-color .creator-media::after {
  display: none;
}
.creator-card:nth-child(1) { left: 2%; top: 102vh; }
.creator-card:nth-child(2) { right: 3%; top: 132vh; }
.creator-card:nth-child(3) { left: 22%; top: 176vh; width: clamp(210px, 22vw, 340px); }
.creator-card:nth-child(4) { left: 6%; top: 246vh; }
.creator-card:nth-child(5) { right: 6%; top: 298vh; }
.creator-card:nth-child(6) { left: 12%; top: 356vh; width: clamp(220px, 24vw, 360px); }
.creator-card:nth-child(7) { right: 10%; top: 414vh; width: clamp(210px, 22vw, 340px); }
.creator-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 242, 245, 0.92));
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  will-change: transform;
  aspect-ratio: 4 / 5;
}
.creator-photo,
.creator-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}
.creator-photo {
  --creator-color-progress: 0;
  object-fit: cover;
  filter:
    grayscale(calc(1 - var(--creator-color-progress)))
    saturate(calc(1 + (var(--creator-color-progress) * 1.15)))
    contrast(calc(1.04 + (var(--creator-color-progress) * 0.08)))
    blur(calc(var(--creator-color-progress) * 0.9px));
  transform: scale(calc(1 + (var(--creator-color-progress) * 0.045)));
  transform-origin: center center;
  transition: filter 0.22s ease-out, transform 0.22s ease-out;
}
.creator-name {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}
.creator-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}
.creator-card-placeholder .creator-media {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.08) 60%),
    linear-gradient(145deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.02));
  border-style: dashed;
}
.creator-placeholder {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.16)),
    linear-gradient(90deg, transparent 0, transparent 48%, rgba(17, 24, 39, 0.08) 48%, rgba(17, 24, 39, 0.08) 52%, transparent 52%, transparent 100%);
}
body.dark-mode .creators-display-text {
  color: rgba(255, 255, 255, 0.92);
}
body.dark-mode .creators-filter-text {
  display: none;
}
body.dark-mode .creators-display-outline {
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 1);
}
body.dark-mode .creator-media {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(28, 28, 28, 0.94));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
body.dark-mode .creator-name {
  background: rgba(10, 10, 10, 0.88);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
body.dark-mode .creator-media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.52) 100%);
}
body.dark-mode .creator-card-placeholder .creator-media {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}
body.dark-mode .creator-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12)),
    linear-gradient(90deg, transparent 0, transparent 48%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.08) 52%, transparent 52%, transparent 100%);
}
@media (max-width: 1024px) {
  .creators-section {
    height: auto;
    padding: 6rem 0 4rem;
  }
  .creators-stage {
    height: auto;
    min-height: 50vh;
    isolation: isolate;
  }
  .creators-color-reveal {
    display: none;
  }
  .creators-collage {
    position: relative;
    inset: auto;
    left: auto;
    transform: none;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    height: auto;
    margin: 2rem auto 0;
    padding: 0 1rem;
    pointer-events: auto;
  }
  .creator-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
  }
}
@media (max-width: 640px) {
  .store-page .navbar {
    padding: 1rem 0;
  }
  .store-page .nav-container {
    padding: 0 0.8rem;
  }
  .store-page .nav-pill {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .store-page .nav-pill::-webkit-scrollbar {
    display: none;
  }
  .store-page .nav-link {
    flex: 0 0 auto;
    padding: 0.58rem 0.85rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .store-page .theme-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-left: 0.25rem;
  }
  .store-page .buy-btn-big {
    padding: 1rem 1.2rem;
    font-size: 1rem;
    width: min(100%, 20rem);
  }
  .store-page .pricing-price .price-row {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .creators-display-text {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }
  .creator-photo {
    --creator-color-progress: 1;
    filter: none;
    transform: none;
  }
  .creators-collage {
    grid-template-columns: 1fr;
  }
  .creator-name {
    left: 0.8rem;
    bottom: 0.8rem;
  }
}

/* Fluid scroll text */
.store-fluid-section {
  position: relative;
  min-height: 100vh;
  margin-top: clamp(4rem, 6vw, 6rem);
  padding: 0;
  overflow: clip;
  background: transparent;
  background-color: transparent;
}
.store-fluid-pin {
  position: relative;
  min-height: 100vh;
}
.store-fluid-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vh, 5rem) 0;
}
.store-fluid-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  gap: clamp(2rem, 5vw, 6rem);
  position: relative;
  padding-left: clamp(1rem, 4vw, 4rem);
}
.store-fluid-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  width: min(100%, 22rem);
}
.store-fluid-anchor {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vh, 1.8rem);
  padding: 0;
  width: 100%;
}
.store-fluid-title {
  display: block;
  font-family: 'Sora', 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(3.6rem, 6vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: lowercase;
  margin: 0;
  color: var(--text-primary);
  position: relative;
  width: min(100%, 58rem);
  text-align: right;
}
.store-fluid-want {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: lowercase;
  position: relative;
  z-index: 2;
  text-align: right;
  white-space: nowrap;
}
.store-fluid-right {
  position: relative;
  width: min(100%, 52rem);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.store-fluid-rail {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 52rem;
  height: 100vh;
  padding-top: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.store-fluid-list {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: clamp(1rem, 2vh, 1.4rem);
  justify-items: flex-start;
}
.store-fluid-list li {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.9vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  padding: 0;
  color: rgba(17, 24, 39, 0.22);
  transition: opacity 0.18s ease, filter 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
body.dark-mode .store-fluid-section {
  background: transparent;
  background-color: transparent;
}
body.dark-mode .store-fluid-title {
  color: var(--text-primary);
}
body.dark-mode .store-fluid-want {
  color: var(--text-primary);
}
body.dark-mode .store-fluid-list li {
  color: rgba(255, 255, 255, 0.22);
}

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

body.store-page::before,
body.store-page .grid-background {
  display: none;
}

@media (max-width: 1024px) {
  .store-fluid-section {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .store-fluid-section {
    display: none;
  }
}

/* Reviews */
.editors-reviews-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.editors-reviews-pin {
  position: relative;
}
.editors-reviews-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.editors-reviews-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.editors-reviews-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  align-self: center;
}
.editors-reviews-kicker {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.editors-reviews-heading {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-black);
}
.editors-reviews-right {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.editors-scroll-viewport {
  position: relative;
  width: min(640px, 100%);
  height: 100vh;
  overflow: hidden;
}
.editors-cube-flow,
.editors-cards-flow {
  position: absolute;
  left: 50%;
  width: 400px;
  transform: translateX(-50%);
}
.editors-cube-flow {
  top: 0;
}
.editors-cards-flow {
  top: 0;
  display: grid;
  gap: 3.25rem;
  perspective: 1600px;
  transform-style: preserve-3d;
}
.editors-cube-flow .pov {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editors-cube-flow .tray {
  width: 100%;
  transform-origin: center;
}
.editors-cube-flow .die {
  width: 400px;
  height: 55px;
  padding-bottom: 9px;
  perspective: 999px;
}
.editors-cube-flow .cube {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.editors-cube-flow .face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #111111;
  backface-visibility: hidden;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.review-story-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  transform-style: preserve-3d;
  transform-origin: center center;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 10px 24px rgba(15, 23, 42, 0.08);
  will-change: transform;
}
.review-story-card:nth-child(1) {
  margin-left: 0;
  max-width: 390px;
}
.review-story-card:nth-child(2) {
  margin-left: 3.9rem;
  max-width: 372px;
}
.review-story-card:nth-child(3) {
  margin-left: -1.75rem;
  max-width: 405px;
}
.review-story-card:nth-child(4) {
  margin-left: 4.8rem;
  max-width: 382px;
}
.stars {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border-color);
}
.author-info h4 {
  margin: 0;
  font-size: 1rem;
}
.author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
body.dark-mode .testimonial-card {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(12, 12, 12, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
body.dark-mode .review-story-card {
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.46),
    0 14px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .stars {
  color: #f8fafc;
}
body.dark-mode .editors-cube-flow .face {
  color: #f8fafc;
}
body.dark-mode .editors-reviews-heading {
  color: #f8fafc;
}
body.dark-mode .testimonial-text {
  color: #e5e7eb;
}
body.dark-mode .author-info p {
  color: #cbd5e1;
}

/* Pricing */
.pricing-section {
  padding: 5rem 0 8rem;
}
.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.dark-mode .pricing-card {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 52%),
    linear-gradient(180deg, #101010 0%, #050505 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pricing-badge {
  position: absolute;
  top: 2rem;
  right: -4.6rem;
  background: var(--color-black);
  color: var(--color-white);
  width: 14rem;
  padding: 0.6rem 0;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: rotate(45deg);
  transform-origin: center;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
body.dark-mode .pricing-badge {
  background: var(--color-white);
  color: var(--color-black);
}
.pricing-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 4rem;
  font-weight: 700;
  margin: 1.5rem 0;
  line-height: 1;
}
.pricing-features {
  text-align: left;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.feature-icon {
  color: #10b981;
}

/* Results */
.results-section {
  position: relative;
  padding: 9rem 0 8rem;
  overflow: hidden;
}
.results-section::before,
.results-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.65;
}
.results-section::before {
  width: 18rem;
  height: 18rem;
  top: 3rem;
  right: -7rem;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
}
.results-section::after {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  bottom: 5rem;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 70%);
}
.results-header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.results-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.results-title {
  font-size: clamp(2.75rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.results-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}
.results-story {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 4rem auto 0;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 1fr);
  gap: 3rem;
  align-items: start;
}
.results-statement h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.results-statement p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 52rem;
}
.results-points {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.results-point {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--border-color);
}
.results-point-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
}
.results-point-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.results-cta {
  display: flex;
  width: fit-content;
  margin: 4rem auto 0;
  position: relative;
  z-index: 1;
}
body.dark-mode .results-section::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
}
body.dark-mode .results-point-value {
  color: #ffffff;
}
body.dark-mode .results-point {
  border-left-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
  .editors-reviews-stage {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .editors-reviews-layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .editors-reviews-right {
    min-height: auto;
    display: block;
  }
  .editors-scroll-viewport {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .editors-cube-flow,
  .editors-cards-flow {
    position: relative;
    left: auto;
    width: min(400px, 100%);
    transform: none;
    margin: 0 auto;
  }
  .editors-cube-flow {
    margin-bottom: 2rem;
  }
  .editors-cards-flow {
    gap: 1rem;
    perspective: none;
  }
  .editors-cube-flow .pov {
    height: auto;
  }
  .editors-cube-flow .tray {
    height: auto !important;
  }
  .review-story-card {
    max-width: min(400px, 100%);
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
  }
}

@media (max-width: 640px) {
  .results-story {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .results-statement {
    display: contents;
  }
  .results-statement h3 {
    order: 1;
    margin-bottom: 0;
  }
  .results-points {
    order: 2;
  }
  .results-statement p {
    order: 3;
    margin-top: 0;
  }
  .editors-reviews-kicker {
    letter-spacing: 0.14em;
  }
  .editors-scroll-viewport {
    width: 100%;
    height: auto;
  }
  .editors-cube-flow {
    display: none;
  }
  .editors-cards-flow {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
  }
  .editors-cube-flow .die,
  .editors-cards-flow,
  .review-story-card {
    width: min(100%, 340px);
  }
  .review-story-card,
  .review-story-card:nth-child(1),
  .review-story-card:nth-child(2),
  .review-story-card:nth-child(3),
  .review-story-card:nth-child(4) {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
}
