/* ============ VARIABLES ============ */
:root {
  --font-family-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --color-text-main: #1c1c1e;
  --color-text-grey: #6e6e73;
  --color-text-light: #fff;
  --color-accent: #fe2c55;
  --color-accent-dark: #b6002a;
  --color-link-hover: #ff4a4a;
  --color-bg-main: #fff;
  --color-bg-muted: #f3f4f6;
  --color-banner: #b2b2b2;
  --color-border: #eee;
  --color-shadow: 0 2px 20px 0 rgba(0,0,0,0.12);
  --color-shadow-card: 0 2px 8px rgba(0,0,0,0.1);

  --color-btn-bg: #ff2f51;
  --color-btn-bg-hover: #b6002a;
  --color-btn-text: #fff;

  --font-input: 17px;
  --font-input-mobile: 15px;
}

/* ============ FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============ RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============ TYPOGRAPHY ============ */
body {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
}

h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.25px;
  line-height: 1.2;
  margin-bottom: 0.4em;
}

p {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
}

/* --- LINKS --- */
a {
  color: var(--color-accent);
  transition: color 0.2s;
}

/* --- IMAGES --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- BUTTONS AND INPUTS BASE --- */
button {
  font: inherit;
  cursor: pointer;
}
input, button {
  border: none;
  outline: none;
}
input {
  font-size: var(--font-input);
}

/* --- MOBILE ADAPTIVE HEADINGS --- */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2, h3 {
    font-size: 22px;
  }
  p {
    font-size: 16px;
  }
}

/* ============ BUTTONS (GLOBAL) ============ */
.btn,
.cta__btn,
.waitlist-form button {
  display: inline-block;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  margin: 0 auto;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn:hover,
.cta__btn:hover,
.waitlist-form button:hover {
  background: var(--color-btn-bg-hover);
  color: var(--color-text-light);
}

/* ============ CONTAINER ============ */
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
@media (min-width: 576px)   { .container { max-width: 540px; } }
@media (min-width: 768px)   { .container { max-width: 720px; } }
@media (min-width: 992px)   { .container { max-width: 960px; } }
@media (min-width: 1200px)  { .container { max-width: 1140px; } }
@media (min-width: 1400px)  { .container { max-width: 1320px; } }
@media (min-width: 1800px)  { .container { max-width: 1700px; } }

/* ============ HEADER & NAVBAR ============ */
.bg-white {
  background-color: var(--color-bg-main);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  position: relative;
}
.navbar__logo-block img {
  height: 35px;
  display: block;
}
.navbar__support {
  display: flex;
  align-items: center;
}

/* --- SUPPORT TOOLTIP--- */
.support-tooltip {
  position: relative;
  display: inline-block;
}
.support-tooltip__trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.support-tooltip__trigger img {
  width: 40px;
  height: 40px;
}
.support-tooltip__content {
  position: absolute;
  top: 0px;
  right: 50px;
  min-width: unset;
  background-color: #000;
  color: #fff;
  padding: 11px 32px;
  border-radius: 6px;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
  white-space: nowrap;
}
.support-tooltip:hover .support-tooltip__content,
.support-tooltip__trigger:focus + .support-tooltip__content {
  opacity: 1;
  visibility: visible;
}
.support-tooltip__text {
  margin-bottom: 0;
  font-size: 14px;
}
.support-tooltip__link {
  display: inline;
  font-size: 14px;
  word-break: break-all;
  color: var(--color-link-hover);
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .navbar__logo-block img {
    height: 22px;
  }
  .support-tooltip__trigger img {
    height: 22px;
    width: 22px;
  }
  .support-tooltip__content {
    right: 30px;
  }
}

/* ============ ANNOUNCEMENT ============ */
.announcement-banner {
  display: flex; 
  gap: 32px;
  width: fit-content;
  margin: 48px auto 32px;
  padding: 24px 32px;
  background: var(--color-banner);
  color: var(--color-text-light);
  border-radius: 10px;
  text-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 22px;
}

.announcement-banner__divider {
  height: 40px;
  width: 1px;
  background-color: #ccc;
}

@media (max-width: 768px) {
  .announcement-banner {
    margin: 32px auto;
    padding: 16px 32px;
    gap: 12px;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .announcement-banner {
    padding: 2px 24px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .announcement-banner {
    padding: 2px 12px;
    font-size: 12px;
  }
}

/* ============ PAGE HEADING ============ */
.heading {
  text-align: center;
  padding: 0px 0px 32px;
  margin: 0 auto;
}
.heading h1 {
  margin-bottom: 24px;
}
.heading p {
  font-size: 32px;
  color: var(--color-text-grey);
}

@media (max-width: 992px) {
  .heading h1 {
    font-size: 45px;
  }
  .heading p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .heading h1 {
    font-size: 40px;
  }
  .heading p {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .heading h1 {
    font-size: 35px;
  }
  .heading p {
    font-size: 16px;
  }
}

/* ============ VIDEO ============ */
.main__video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.main__video-aspect {
  position: relative;
  width: 100%;
  max-width: 992px;
  background: #000;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: var(--color-shadow);
}
.main__video-iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  min-height: 480px;
  border: 0;
  background: #000;
}
@media (max-width: 992px) {
  .main__video-aspect {
    max-width: 100vw;
    border-radius: 0;
    
  }
  .main__video-iframe {
    min-height: 240px;
    border-radius: 0;
  }
}

/* ============ FORM ============ */
.main__form {
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  background: var(--color-bg-muted);
  border-radius: 0 0 12px 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 20px 0 rgba(0,0,0,0.04);
  max-width: 992px;
}
.waitlist-form__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
}

.waitlist-form__inputs {
  display: flex;
  flex: 1 1 0;
  gap: 12px;
}

.waitlist-form input {
  flex: 1 1 0;
  min-width: 0;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  padding: 12px;
  font-size: var(--font-input);
  background-color: #fff;
}

.waitlist-form button {
  flex-shrink: 0;
  line-height: 48px;
  height: 48px;
  padding: 0 32px;
  vertical-align: middle;
  text-align: center;
  border-radius: 8px;
  background: var(--color-btn-bg); 
  color: #fff;
  font-weight: 700;
  font-size: var(--font-input);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.waitlist-form__title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .waitlist-form__row {
    flex-direction: column;
    align-items: stretch;
  }
  .waitlist-form button {
    width: 100%;
  }
  .main__form, .waitlist-form {
    padding: 16px;
  }
  .waitlist-form input {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .waitlist-form__row {
    flex-direction: column;
    align-items: stretch;
  }
  .main__form, .waitlist-form {
    padding: 16px;
  }
}
@media (max-width: 576px) {
  .waitlist-form__title {
    font-size: 20px;
  }
  .waitlist-form__row {
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
  }
  .waitlist-form__inputs {
    flex-direction: column;
    gap: 5px;
  }
  .waitlist-form input {
    width: 100%;
  }
}

/* ============ BRANDS ============ */
.brands__container {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.brands__title {
  color: #666;
  margin: 20px 0px 10px;
  font-size: 16px;
  font-weight: 500;
}

.brands__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brands__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brands__image {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .brands__logos {
    gap: 20px;
  }
  .brands__image {
    height: 30px;
    width: auto;
  }
  .brands__title {
    margin-top: 2px;
  }
}

@media (max-width: 576px) {
  .brands__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 12px;
  }

  .brands__logo {
    justify-content: center;
  }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 20px 0 20px;
  background: var(--color-bg-main);
  margin-bottom: 60px;
}
.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.testimonials__icon {
  margin-bottom: 16px;
}
.testimonials__icon img {
  width: 100px;
  height: 100px;
}
.testimonials__title-group {
  text-align: center;
  line-height: 1.3;
}
.testimonials__title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 700;
}
.testimonials__subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text-grey);
  width: 60%;
  margin: 0 auto;
}
.testimonials__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonials__wrapper {
  display: flex;
  transition: transform 0.4s cubic-bezier(.7, 0, .3, 1);
  will-change: transform;
}
.testimonials__slide {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  column-count: 3;
  column-gap: 16px;
  padding: 0 16px;
}

.testimonials__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.testimonials__img {
  display: block;
  width: 100%;
  height: auto;
}
.testimonials__wrapper,
.testimonials__slide,
.testimonials__item,
.testimonials__slider {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.testimonials__pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}
.testimonials__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #d3d3d3;
  cursor: pointer;
  transition: background-color 0.3s;
}
.testimonials__dot_active {
  background-color: red;
}

@media (max-width: 992px) {
  .testimonials__title {
    font-size: 35px;
  }
  .testimonials__subtitle {
    width: 100%;
  }
  .testimonials__slide {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .testimonials__slide {
    column-count: 1;
  }
  .testimonials__icon img {
    width: 60px;
    height: 60px;
  }
  .testimonials {
    padding: 20px 0 40px;
  }
  .testimonials__slide {
    padding: 0px;
  }
  .testimonials__title {
    font-size: 32px;
  }
  .testimonials__subtitle {
    font-size: 18px;
    line-height: 1.3;
  }
}

/* ============ CTA ============ */
.cta__container {
  background: var(--color-bg-muted);
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding: 88px 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 6px;
}
.cta__icon {
  position: absolute;
  top: -70px;
  width: 120px;
  height: 120px;
  
}
.cta__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

@media (max-width: 992px) {
  .cta__container {
    width: 100%;
    padding-top: 60px;
  }
  .cta__title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .cta__container {
    padding: 24px 16px 16px;
  }
  .cta__title {
    font-size: 24px;
    padding-top: 20px;
  }
  .cta__icon {
    top: -30px;
    width: 60px;
    height: 60px;
  }
  .cta__btn {
    font-size: 16px;
  }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-bg-main);
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 48px;
  font-size: 16px;
  color: var(--color-text-grey);
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__brand {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  margin-bottom: -2px;
  height: 20px;
  display: block;
}
.footer__year {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__link {
  color: var(--color-text-grey);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer__link:hover {
  color: var(--color-link-hover);
}
@media (max-width: 768px) {
  .footer__container {
    gap: 10px;
  }
  .footer__logo {
    height: 14px;
    display: block;
  }
  .footer__year {
    font-size: 10px;
    display: block;
  }
  .footer__links {
    gap: 20px;
    margin-left: 0;
  }
  .footer__link {
    font-size: 10px;
  }
}

/* ============ EMAIL VALIDATION ============ */
.waitlist-form__inputs {
  position: relative;
}

.waitlist-form__input-wrap {
  position: relative;
  width: 100%;
  display: flex;
}

.field-error {
  color: #fe2c55;
  font-size: 14px;
  margin-top: 4px;
  display: none;
  position: absolute;
  left: 8px;
  bottom: -22px;
  line-height: 1.3;
}

input.invalid {
  border-color: #fe2c55;
}

.email-suggestion {
  position: absolute;
  left: 8px;
  bottom: -22px;
  font-size: 14px;
  color: #fe2c55;
  padding: 2px 4px;
  border-radius: 4px;
  white-space: nowrap;
  display: none;
  z-index: 10;
  line-height: 1.3;
}

.email-suggestion a {
  color: #fe2c55;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .field-error {
    background-color: #fff;
    padding: 2px 4px;
    border:  1px solid #fe2c55;
    border-radius: 8px;
    left: 8px;
    bottom: 34px;
    font-size: 12px;
  }
  .email-suggestion {
    background-color: #fff;
    padding: 2px 4px;
    border:  1px solid #fe2c55;
    border-radius: 8px;
    left: 8px;
    bottom: 34px;
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .email-suggestion {
    white-space: normal;
  }
}
