/* ============================================
   RENATUS V2 LANDING PAGE STYLES
   All values from design tokens - no hardcoding
   ============================================ */

.landing-link {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--color-black);
  text-decoration: none;
  transition: color 150ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.landing-link:hover {
  color: var(--brand-pink);
}

.landing-link .link-arrow {
  display: inline-block;
  transition: transform 150ms ease;
}

.landing-link:hover .link-arrow {
  transform: translateX(3px);
}

/* ============================================
   LANDING CONTAINER
   Centers content at 1425px max-width
   ============================================ */
.landing-container {
  max-width: var(--landing-container);
  margin: 0 auto;
  padding: 0 var(--landing-container-padding);
  width: 100%;
}

/* ============================================
   HERO SECTION
   Pink-orange gradient background
   ============================================ */
.landing-hero {
  position: relative;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  padding: calc(var(--topbar-height) + var(--space-20)) 0 var(--space-20);
  overflow: hidden;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 550px;
}

.landing-hero-title {
  font-size: var(--display-sm);
  font-weight: var(--font-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.landing-hero-desc {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 460px;
}

.landing-hero-actions {
  display: flex;
  gap: var(--space-4);
}

.btn-hero {
  padding: 0 28px;
  height: 48px;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
}

.btn-hero:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ============================================
   HERO CAROUSEL
   Animated slideshow replacing static report card
   ============================================ */
.landing-hero-graphic {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-free-credits {
  display: none;
}

.hero-carousel {
  width: 520px;
  height: 380px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-carousel-visual {
  flex: 1;
  opacity: 1;
  transform: scale(1);
  transition: all 0.2s ease-out;
}

.hero-carousel-visual.transitioning {
  opacity: 0;
  transform: scale(0.98);
}

.hero-carousel-caption {
  padding: 0 var(--space-5) var(--space-10) var(--space-6);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.2s ease-out;
}

.hero-carousel-caption.transitioning {
  opacity: 0;
  transform: translateY(var(--space-2));
}

.hero-carousel-insight {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  margin: 0 0 var(--spacing-2xs);
  line-height: var(--lh-body);
}

.hero-carousel-detail {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: var(--gray-dark);
  margin: 0;
  line-height: var(--lh-body);
}

.carousel-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: var(--space-8);
  gap: var(--space-5);
}

.carousel-stat-block {
  text-align: center;
  min-width: 110px;
}

.carousel-stat-big {
  font-size: 64px;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
  letter-spacing: -3px;
}

.carousel-stat-label {
  font-size: var(--text-xs);
  color: var(--color-black);
  font-weight: var(--font-semibold);
  margin-top: var(--spacing-2xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-chart-area {
  flex: 1;
  position: relative;
  height: 100%;
}

.carousel-svg-full {
  width: 100%;
  height: 100%;
}

.carousel-bars-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  padding: 0 var(--space-5);
}

.carousel-hbar-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.carousel-hbar-label {
  font-size: 10px;
  color: #999;
  width: 50px;
  text-align: right;
}

.carousel-hbar-track {
  flex: 1;
  height: 12px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
}

.carousel-hbar-fill {
  height: 100%;
  border-radius: var(--radius-md);
}

.carousel-quadrant-area {
  flex: 1;
  position: relative;
  height: 100%;
}

.carousel-quadrant-h {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-quadrant-v {
  position: absolute;
  top: 8%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-you-dot {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  box-shadow: var(--shadow-md);
}

.carousel-dot-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--spacing-2xs);
  padding: var(--space-3) var(--space-5);
}

.carousel-grid-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
}

.carousel-grid-dot.filled {
  background: var(--brand-soft-pink);
}

@keyframes carousel-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes carousel-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes carousel-run-down {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.carousel-float {
  animation: carousel-float 3s ease-in-out infinite;
}

.carousel-pulse {
  animation: carousel-pulse 2s ease-in-out infinite;
}

.carousel-run-dot {
  offset-path: path('M15,45 C30,42 40,30 55,25 C70,20 80,35 95,40 C110,45 120,28 135,55 C150,82 170,110 195,125');
  animation: carousel-run-down 3s ease-in-out infinite;
}

/* ============================================
   PRODUCTS TABS SECTION (from Figma)
   Split layout: text left, image right
   ============================================ */
.section-divider {
  border-bottom: 1px solid #EBEBEB;
}

.products-section {
  padding: var(--space-10) 80px var(--space-6) 80px;
}

.products-tabs-layout {
  display: flex;
  align-items: stretch;
  gap: var(--space-4);
}

.products-tab-left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.products-tab-left-col .pill-tabs {
  margin-bottom: var(--space-16);
}


.products-tab-right-col {
  flex: 0 0 52%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.products-tab-right-spacer {
  flex: 0 0 60px;
}

.products-tab-right-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.products-tabs-wrapper {
  display: grid;
}

.products-tab-anim,
.products-tab-text {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.products-tab-anim.active,
.products-tab-text.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.products-tab-text .products-tab-heading {
  margin-bottom: var(--space-5);
}

.products-tab-text .products-tab-body {
  margin-bottom: var(--space-4);
}

.products-tab-text .landing-link {
  align-self: flex-start;
  margin-top: var(--space-5);
}

.products-tab-right img,
.products-tab-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  margin-left: auto;
  display: block;
}

.products-tab-anim lottie-player {
  width: 100%;
  min-height: 380px;
}

.products-tab-anim[data-tab-anim="reports"] {
  position: relative;
}

.products-tab-anim[data-tab-anim="reports"]::before {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: #FF74C1;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.ren-demo {
  width: 100%;
  max-width: 600px;
  height: 500px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-left: auto;
  z-index: 1;
}
.ren-demo-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}
.ren-demo-screen.active { opacity: 1; pointer-events: all; }

.ren-demo-screen--welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 52px 80px;
}
.ren-demo-welcome-name {
  font-size: 26px; font-weight: 600; color: #fff;
  margin-bottom: 8px; text-align: center;
}
.ren-demo-welcome-sub {
  font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px; text-align: center;
}
.ren-demo-input-shell {
  width: 100%;
  display: flex; align-items: center;
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: 16px; padding: 10px 10px 10px 16px;
  gap: 8px; box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.ren-demo-input-shell input {
  flex: 1; font-family: inherit; font-size: 13px; font-weight: 300;
  background: transparent; border: none; outline: none; color: #0F0F0F;
}
.ren-demo-input-shell input::placeholder { color: #9CA3AF; }
.ren-demo-send-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: #0F0F0F; border: none;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ren-demo-send-btn svg { width: 11px; height: 11px; }

.ren-demo-screen--gen {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
}
.ren-demo-spinner {
  width: 36px; height: 36px; border-radius: 50%;
  background: conic-gradient(from 0deg, #fff, rgba(255,255,255,0.3), transparent 75%);
  animation: renDemoSpin 0.9s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}
@keyframes renDemoSpin { to { transform: rotate(360deg); } }
.ren-demo-gen-label {
  font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em; transition: opacity 200ms ease;
}

.ren-demo-screen--float { position: absolute; inset: 0; }
.ren-demo-scene {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 40px;
  opacity: 0; transition: opacity 400ms ease;
  pointer-events: none;
}
.ren-demo-scene.show { opacity: 1; }

.ren-demo-comp-scene {
  position: relative;
  width: 360px;
  margin-right: 60px;
}
.ren-demo-comp-bars { display: flex; flex-direction: column; gap: 10px; }
.ren-demo-bar-card {
  background: #fff; border-radius: 12px; padding: 13px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(6px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.ren-demo-bar-card.show { opacity: 1; transform: none; }
.ren-demo-bar-top {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 9px;
}
.ren-demo-bar-name { font-size: 13px; font-weight: 400; color: #6B7280; }
.ren-demo-bar-name--lead { font-weight: 600; color: #0F0F0F; }
.ren-demo-bar-rank { font-size: 11px; font-weight: 400; color: #9CA3AF; }
.ren-demo-bar-rank--lead { font-weight: 600; color: #0F0F0F; }
.ren-demo-bar-track { height: 6px; background: #F9FAFB; border-radius: 99px; overflow: hidden; }
.ren-demo-bar-fill {
  height: 100%; border-radius: 99px; background: #E5E7EB;
  width: 0; transition: width 900ms cubic-bezier(0.4,0,0.2,1);
}
.ren-demo-bar-fill--lead { background: linear-gradient(90deg, #FF38B2, #FFB347); }

.ren-demo-callout {
  position: absolute;
  bottom: -60px; right: -96px;
  width: 180px;
  opacity: 0;
  transform: translateX(8px) scale(0.92);
  transition: opacity 500ms ease, transform 600ms cubic-bezier(0.34,1.3,0.64,1);
  filter: drop-shadow(3px 4px 0px #0F0F0F);
  z-index: 10;
}
.ren-demo-callout.show { opacity: 1; transform: translateX(0) scale(1); }
.ren-demo-callout-inner {
  position: relative; background: #fff;
  border: 2px solid #0F0F0F; border-radius: 14px; padding: 12px 14px;
}
.ren-demo-callout-inner::after {
  content: ''; position: absolute;
  left: -18px; top: 20px;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-right: 18px solid #0F0F0F;
}
.ren-demo-callout-inner::before {
  content: ''; position: absolute;
  left: -13px; top: 22px;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  border-right: 13px solid #fff; z-index: 1;
}
.ren-demo-callout-label {
  font-size: 8px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.4px; color: #FF38B2; margin-bottom: 6px;
}
.ren-demo-callout-text {
  font-size: 11px; font-weight: 500; color: #0F0F0F; line-height: 1.5;
}
.ren-demo-callout-text em {
  font-style: normal;
  background: linear-gradient(90deg, #FF38B2, #FFB347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 600;
}

.survey-demo {
  width: 100%;
  max-width: 600px;
  height: 480px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-left: auto;
}
.sd-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 48px;
}
.sd-screen.active { opacity: 1; pointer-events: all; }
.sd-q-text {
  font-size: 18px;
  font-weight: 600;
  color: #0F0F0F;
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin-bottom: 28px;
  text-align: center;
}
.sd-slider-wrap { width: 100%; display: flex; flex-direction: column; }
.sd-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 400;
  color: #9CA3AF;
  margin-bottom: 10px;
}
.sd-slider-track {
  position: relative;
  height: 10px;
  background: #E5E7EB;
  border-radius: 99px;
  margin-bottom: 14px;
}
.sd-slider-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #FF38B2, #FFB347);
  width: 0;
  transition: width 50ms linear;
}
.sd-slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0F0F0F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  left: 0;
  transition: left 50ms linear;
}
.sd-slider-value {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #0F0F0F;
  height: 18px;
}
.sd-triad-wrap { width: 100%; display: flex; justify-content: center; }
.sd-triad-svg { width: 280px; height: 200px; }
.sd-triad-triangle {
  fill: #fff;
  stroke: #E5E7EB;
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}
.sd-triad-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  fill: #6B7280;
}
.sd-triad-marker {
  fill: #FF38B2;
  filter: drop-shadow(0 2px 6px rgba(255,56,178,0.4));
  opacity: 0;
  transition: opacity 300ms ease, cx 800ms cubic-bezier(0.4,0,0.2,1), cy 800ms cubic-bezier(0.4,0,0.2,1);
}
.sd-multi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.sd-multi-option {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  transition: all 200ms ease;
  opacity: 0;
  transform: translateY(6px);
}
.sd-multi-option.show { opacity: 1; transform: none; }
.sd-multi-option.selected {
  border-color: #0F0F0F;
  border-width: 2px;
  background: #fff;
  color: #0F0F0F;
}
.sd-result-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 360px;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.34,1.2,0.64,1);
}
.sd-result-card.show { opacity: 1; transform: none; }
.sd-result-eyebrow {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #9CA3AF;
  margin-bottom: 8px;
}
.sd-result-stage {
  font-size: 32px;
  font-weight: 700;
  color: #0F0F0F;
  letter-spacing: -1px;
  line-height: 1.1;
}
.sd-result-stage em {
  font-style: normal;
  background: linear-gradient(90deg, #FF38B2, #FFB347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sd-result-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.sd-result-score-track {
  flex: 1;
  height: 8px;
  background: #F3F4F6;
  border-radius: 99px;
  overflow: hidden;
}
.sd-result-score-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #FF38B2, #FFB347);
  width: 0;
  transition: width 900ms cubic-bezier(0.4,0,0.2,1);
}
.sd-result-score-pct {
  font-size: 13px;
  font-weight: 700;
  color: #0F0F0F;
  white-space: nowrap;
}

.products-tab-img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 600 / 500;
  display: block;
  border-radius: 22px;
  box-shadow: 0 2px 48px rgba(0, 0, 0, 0.06);
  object-fit: cover;
  margin: 0;
}

.products-tab-iframe {
  width: 90%;
  height: 600px;
  display: block;
  border: none;
  margin: 0;
}

.products-tab-left-col .products-tab-heading {
  margin-bottom: var(--space-5);
}

.products-tab-left-col .products-tab-body {
  margin-bottom: var(--space-4);
}

.products-tab-left-col .landing-link {
  align-self: flex-start;
  margin-top: var(--space-5);
}

.products-tab-heading {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  line-height: var(--lh-heading);
  color: var(--color-black);
}

.products-tab-heading.wide {
  max-width: 100%;
}

.products-tab-heading .accent {
  font-weight: var(--font-extrabold);
}

.products-tab-body {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
}

.products-tab-body p {
  margin-bottom: 0;
}

/* Checkmark list */
.products-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.products-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: var(--lh-list);
  color: var(--color-black);
}

.products-check-icon {
  width: var(--icon-size-check);
  height: var(--icon-size-check);
  flex-shrink: 0;
}

/* ============================================
   AI TRUST PROBLEM SECTION
   ============================================ */
.trust-section {
  padding: var(--space-20) 0;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
  direction: rtl;
}

.trust-content > * {
  direction: ltr;
}

.trust-content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  direction: ltr;
  max-width: 860px;
  margin: 0 auto;
}

.trust-text {
  text-align: center;
}

.trust-icons {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  margin-top: var(--space-2);
  margin-bottom: var(--space-12);
}

.trust-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 220px;
}

.trust-icon-tile {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-tile svg {
  width: 88px;
  height: 88px;
}

.trust-icon-pink { background: #FF74C1; }
.trust-icon-coral { background: #FF7E7E; }
.trust-icon-amber { background: #FFC872; }

.trust-icon-label {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-black);
  text-align: center;
  line-height: 1.35;
  max-width: 140px;
}

.trust-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  margin-bottom: var(--space-4);
}

.trust-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-6);
}

.trust-body {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.trust-body:last-of-type {
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding-top: 40px;
  margin-top: 0;
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
}

.trust-grid-item {
  border-radius: var(--radius-lg, 12px);
  padding: var(--space-5);
}

.trust-grid-item:nth-child(1),
.trust-grid-item:nth-child(2),
.trust-grid-item:nth-child(3),
.trust-grid-item:nth-child(4) {
  background-color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.trust-grid-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: #000;
  margin: 0 0 var(--space-2) 0;
  line-height: 1.3;
  min-height: 3.25em;
}

.trust-grid-desc {
  font-size: var(--text-sm);
  color: #000;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .trust-body {
    font-size: 17px;
    line-height: 26px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ============================================
   "WE SERVE IT REAL" SECTION
   ============================================ */
.real-section {
  padding: 0;
  background: #FF74C1;
}

.real-animation {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  border-radius: 0;
  overflow: hidden;
}

/* ============================================
   THREE PRINCIPLES SECTION
   Illustrated cards
   ============================================ */
.principles-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.principles-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.principles-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  line-height: var(--lh-heading);
  color: var(--color-black);
}

.principles-title .accent {
  font-weight: var(--font-extrabold);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.principle-card {
  text-align: center;
  padding: var(--space-8);
}

.principle-card-img-wrap {
  width: 65%;
  aspect-ratio: 1 / 1;
  margin: 0 auto var(--space-6);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.principle-card-rose {
  background: #FF6B6B;
}

.principle-card-pink {
  background: #FF74C1;
}

.principle-card-gold {
  background: #FFA14E;
}

.principle-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12%;
}

.principle-card-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.principle-card-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--lh-body);
}

.principles-cta-wrap {
  text-align: center;
  margin-top: var(--space-12);
}

/* ============================================
   SOUNDING BOARD SECTION
   Pink background
   ============================================ */
.sounding-section {
  padding: var(--space-16) 0;
  background: var(--bg-primary);
  color: var(--color-black);
  overflow: visible;
}

.sounding-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  overflow: visible;
}

.sounding-content > *:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 30px;
}

.sounding-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sounding-centered > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sounding-centered .sounding-title,
.sounding-centered .sounding-body {
  text-align: center;
  max-width: 700px;
}

.sounding-centered .landing-link {
  display: inline-flex;
}

.sounding-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-6);
}

.sounding-body {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.sounding-image {
  max-width: 100%;
  border-radius: var(--radius-2xl);
}

.sounding-video {
  width: 300px;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  aspect-ratio: 9 / 16;
  transform: rotate(6deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sounding-animation {
  width: 550px;
  height: 450px;
  max-width: 100%;
  border: none;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

/* ============================================
   LEVEL UP SECTION
   ============================================ */
.levelup-section {
  padding: var(--space-16) 0;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.levelup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.levelup-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  line-height: var(--lh-heading);
  color: var(--color-black);
  margin-bottom: var(--space-6);
}

.levelup-title .accent {
  font-weight: var(--font-extrabold);
}

.levelup-body {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.levelup-accent {
  color: var(--brand-pink);
}

.levelup-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.levelup-animation {
  width: 550px;
  height: 450px;
  max-width: 100%;
  border: none;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

/* FAQ styles now in v2-base.css (shared component) */

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 70px 0;
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  font-size: var(--display-sm);
  font-weight: var(--font-semibold);
  line-height: var(--lh-heading);
  color: var(--color-black);
}

.get-started-stat {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  letter-spacing: -0.5px;
  margin: 4px 0 0 0;
}

.cta-desc {
  font-size: var(--text-lg);
  line-height: var(--lh-body);
  color: var(--text-secondary);
}

.btn-cta-main {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: 1;
  padding: 0 28px;
  height: 48px;
  border-radius: var(--radius-2xl);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE - TABLET (900px)
   ============================================ */
@media (max-width: 1200px) {
  .hero-report-card {
    width: var(--hero-card-width-tablet);
  }
}

@media (max-width: 900px) {
  .landing-hero {
    min-height: auto;
    padding-top: calc(var(--topbar-height) + var(--space-10));
    padding-bottom: var(--space-10);
  }
  .hero-layout {
    flex-direction: column;
  }
  .landing-hero-title {
    font-size: var(--text-6xl);
  }
  .products-tab-content.active {
    flex-direction: column;
  }
  .products-tab-left {
    max-width: 100%;
  }
  .products-tab-right {
    padding: var(--space-8);
  }
  .products-tab-heading {
    font-size: var(--text-5xl);
  }
  .products-tab-body {
    font-size: var(--text-xl);
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .sounding-content,
  .levelup-content,
  .trust-content {
    grid-template-columns: 1fr;
  }
  .sounding-title,
  .levelup-title,
  .cta-title,
  .faq-title,
  .principles-title,
  .trust-title {
    font-size: var(--text-5xl);
  }
  .ren-demo { height: 380px; }
  .ren-demo-comp-scene { width: 300px; margin-right: 40px; }
  .ren-demo-callout { right: -60px; bottom: -50px; width: 160px; }
  .survey-demo { height: 380px; }
  .sd-screen { padding: 28px 36px; }
  .sd-q-text { font-size: 16px; }

  .products-tabs-layout {
    flex-direction: column;
  }

  .products-tab-right-col {
    flex: 0 0 auto;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  .mobile-desktop-banner {
    display: none !important;
  }

  .landing-container {
    padding: 0 20px;
  }

  .landing-hero {
    min-height: auto;
    height: auto;
    padding: 70px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-layout {
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  .landing-hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 30px;
    order: 1;
  }

  .hero-carousel {
    width: 320px;
    height: 230px;
    border-radius: 20px;
    transform: rotate(-6deg);
  }

  .hero-carousel-caption {
    padding: 0 12px 12px 14px;
  }

  .hero-carousel-insight {
    font-size: 12px;
  }

  .hero-carousel-detail {
    font-size: 10px;
  }

  .carousel-slide-inner {
    padding: 12px;
    gap: 10px;
  }

  .carousel-stat-big {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .carousel-stat-label {
    font-size: 8px;
  }

  .landing-hero-content {
    padding: 40px 20px 10px;
    background: var(--color-white);
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .landing-hero-title {
    font-size: 44px;
    line-height: 55px;
    color: var(--color-black);
  }

  .landing-hero-desc {
    font-size: 16px;
    line-height: 25px;
    color: var(--color-black);
  }

  .landing-hero-actions {
    display: none;
  }

  .hero-free-credits {
    display: flex;
    justify-content: center;
    padding: 19px 0;
    background: var(--color-white);
  }

  .hero-free-credits .btn {
    width: 251px;
    height: 62px;
    font-size: 22px;
    font-weight: var(--font-semibold);
    border-radius: 12px;
    background: var(--color-black);
    color: white;
    letter-spacing: -0.95px;
  }

  .products-section {
    padding: 0 0 20px;
  }

  .products-section .landing-container {
    padding: 0 20px;
  }

  .pill-tabs {
    align-self: center;
  }

  .products-tabs-layout {
    flex-direction: column;
  }

  .products-tab-right-col {
    display: none;
  }

  .products-tab-left-col {
    text-align: center;
  }

  .products-tab-left-col .btn {
    align-self: center;
  }

  .products-tab-content.active {
    flex-direction: column;
    position: relative;
    height: auto;
  }

  .products-tab-left {
    max-width: 100%;
    order: 2;
  }

  .products-tab-right {
    padding: 20px 0;
    order: 1;
  }

  .products-tab-heading {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  .products-tab-body {
    font-size: 17px;
    line-height: 26px;
    text-align: center;
  }

  .products-tab-features {
    font-size: 14px;
  }

  .products-tab-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .products-tab-buttons .btn {
    width: 251px;
    height: 62px;
    font-size: 22px;
    border-radius: 12px;
  }

  .levelup-right {
    display: none;
  }

  .sounding-animation {
    display: none;
  }

  .principles-section {
    padding: 10px 20px;
  }

  .principles-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .principle-card {
    text-align: center;
    padding: 15px 24px;
  }

  .principle-card-image {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .principle-card-name {
    font-size: 22px;
  }

  .principle-card-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .sounding-section {
    padding: 30px 0;
  }

  .sounding-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .trust-title,
  .sounding-title {
    font-size: 32px;
    line-height: 40px;
  }

  .sounding-body {
    font-size: 17px;
    line-height: 26px;
  }

  .sounding-video {
    max-width: 100%;
    border-radius: 16px;
  }

  .levelup-section {
    padding: 30px 0;
  }

  .levelup-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .levelup-title {
    font-size: 32px;
    line-height: 40px;
  }

  .levelup-body {
    font-size: 17px;
    line-height: 26px;
  }

  /* FAQ responsive styles now in v2-base.css */

  .cta-section {
    padding: 40px 0;
  }

  .cta-title {
    font-size: 32px;
    line-height: 40px;
  }


  .cta-desc {
    font-size: var(--text-base);
  }

  .btn-cta-main {
    font-size: var(--text-base);
    padding: 0 24px;
    height: 44px;
  }

  .split-btn {
    flex-direction: column;
    border-radius: var(--radius-xl);
  }

  .split-btn-left,
  .split-btn-right {
    border-radius: var(--radius-xl);
    width: 100%;
  }
}

.report-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.report-overlay.hidden {
  display: none;
}

.report-overlay-content {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: 85vh;
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.report-overlay-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-overlay-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.report-overlay-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
