/* =========================================
   VirtualCrush Content Landing Page - Styles
   Mobile-First Responsive CSS
   ========================================= */

/* =========================================
   Design Tokens (from Figma)
   ========================================= */
:root {
  /* Colors */
  --color-background: #000c0c;
  --color-background-mobile: #010202;
  --color-primary: #bb46d8;
  --color-accent: #3dd1e6;
  --color-white: #ffffff;
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-grey: #666666;
  --color-card-bg: #1b0520;

  /* Typography */
  --font-poppins: 'Poppins', sans-serif;
  --font-lexend: 'Lexend Exa', sans-serif;
  --font-inter: 'Inter', sans-serif;

  /* Spacing */
  --space-450: 36px;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-full: 100px;

  /* Transitions */
  --transition-default: all 0.3s ease;
}

/* =========================================
   Reset & Base
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--color-background-mobile);
  color: var(--color-white);
  line-height: 1.5;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================
   Layout - Mobile First
   ========================================= */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 17px 12px 44px;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 398px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

/* =========================================
   Header
   ========================================= */
.header {
  width: 100%;
  padding: 2px;
  background: linear-gradient(180deg, #3DD1E6 0%, #BB46D8 83%);
  border-radius: var(--radius-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0);
  background-color: var(--color-background-mobile);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.header__logo {
  position: relative;
  width: 186px;
  height: auto;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__tagline {
  display: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.header__tagline-white {
  color: var(--color-white);
}

.header__tagline-accent {
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 20px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-default);
  border: none;
}

.btn:hover {
  background: linear-gradient(272deg, #3DD1E6 0.06%, #BB46D8 83.01%);
  transform: translateY(-2px);
}

.btn--cta {
  padding: 5px 24px;
  border-radius: var(--radius-md);
}

/* Subtitle under header (mobile only) */
.header-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 12px;
}

.header-subtitle__text {
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: var(--color-white);
}

.header-subtitle__accent {
  color: var(--color-accent);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  width: 100%;
  max-width: 398px;
  padding: 2px;
  background: linear-gradient(180deg, #3DD1E6 0%, rgba(0, 0, 0, 0.00) 70%);
  border-radius: var(--radius-sm);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 50px;
  align-items: center;
  padding: 36px 16px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  height: 46.14%;
  left: -219.8%;
  top: 0;
  width: 644.47%;
  max-width: none;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-background-mobile) 58.981%, transparent);
  border-radius: var(--radius-sm);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.hero__title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 49px;
  width: 100%;
}

.hero__title-light {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 28px;
  color: var(--color-white-70);
}

.hero__title-bold {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--color-white);
}

.hero__description {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  max-width: 326px;
}

/* =========================================
   Cards Section
   ========================================= */
.cards-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 124px;
  align-items: center;
  padding-top: 100px;
  width: 100%;
}

/* VirtualCrush Card */
.vc-card {
  position: relative;
  max-width: 362px;
  width: 100%;
  padding: 2px;
  background: linear-gradient(180deg, #3DD1E6 0%, #BB46D8 83%);
  border-radius: var(--radius-md);
}

.vc-card__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 0 32px 32px;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  z-index: 0;
}

.vc-card__inner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  background: linear-gradient(171deg, #25072C 0%, #450D51 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.vc-card:hover .vc-card__inner::after {
  opacity: 1;
}

/* Model Image Container */
.vc-card__model {
  width: 100%;
  max-width: 304px;
  margin-top: -105px;
  overflow: visible;
  filter: brightness(1);
  transition: filter 0.3s ease;
  z-index: 2;
}

.vc-card__inner:hover .vc-card__model {
  filter: brightness(1.2);
}

.vc-card__model-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.vc-card__model-heart {
  position: absolute;
  width: 100%;
  max-width: 263px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 0;
  overflow: visible;
}

.vc-card__model-glow {
  position: absolute;
  width: 100%;
  max-width: 187px;
  height: 9px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  border-radius: 159.933px;
  box-shadow: 0 0 13.353px #3dd1e6, inset 0 0 5.564px #3dd1e6;
  background: radial-gradient(143.11% 78.59% at 51.92% 68.42%, #B0E5EC 74.52%, #3DD1E6 83.17%, rgba(61, 209, 230, 0.00) 100%);
  filter: blur(2.782px);
}

.vc-card__model-img {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: auto;
  z-index: 1;
}

.vc-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  z-index: 2;
}

.vc-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.vc-card__brand-icon {
  width: 31px;
  height: 20px;
}

.vc-card__brand-name {
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: var(--color-white);
}

.vc-card__tagline {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

.vc-card__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent) 55%, transparent 56%, transparent 100%);
  background-size: 20px 100%;
  background-repeat: repeat-x;
}

.vc-card__question {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

/* Desktop specific card styles */
.vc-card--desktop .vc-card__question {
  font-size: 19px;
}

.vc-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* =========================================
   Load More Button
   ========================================= */
.load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 266px;
}

/* =========================================
   Text CTA Section
   ========================================= */
.text-cta-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  width: 100%;
  padding: 0 12px;
  overflow: hidden;
}

.text-cta__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  width: 100%;
}

.text-cta__title-container {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  line-height: 49px;
  font-size: 48px;
  text-align: center;
  width: 100%;
}

.text-cta__title-light {
  font-family: var(--font-poppins);
  font-weight: 500;
  color: var(--color-white-70);
}

.text-cta__title-bold {
  font-family: var(--font-poppins);
  font-weight: 700;
  color: var(--color-white);
}

.text-cta__description {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

.text-cta__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 266px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 368px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: var(--color-grey);
}

.footer__row {
  display: none;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.footer__rta {
  width: 38px;
  height: 13px;
}

.footer__copyright {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-grey);
  white-space: nowrap;
}

.footer__links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer__top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer__links {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-grey);
  white-space: nowrap;
}

.footer__links a {
  transition: var(--transition-default);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__logo {
  width: 183px;
  height: 16px;
}

.footer__disclaimer {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 9px;
  line-height: 1.4;
  color: var(--color-grey);
}

/* =========================================
   Desktop Styles (min-width: 1024px)
   ========================================= */
@media (min-width: 1024px) {
  body {
    background-color: var(--color-background);
  }

  .page {
    gap: 55px;
    padding: 62px 8.4vw;
    max-width: 1440px;
    margin: 0 auto;
  }

  .container {
    max-width: 1198px;
  }

  /* Header Desktop */
  .header {
    border-radius: var(--radius-md);
  }

  .header__inner {
    padding: 18px 38px;
    border-radius: var(--radius-md);
  }

  .header__logo {
    width: 320px;
    height: 31px;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .header__tagline {
    display: block;
  }

  .header-subtitle {
    display: none;
  }

  .btn {
    padding: 5px 24px;
  }

  /* Hero Desktop */
  .hero {
    max-width: 1198px;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .hero__inner {
    padding: var(--space-450) var(--space-450) 36px;
    border-radius: var(--radius-md);
    gap: 50px;
  }

  .hero__bg-image {
    height: 100%;
    left: -33.07%;
    top: 0;
    width: 178.42%;
  }

  .hero__bg-gradient {
    background: linear-gradient(to top, var(--color-background) 30%, transparent);
  }

  .hero__content {
    gap: 22px;
    align-items: center;
  }

  .hero__title-container {
    flex-direction: row;
    gap: 9px;
    justify-content: center;
  }

  .hero__title-light {
    font-size: 48px;
  }

  .hero__title-bold {
    font-size: 48px;
  }

  .hero__description {
    max-width: none;
    text-align: center;
  }

  /* Cards Section Desktop */
  .cards-section {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 0;
    width: 100%;
  }

  .vc-card {
    
  }

  .vc-card__inner {
    padding: 0 32px 32px;
  }

  .vc-card__question {
    font-size: 19px;
  }

  /* Load More Desktop */
  .load-more {
    width: 100%;
    align-items: center;
  }

  /* Text CTA Section Desktop */
  .text-cta-section {
    padding: 0;
  }

  .text-cta__title-container {
    flex-direction: row;
    gap: 9px;
    justify-content: center;
  }

  /* Footer Desktop */
  .footer {
    max-width: 1198px;
    flex-direction: column;
    align-items: flex-end;
  }

  .footer__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 100%;
  }

  .footer__left {
    flex: 1;
    gap: 10px;
  }

  .footer__rta {
    width: 50px;
    height: 17px;
  }

  .footer__logo {
    width: 205px;
    height: 18px;
  }

  .footer__links-row {
    display: none;
  }

  .footer__top-row {
    display: none;
  }
}

/* =========================================
   Utility Classes
   ========================================= */
.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;
}
