@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap");

:root {
  --blue-dark: #0c1b54;
  --blue: #12328f;
  --lime: #9ff43c;
  --lime-strong: #8be22c;
  --mint: #eafff4;
  --sky: #eaf4ff;
  --text: #0b142d;
  --muted: #5a6480;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(12, 27, 84, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #f6f9fe;
  color: var(--text);
  line-height: 1.6;
}

.hero-sec {
  position: relative;
  background-color: #1a237e;
  padding: 60px 0 0;
  background-image: url(../images/background-main.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section-main {
  padding: 0px 0px;
}


/* .hero-sec::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   
    z-index: 1;
    opacity: 0.2;
} */

section.how {
  overflow: hidden;
}

.container {
  max-width: 1640px;
  margin: 0 auto;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mob-platform {
  padding: 16px 18px;
  background-color: #ffffff1f;
  border-radius: 15px;
  box-shadow: 0px 4px 34.1px 0px #00000040;
  display: flex;
  gap: 15px;
  flex-direction: row-reverse;
  margin-bottom: 33px;
}

.mob-platform a {
  margin-bottom: 0;
  line-height: 1;
}

.hero-wrapper>span {
  font-size: 33px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-wrapper>h1 {
  font-size: 70px;
  line-height: 1;
  color: #ccff00;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.player-img {
  position: absolute;
  bottom: 0;
  left: -200px;
}

.moving-ball {
  position: absolute;
  right: 120px;
  bottom: 368px;
  mix-blend-mode: color-dodge;
}

img.green-vector {
  position: absolute;
  right: 0;
  bottom: -200px;
}

header.header {
  position: relative;
  top: 0;
  margin: 16px 0;
  width: 100%;
}

body.hero-layout header.header {
  position: absolute;
}

nav.hero__nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__links a .short-text {
  display: none;
}

.contact-page .header,
.policy-page .header,
.terms-page .header {
  position: relative;
  margin: 0;
  padding: 16px 0;
  background: var(--blue-dark);
}

.contact-page nav.hero__nav,
.policy-page nav.hero__nav,
.terms-page nav.hero__nav {
  padding: 0px 0px;
}

.policy-page,
.terms-page {
  background: #f6f9fe;
}

.policy {
  max-width: 1150px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.policy-hero {
  background: linear-gradient(135deg, #0c1b54, #12328f);
  color: #fff;
  padding: 38px 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(159, 244, 60, 0.14),
      transparent 35%),
    radial-gradient(circle at 80% 40%,
      rgba(159, 244, 60, 0.12),
      transparent 30%);
  pointer-events: none;
}

.policy-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.policy-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
  color: #8be22c;
}

.policy-hero__lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
}

.policy-hero__meta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.policy-section {
  margin-top: 28px;
  background: #fff;
  border: 1px solid #e2e9f4;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.policy-section__header h2 {
  margin: 0;
  font-size: 20px;
}

.policy-section__header p {
  margin: 4px 0 12px;
  color: var(--muted);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.policy-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.policy-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.policy-card {
  background: #f9fbff;
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(12, 27, 84, 0.08);
}

.policy-card h3 {
  margin: 0 0 8px;
  color: #0c1b54;
}

.policy-card h4 {
  margin: 10px 0 6px;
  color: #0f255f;
}

.policy-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3c455d;
}

.policy-card li {
  margin: 4px 0;
}

.policy-card p {
  margin: 4px 0;
  color: #3c455d;
}

.muted {
  color: var(--muted);
}

.support-hero {
  max-width: 1150px;
  margin: 30px auto 10px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.support-hero__text {
  background: linear-gradient(135deg, #0c1b54, #12328f);
  color: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.support-hero__text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(159, 244, 60, 0.14),
      transparent 35%),
    radial-gradient(circle at 80% 60%,
      rgba(159, 244, 60, 0.12),
      transparent 30%);
  pointer-events: none;
}

.support-hero__text .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.support-hero__text h1 {
  margin: 6px 0 10px;
  font-size: clamp(26px, 4vw, 34px);
  color: #8be22c;
  text-align: center;
}

.support-hero__text .lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.support-badges {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.support-hero__card {
  background: #fff;
  border: 1px solid #e2e9f4;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.support-hero__card h3 {
  margin: 0 0 10px;
  color: #0c1b54;
}

.contact__details.compact {
  gap: 10px;
}

.contact-page .contact {
  max-width: 1150px;
  margin: 10px auto 60px;
  padding: 0 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e9f4;
  box-shadow: var(--shadow);
}

.contact-page .contact__info {
  background: #f9fbff;
  border: 1px solid #dbe7f5;
}

.contact-page .contact__form-card {
  background: #fefefe;
}

.contact__status .client-error {
  color: #e74c3c;
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .support-hero {
    margin-top: 20px;
    padding: 0 16px;
  }

  .contact-page .contact {
    margin: 10px 16px 50px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .policy-page nav.hero__nav {
    padding: 0 18px;
  }

  .policy {
    margin: 20px auto 60px;
  }

  .policy-section {
    padding: 16px;
  }
}

.nav__links {
  display: flex;
  gap: 50px;
}

.nav__links a {
  color: #fff;
  position: relative;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 30px;
}

.nav__links a.active,
.nav__links a:hover {
  border-bottom: 3px solid #8be22c;
}

.nav__links .inline-link {
  margin: 0;
  padding: 0;
}

.nav__links .link-button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.nav__links .link-button:focus {
  outline: none;
}

.get-start-btn {
  background-color: #ccff00;
  padding: 14px 17px;
  border-radius: 6px;
  color: #1a237e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  cursor: pointer;
  border: 0;
}

@media (max-width: 900px) {
  .nav__links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.form-grid .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.practice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.practice-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.helper {
  font-size: 0.85rem;
  color: var(--muted);
}

.dashboard-shell {
  background: #f6f9fe;
  min-height: calc(100vh - 200px);
}

.dashboard-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.dashboard-content>* {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.dashboard-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard-panel__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.dashboard-profile-card {
  text-align: center;
  padding: 24px;
  border: 1px solid #e0e6f4;
  border-radius: 16px;
}

.dashboard-profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9ff43c;
  margin: 1rem auto;
  display: block;
}

.dashboard-thumbnails {
  padding: 20px;
  border: 1px solid #e0e6f4;
  border-radius: 16px;
}

.dashboard-thumbnails h3 {
  margin-bottom: 12px;
}

.thumbnails-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: linear-gradient(180deg, #0a1024 0%, #11182c 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.plan-card h3 {
  margin-bottom: 0;
  letter-spacing: 0.25em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #8be22c;
}

.plan-card .plan-price {
  font-size: 3rem;
  font-weight: 700;
  margin: 10px 0;
}

.plan-card .plan-price span {
  font-size: 1rem;
  color: #cfd7ef;
  margin-left: 0.35rem;
  font-weight: 500;
}

.plan-card .plan-features {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #cfd7ef;
}

.plan-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.plan-card .plan-features li::before {
  content: "•";
  color: #8be22c;
  font-size: 1.2rem;
}

.plan-card button {
  margin-top: 1.5rem;
  border: none;
  background: linear-gradient(135deg, #9ff43c, #1cd4ff);
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
}

.support-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.support-section {
  padding: 80px 0;
}

.support-card,
.support-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.support-card h2 {
  margin-bottom: 12px;
}

.support-card p {
  color: var(--muted);
}

.support-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  line-height: 1.6;
}

.support-card ul li {
  margin-bottom: 0.35rem;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dbe7f5;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.support-form button {
  border: none;
  background: #0c1b54;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-page.full-height {
  min-height: calc(100vh - 200px);
}

.auth-card {
  width: 100%;
  max-width: 540px;
}

.auth-card.auth-card--wide {
  max-width: 900px;
}

.auth-card__inner {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.footer {
  position: relative;
  background: var(--blue-dark);
  color: #d8e3ff;
  padding: 70px clamp(20px, 6vw, 80px) 40px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: radial-gradient(circle at 10% 70%,
      rgba(255, 255, 255, 0.1),
      transparent 40%),
    radial-gradient(circle at 50% 60%,
      rgba(255, 255, 255, 0.15),
      transparent 45%),
    radial-gradient(circle at 90% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 50%);
  transform: skewY(-2deg);
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer__brand p {
  margin-top: 8px;
  color: #d8e3ff;
  font-size: 16px;
}

.footer__contact {
  display: grid;
  gap: 10px;
}

.contact-block .label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-block a {
  color: #fff;
  font-weight: 700;
}

.footer__stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__stores img {
  height: 46px;
  width: auto;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer__navrow {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
}

.footer__navrow a {
  color: #d8e3ff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ff43c;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.8);
}

a.brand {
  margin-bottom: 0;
  line-height: 1;
}

@media screen and (max-width: 1024px) {

  .contact-page nav.hero__nav,
  .policy-page nav.hero__nav,
  .terms-page nav.hero__nav {
    padding: 0px 20px !important;
  }

  nav.hero__nav {
    padding: 0px 20px;
  }

  .nav__links {
    display: flex;
    gap: 20px;
  }

  .player-img {
    position: absolute;
    bottom: 0;
    left: -100px;
    max-width: 400px;
  }

  img.green-vector {
    display: none;
  }

  .hero-wrapper>h1 {
    font-size: 50px;
  }

  body.hero-layout .hero-sec {
    padding: 90px 0 0;
    /* min-height: 600px; */
  }

  .hero-wrapper>span {
    font-size: 22px;
  }

  .mob-platform+img {
    max-width: 600px;
  }

}

@media screen and (max-width: 767px) {
  .player-img {
    display: none;
  }

  .mob-platform+img {
    width: 100%;
  }

  .nav__links a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 19px;
  }

  .nav__links a .full-text {
    display: none;
  }

  .nav__links a .short-text {
    display: inline;
  }

  a.brand img {
    margin-bottom: 0;
    line-height: 1;
    width: 120px;
  }

  .container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .moving-ball {
    display: none;
  }
}

@media screen and (max-width: 575px) {

  .mob-platform a img {
    width: 100%;
    height: 40px;
  }

  .nav__links {
    display: flex;
    gap: 6px;
  }

  .nav__links a {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 19px;
  }

  a.brand img {
    width: 100px;
  }
}
