/* ===== CSS Custom Properties (Design Tokens from Figma) ===== */
:root {
  --color-purple: #692CE0;
  --color-cyan: #24D2E5;
  --color-pink-cta: #FB4D94;
  --color-white: #FFFFFF;
  --color-navy: #191862;
  --color-lavender: #D2AFFF;
  --color-yellow-green: #CAF61B;
  --color-light-cyan: #97F0FF;
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--color-white);
}

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

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

/* ===== Hero Section ===== */
.hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 894px;
}

.hero-text-zone {
  width: 50%;
  background-color: var(--color-purple);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 48px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-header {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.logo-link {
  display: inline-block;
}

.logo {
  width: 308px;
  height: 55px;
  object-fit: contain;
}

.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 188px;
  line-height: 150px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-lavender);
  text-align: left;
}

.hero-cta-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
}

.btn-create-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background-color: var(--color-pink-cta);
  border-radius: 9999px;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 25px;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.btn-create-account:hover {
  opacity: 0.9;
}

.model-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.model-badge-img {
  width: 201px;
  height: 24px;
  object-fit: contain;
}

.hero-visual-zone {
  width: 50%;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.hero-model-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Video Section ===== */
.video-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cyan);
  padding: 120px 179px;
  gap: 168px;
  width: 100%;
}

.video-bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 760px;
  flex-shrink: 0;
}

.video-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.video-username {
  display: flex;
  align-items: center;
  gap: 10px;
}

.username-img {
  width: 195px;
  height: 21px;
  object-fit: contain;
}

.video-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.video-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--color-yellow-green);
  text-align: center;
  letter-spacing: 0;
}

.over-video-link {
  display: block;
  width: 760px;
  height: 427px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.over-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.over-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.lock-icon {
  width: 36px;
  height: 44px;
  flex-shrink: 0;
}

.unlock-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: 0;
}

.btn-unlock-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  border: 2px solid var(--color-yellow-green);
  border-radius: 9999px;
  background: transparent;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn-unlock-video:hover {
  background-color: var(--color-yellow-green);
  color: var(--color-navy);
}

.taste-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 643px;
}

.taste-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.taste-text {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 120px;
  line-height: 105px;
  text-transform: uppercase;
  color: var(--color-light-cyan);
  text-align: center;
  letter-spacing: 0;
}

.taste-logo {
  width: 374px;
  height: 65px;
  object-fit: contain;
}

/* ===== Footer ===== */
.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  padding: 24px 20px;
  gap: 20px;
  width: 100%;
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  padding-left: 30px;
}

.rta-link {
  display: inline-block;
}

.rta-icon {
  width: 50px;
  height: 17px;
  object-fit: contain;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-navy);
  letter-spacing: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid #E0E0E0;
  width: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-navy);
  text-decoration: none;
  padding: 2px 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* ===== Responsive: Large Desktop ===== */
@media (max-width: 1600px) {
  .video-section {
    padding: 100px 120px;
    gap: 120px;
  }

  .taste-section {
    width: 540px;
  }

  .taste-text {
    font-size: 100px;
    line-height: 90px;
  }
}

@media (max-width: 1280px) {
  .video-section {
    padding: 80px 60px;
    gap: 80px;
  }

  .hero-title {
    font-size: 140px;
    line-height: 120px;
  }

  .taste-section {
    width: 420px;
    min-width: 350px;
  }

  .taste-text {
    font-size: 80px;
    line-height: 72px;
  }

  .video-bloc {
    width: 600px;
  }

  .over-video-link {
    width: 100%;
    height: auto;
    aspect-ratio: 760 / 427;
  }
}

@media (max-width: 1100px) {
  .video-section {
    padding: 80px 40px;
    gap: 60px;
  }

  .hero-title {
    font-size: 110px;
    line-height: 96px;
  }

  .taste-section {
    width: 380px;
    min-width: 320px;
  }

  .taste-text {
    font-size: 72px;
    line-height: 66px;
  }

  .video-bloc {
    width: 500px;
  }

  .unlock-text {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-visual-zone {
    width: 100%;
    height: 309px;
  }

  .hero-text-zone {
    width: 100%;
    padding: 29px 28px;
    min-height: 434px;
  }

  .logo {
    width: 200px;
    height: auto;
  }

  .hero-title {
    font-size: 80px;
    line-height: 68px;
  }

  .btn-create-account {
    font-size: 18px;
    padding: 16px 24px;
  }

  .model-badge-img {
    width: 150px;
    height: auto;
  }

  .hero-cta-container {
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .video-section {
    flex-direction: column;
    padding: 60px 15px;
    gap: 60px;
    align-items: center;
  }

  .video-bloc {
    width: 100%;
    max-width: 400px;
  }

  .over-video-link {
    width: 100%;
    height: auto;
    aspect-ratio: 760 / 427;
  }

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

  .unlock-text {
    font-size: 18px;
    line-height: 24px;
    white-space: nowrap;
  }

  .lock-icon {
    width: 24px;
    height: 30px;
  }

  .taste-section {
    width: 100%;
    max-width: 400px;
    min-width: auto;
    padding-top: 0;
  }

  .taste-text {
    font-size: 60px;
    line-height: 54px;
  }

  .taste-logo {
    width: 250px;
    height: auto;
  }

  .footer {
    padding: 10px 12px 20px;
    gap: 10px;
    align-items: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 10px;
    text-align: center;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .hero-text-zone {
    padding: 29px 28px;
  }

  .hero-title {
    font-size: 64px;
    line-height: 56px;
  }

  .btn-create-account {
    font-size: 16px;
    padding: 14px 20px;
  }

  .model-badge-img {
    width: 120px;
    height: auto;
  }

  .video-title {
    font-size: 24px;
    line-height: 24px;
  }

  .unlock-text {
    font-size: 14px;
    line-height: 18px;
  }

  .lock-icon {
    width: 18px;
    height: 22px;
  }

  .taste-text {
    font-size: 48px;
    line-height: 44px;
  }

  .taste-logo {
    width: 200px;
    height: auto;
  }

  .btn-unlock-video {
    font-size: 16px;
    padding: 16px 24px;
  }
}