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

.section-title {
  font-size: var(--section-heading);
  line-height: var(--section-heading-lh);
}

.section-desc {
  font-size: var(--section-body);
  line-height: var(--section-body-lh);
  font-weight: var(--font-weight-light);
  margin-bottom: var(--space-4);
}

.section-desc:last-of-type {
  margin-bottom: 0;
}

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

.desktop-break {
  display: block;
}

@media (max-width: 768px) {
  .desktop-break {
    display: none;
  }
}

.levelup-left .section-desc {
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.levelup-left .section-desc strong {
  color: var(--fuchsia);
}

.strategic-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-10);
}

.strategic-animation {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-10);
}

.strategic-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.strategic-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.strategic-card-heading {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-snug);
  color: var(--white);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  min-height: 120px;
  display: flex;
  align-items: center;
}

.strategic-cards-row .strategic-card:nth-child(1) .strategic-card-heading {
  background: color-mix(in srgb, var(--coral) 90%, transparent);
}

.strategic-cards-row .strategic-card:nth-child(2) .strategic-card-heading {
  background: color-mix(in srgb, var(--pink) 80%, transparent);
}

.strategic-cards-row .strategic-card:nth-child(3) .strategic-card-heading {
  background: color-mix(in srgb, var(--amber) 90%, transparent);
  color: var(--black);
}

.strategic-card-desc {
  font-size: var(--section-body);
  line-height: var(--section-body-lh);
  font-weight: var(--font-weight-light);
  color: var(--black);
  margin: var(--space-4) 0 0;
  padding: 0 var(--space-4);
  flex: 1;
}

.strategic-card .btn-outline-pill {
  margin-top: var(--space-3);
  margin-left: var(--space-4);
  align-self: flex-start;
}

.strategic-cta-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.strategic-cta-row--centered {
  justify-content: center;
}

.btn-outline-pill--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-outline-pill--primary:hover {
  background: var(--fuchsia);
  border-color: var(--fuchsia);
  color: var(--white);
}

/* ============================================
   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(--gradient);
  display: flex;
  align-items: center;
  padding: calc(var(--topbar-height) + var(--space-12)) 0 var(--space-12);
  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-weight: var(--font-bold);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--white);
  margin-bottom: var(--space-4);
}

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

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

.landing-hero-actions .irc-input-wrapper {
  margin: 0;
  width: 100%;
}

.landing-hero-actions .irc-input-pill {
  border: 0.5px solid var(--black);
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 15px 14px 15px 34px;
}

.landing-hero-actions .irc-input-pill:focus-within {
  border: 0.5px solid var(--black);
  background: var(--white);
}

.landing-hero-actions .irc-input-icon {
  display: none;
}

.landing-hero-actions .irc-input {
  color: var(--black);
  font-weight: 500;
  caret-color: var(--black);
}

.landing-hero-actions .irc-input:not(:focus) {
  caret-color: transparent;
}

@keyframes hero-caret-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.landing-hero-actions .irc-caret {
  display: inline-block;
  width: 1.5px;
  height: 1.1em;
  background: var(--black);
  animation: hero-caret-blink 1s step-end infinite;
  flex-shrink: 0;
  margin-right: 0;
  pointer-events: none;
}

.landing-hero-actions .irc-input::placeholder {
  color: var(--gray-mid);
  font-weight: 500;
}

.landing-hero-actions .irc-send-btn {
  background: var(--black);
  color: var(--white);
  opacity: 1;
  pointer-events: auto;
  width: 36px;
  height: 36px;
}

.landing-hero-actions .irc-send-btn svg {
  width: 18px;
  height: 18px;
}

.landing-hero-actions .irc-send-btn:hover {
  background: var(--fuchsia);
  color: var(--white);
}


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

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

.pill-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.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 .section-title {
  margin-bottom: var(--space-5);
}

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

.products-tab-text .text-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-lg);
  margin-left: auto;
  display: block;
}

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


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

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

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

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

.products-tab-text .section-desc {
  max-width: 800px;
}

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

.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-text--left {
  text-align: left;
}

.trust-stats {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.trust-stat-value {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  color: var(--black);
}

.trust-stat-label {
  font-size: 11px;
  color: var(--gray);
}

.trust-live-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2xs);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--fuchsia);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.trust-live-link:hover {
  opacity: 0.8;
}

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

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

.trust-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-preview-link {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 300ms ease, transform 300ms ease;
  transform: perspective(800px) rotateY(-2deg);
}

.trust-preview-link:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

.trust-preview-frame {
  width: 480px;
  height: 560px;
  overflow: hidden;
  position: relative;
  background: var(--white);
}

.trust-preview-iframe {
  height: 1120px;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
  width: 960px;
}

.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);
  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: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-grid .card-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-medium);
  margin: 0 0 var(--space-2) 0;
  min-height: 3.25em;
}

.trust-grid .card-desc {
  color: var(--black);
  font-weight: var(--font-weight-light);
}

@media (max-width: 768px) {
  .trust-section {
    padding: 30px 0;
  }
  .trust-content--centered {
    max-width: 100%;
  }
  .trust-section .section-title {
    font-size: var(--section-heading-mobile);
    font-weight: var(--font-weight-bold);
    line-height: var(--section-heading-mobile-lh);
    margin-bottom: var(--space-2);
    width: 100%;
  }
  .trust-section .section-title strong {
    font-weight: inherit;
  }
  .trust-text .section-desc {
    font-size: 14px;
    line-height: 1.5;
    display: inline;
  }
  .trust-text .section-desc + .section-desc::before {
    content: " ";
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding-top: 20px;
  }
  .trust-grid-item {
    padding: var(--space-4);
  }
  .trust-grid .card-title {
    font-size: 18px;
    margin-bottom: var(--space-1, 0.25rem);
    min-height: unset;
  }
  .trust-grid .card-title br {
    display: none;
  }
  .trust-grid .card-desc {
    font-size: 14px;
    line-height: 1.5;
    font-weight: var(--font-weight-light);
  }
}

/* ============================================
   SOUNDING BOARD SECTION
   Pink background
   ============================================ */
.sounding-section {
  padding: var(--space-16) 0;
  background: var(--white);
  color: var(--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-content .section-desc {
  margin-bottom: var(--space-8);
}

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

/* ============================================
   LEVEL UP SECTION
   ============================================ */
.levelup-section {
  padding: var(--space-16) 0;
  background: var(--white);
}

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


.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-lg);
}

.levelup-animation--wide {
  width: 860px;
  height: 540px;
  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-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.start-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
  text-align: left;
}

.start-path-card {
  border: 1px solid var(--gray-light, #E5E7EB);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.start-path-card .section-desc {
  margin-bottom: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.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;
}

/* ============================================
   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-text .section-title {
    font-size: var(--text-5xl);
  }
  .sounding-content,
  .levelup-content,
  .trust-content {
    grid-template-columns: 1fr;
  }
  .trust-preview {
    display: none;
  }
  .trust-text--left {
    text-align: center;
  }
  .sounding-section .section-title,
  .levelup-section .section-title,
  .cta-section .section-title,
  .faq-title,
  .trust-section .section-title {
    font-size: var(--section-heading-mobile);
    line-height: var(--section-heading-mobile-lh);
  }

  .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-content {
    padding: 0;
    background: var(--white);
    order: 2;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .landing-hero-title {
    order: 1;
    font-size: 36px;
    line-height: 42px;
    color: var(--black);
    margin-bottom: 6px;
    padding: 20px 20px 0;
  }

  .landing-hero-desc {
    order: 2;
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
    opacity: 1;
    margin-bottom: 0;
    padding: 0 20px 12px;
  }

  .landing-hero-actions {
    order: 3;
    max-width: 100%;
    padding: 20px 20px 16px;
  }

  .landing-hero-actions .irc-input-pill {
    border: 0.5px solid var(--black);
    background: var(--white);
    padding: 10px 12px 10px 14px;
    font-size: 14px;
    border-radius: 12px;
    height: 48px;
    box-sizing: border-box;
    gap: 0;
  }
  .landing-hero-actions .irc-caret {
    margin-right: var(--space-1);
  }

  .landing-hero-actions .irc-input-pill:focus-within {
    border-color: var(--fuchsia);
    background: var(--white);
  }

  .landing-hero-actions .irc-input-icon {
    color: var(--fuchsia);
  }

  .landing-hero-actions .irc-input {
    color: var(--black);
    font-size: 14px;
    padding-left: 0;
  }

  .landing-hero-actions .irc-input::placeholder {
    color: var(--gray-mid);
  }

  .landing-hero-actions .irc-send-btn {
    width: 30px;
    height: 30px;
  }
  .landing-hero-actions .irc-send-btn svg {
    width: 14px;
    height: 14px;
  }


  .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-text .section-title {
    font-size: var(--section-heading-mobile);
    line-height: var(--section-heading-mobile-lh);
    text-align: center;
  }

  .products-tab-text .section-desc {
    font-size: 14px;
    line-height: 1.5;
    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;
  }


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

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

  .trust-section .section-title {
    font-size: var(--section-heading-mobile);
    line-height: var(--section-heading-mobile-lh);
  }
  .sounding-section .section-title {
    font-size: var(--section-heading-mobile);
    line-height: var(--section-heading-mobile-lh);
  }

  .sounding-content .section-desc {
    font-size: 14px;
    line-height: 1.5;
  }

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

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

  .levelup-section .section-title {
    font-size: var(--section-heading-mobile);
    line-height: var(--section-heading-mobile-lh);
  }

  .levelup-left .section-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .strategic-animation {
    display: none;
  }

  .strategic-cards-row {
    grid-template-columns: 1fr;
  }

  .strategic-cta-row--centered {
    flex-direction: column;
    align-items: center;
  }

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

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

  .start-paths {
    grid-template-columns: 1fr;
  }

  .cta-section .section-title {
    font-size: var(--section-heading-mobile);
    line-height: var(--section-heading-mobile-lh);
  }

  .cta-section .section-desc {
    font-size: 14px;
    line-height: 1.5;
  }


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

  .split-btn-left,
  .split-btn-right {
    border-radius: var(--radius-lg);
    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: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl-heavy);
}

.report-overlay-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  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;
}
