  :root {
    --jana-blue: #005aa9;
    --jana-blue-dark: #003d79;
    --jana-blue-deep: #061b36;
    --jana-blue-soft: #eaf4ff;
    --jana-pink: #c01874;
    --jana-pink-dark: #97105c;
    --jana-gold: #f5a51b;
    --ink: #152033;
    --muted: #68758d;
    --line: #dfe8f3;
    --cream: #fbf7ef;
    --white: #ffffff;
    --shadow: 0 18px 44px rgba(0, 43, 91, 0.12);
    --radius: 8px;
    --container: 1240px;
    --font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.55;
  }

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

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

  button,
  input,
  select {
    font: inherit;
  }

  .container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
  }

  .section {
    padding: 72px 0;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    color: var(--jana-pink);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .eyebrow::before {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--jana-gold);
    content: "";
  }

  .button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 24px;
    background: var(--jana-pink);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }

  .button:hover,
  .button:focus-visible {
    background: var(--jana-pink-dark);
    box-shadow: 0 14px 28px rgba(192, 24, 116, 0.22);
    transform: translateY(-1px);
    outline: none;
  }

  .button--dark {
    background: var(--jana-blue-deep);
  }
  .about-image-left{position: relative;}

  .button--dark:hover,
  .button--dark:focus-visible {
    background: var(--jana-blue-dark);
    box-shadow: 0 14px 28px rgba(0, 61, 121, 0.24);
  }

  .button--light {
    background: var(--white);
    color: var(--jana-blue-dark);
    border-color: var(--line);
  }

  .button--light:hover,
  .button--light:focus-visible {
    background: var(--jana-blue-soft);
    color: var(--jana-blue-dark);
    box-shadow: 0 12px 24px rgba(0, 61, 121, 0.12);
  }

  .button--modal {
    border: 0;
  }

  .section-title {
    margin: 0;
    color: var(--jana-blue-deep);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .section-copy {
    max-width: 640px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1rem;
  }

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(0, 90, 169, 0.12);
    background: rgba(251, 247, 239, 0.95);
    backdrop-filter: blur(14px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto auto;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 168px;
    color: var(--jana-blue-deep);
    font-size: 1.18rem;
    font-weight: 900;
  }

  .brand-logo {
    width: clamp(190px, 22vw, 280px);
    height: auto;
    object-fit: contain;
  }

  .footer .brand-logo {
    width: clamp(180px, 20vw, 240px);
  }

  .header-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  .notification {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--jana-blue);
    font-weight: 900;
  }

  /* Header Slider */
  .top-slider {
    position: relative;
    overflow: hidden;
    background: #220018;
  }

  .slider-track {
    display: flex;
    transition: transform 500ms ease;
  }

  .slider-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: clamp(360px, 45vw, 580px);
    background: #220018;
  }

  .slider-slide img {
    width: 100%;
    height: clamp(360px, 45vw, 580px);
    object-fit: cover;
    object-position: center;

  }

  .slider-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(192, 24, 116, 0.84);
    color: var(--white);
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 900;
    transform: translateY(-50%);
    transition: background 180ms ease, transform 180ms ease;
  }

  .slider-control:hover,
  .slider-control:focus-visible {
    background: var(--jana-pink);
    transform: translateY(-50%) scale(1.04);
    outline: none;
  }

  .slider-control--prev {
    left: max(16px, calc((100vw - var(--container)) / 2 + 16px));
  }

  .slider-control--next {
    right: max(16px, calc((100vw - var(--container)) / 2 + 16px));
  }

  .slider-dots {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    padding: 0;
  }

  .slider-dot.is-active {
    width: 28px;
    border-radius: 999px;
    border-color: var(--jana-pink);
    background: var(--jana-pink);
  }

  /* Hero */
  .hero {
    padding: 58px 0 66px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.95fr);
    gap: 48px;
    align-items: center;
  }

  .hero h1 {
    margin: 0;
    color: var(--jana-blue-deep);
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    line-height: 1.1;
    letter-spacing: 0;
  }

  .hero h1 span { 
    color: var(--jana-pink);
  }

  .hero-copy {
    max-width: 650px;
    margin: 26px 0 0;
    color: #7b879d;
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 700;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
  }

  .merch-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(6, 27, 54, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .merch-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .merch-modal__dialog {
    width: min(100%, 980px);
    border-radius: 28px;
    padding: 28px;
    background: var(--white);
    box-shadow: 0 26px 60px rgba(6, 27, 54, 0.22);
  }

  .merch-modal__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
  }

  .merch-modal__title {
    margin: 0;
    color: var(--jana-blue-deep);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
  }

  .merch-modal__copy {
    margin: 8px 0 0;
    color: var(--muted);
  }

  .merch-modal__close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--jana-blue-deep);
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
  }

  .merch-modal__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .feature-modal__dialog {
    width: min(100%, 1160px);
    height: 500px;
    overflow-y: scroll;
  }

  .feature-modal__product {
    margin: 8px 0 0;
    color: var(--jana-blue-dark);
    font-size: 0.95rem;
    font-weight: 800;
  }

  .feature-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .feature-card {
    min-height: 220px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(180deg, #fffdfa 0%, #f7fbff 100%);
    box-shadow: 0 14px 30px rgba(0, 43, 91, 0.08);
  }

  .feature-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 18px;
    background: rgba(192, 24, 116, 0.1);
    color: var(--jana-pink);
    font-size: 1.35rem;
    font-weight: 900;
  }

  .feature-card h3 {
    margin: 18px 0 10px;
    color: var(--jana-blue-deep);
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
  }

  .feature-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.96rem;
  }

  .feature-card li + li {
    margin-top: 6px;
  }

  .merch-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #fffdfa 0%, #f7fbff 100%);
  }

  .merch-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .merch-card__body {
    padding: 16px 18px 18px;
  }

  .merch-card__body h3 {
    margin: 0 0 6px;
    color: var(--jana-blue-deep);
    font-size: 1.08rem;
  }

  .merch-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .product-selector {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 90, 169, 0.1);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .product-selector::before {
    position: absolute;
    inset: -120px -70px auto auto;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(0, 90, 169, 0.08);
    pointer-events: none;
    content: "";
  }

  .product-selector__top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px 0;
  }

  .circle-button {
    display: flex;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(192, 24, 116, 0.22);
    border-radius: 50%;
    background: var(--white);
    color: var(--jana-pink);
    cursor: pointer;
    font-size: 34px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    overflow: hidden;
    
  }
  .circle-button span {
   display: inline-block;
   height: 60px;
 }

 .circle-button:hover,
 .circle-button:focus-visible {
  background: var(--jana-pink);
  color: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.product-selector__label {
  color: var(--jana-pink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.product-list {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 14px auto 0;
  border-radius: 22px;
  padding: 5px;
  background:#c01874d1;
  color: var(--white);
  text-align: center;
}

.product-list__image-wrap {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-list__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.selector-card {
  position: relative;
  z-index: 2;
  max-width: 475px;
  margin: -10px auto 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 43, 91, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.selector-card:hover,
.selector-card:focus-visible {
  box-shadow: 0 18px 40px rgba(0, 43, 91, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.selector-icon {
  display: flex;
  width: 125px;
  height: 40px;
  place-items: center;
  margin: -43px auto 16px;
  border-radius: 30px;
  background: var(--jana-pink);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(192, 24, 116, 0.25);
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.selector-card h3 {
  margin: 0;
  color: var(--jana-blue-deep);
  font-size: 1.45rem;
}

.selector-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Rewards */
.rewards {
  padding: 42px 0 74px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head a {
  color: var(--jana-pink);
  font-weight: 900;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reward-main,
.reward-mini {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 43, 91, 0.08);
}

.reward-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: center;
  min-height: 290px;
  padding: 38px;
}

.unlock {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--jana-pink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.unlock__tier {
  flex: 0 0 auto;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(192, 24, 116, 0.1);
  color: var(--jana-pink);
}

.unlock__text {
  display: block;
  min-width: 0;
  color: var(--jana-pink);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  line-height: 1.45;
  overflow-wrap: normal;
  text-wrap: balance;
}

.reward-main h3 {
  margin: 12px 0 14px;
  color: var(--jana-blue-deep);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.reward-main p {
  max-width: 520px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 12px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--white);
  color: var(--jana-blue-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.ball-visual {
  display: grid;
  width: min(100%, 230px);
  place-items: center;
  padding: 12px;
  border: 1px dashed rgba(0, 90, 169, 0.24);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #edf4fb);
}

.ball-visual img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.reward-side {
  display: grid;
  gap: 24px;
}

.reward-mini {
  align-items: center;
  padding: 26px;
}

.reward-mini__icon {
  display: block;
  width: 100%;
  height: 240px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--jana-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(0, 90, 169, 0.08);
}
.reward-content{padding: 10px 0;}

.reward-mini__icon img { 
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reward-mini span {
  color: var(--jana-pink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reward-mini h3 {
  margin: 4px 0 3px;
  color: var(--jana-blue-deep);
  font-size: 1.2rem;
}

.reward-mini p {
  margin: 12px 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

/* Steps and form */
.score {
  padding: 52px 0 82px;
}

.score-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 74px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 26px;
  margin-top: 36px;
  position: relative;
}

.steps::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background: var(--line);
  content: "";
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--jana-pink);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 43, 91, 0.08);
}

.step:last-child .step-number {
  background: var(--jana-pink);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(192, 24, 116, 0.24);
}

.step h3 {
  margin: 6px 0 6px;
  color: var(--jana-blue-deep);
  font-size: 1.14rem;
}

.step p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.lead-form {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 52px;
  background:
  radial-gradient(circle at 85% 0%, rgba(192, 24, 116, 0.24), transparent 35%),
  linear-gradient(135deg, #07162c, #10243f 52%, #2a0d31);
  color: var(--white);
  box-shadow: 0 26px 60px rgba(7, 22, 44, 0.26);
}

.lead-form::before {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 118px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  content: "";
}

.lead-form h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.lead-form p {
  margin: 12px auto 28px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.field input:focus,
.field select:focus {
  border-color: rgba(245, 165, 27, 0.8);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(245, 165, 27, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--jana-gold);
}

.lead-form .button {
  width: 100%;
  min-height: 58px;
  background: linear-gradient(90deg, var(--jana-pink), #df123d);
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--jana-gold);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.about-section {
  padding: 50px 0 88px;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.about-head {
  margin-bottom: 34px;
  text-align: center;
}

.about-head h2 {
  margin: 0;
  color: var(--jana-blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.about-head p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
}

.about-visual {
  overflow: hidden;
  border-radius: 26px;
  padding: 0 60px
  
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 44px;
  padding-top: 36px;
}

.about-stat h3 {
  margin: 0;
  color: var(--jana-blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.about-stat h3 span {
  color: var(--jana-pink);
}

.about-stat h4 {
  margin: 14px 0 10px;
  color: var(--jana-blue-deep);
  font-size: 1rem;
}

.about-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: -6px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--jana-pink);
  box-shadow: 0 20px 36px rgba(192, 24, 116, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;

}

.about-grid > div > .about-links:not(.about-links--fresh) {
  display: none;
}

.about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  border: 0;
  padding: 24px 34px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease;
}

.about-link:hover,
.about-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.about-link + .about-link {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.about-link__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-link__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
}

.about-link__icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-link strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.18;
}

.about-link__arrow {
  font-size: 2.5rem;
  line-height: 1;
}

.about-story-modal__dialog {
  width: min(100%, 940px);
}

.about-story-modal__image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdfa 0%, #f7fbff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 90, 169, 0.05);
}

.about-story-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}

/* Footer */
.footer {
  border-top: 7px solid var(--jana-pink);
  background:
  radial-gradient(circle at 15% 25%, rgba(0, 90, 169, 0.16), transparent 28%),
  #020711;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 64px;
  padding: 54px 0 46px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--jana-pink);
  transform: translateY(-1px);
  outline: none;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rules-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.rules-card h2 {
  margin: 0 0 20px;
  color: var(--jana-pink);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.rules-grid li {
  position: relative;
  padding-left: 18px;
}

.rules-grid li::before {
  position: absolute;
  left: 0;
  color: var(--jana-pink);
  content: ">";
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-links a:hover{
  color: var(--jana-pink);
}
.link-box{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  row-gap: 8px;
}
.link-box a{
  padding: 6px 12px;
  border: 1px solid #ccc;
  color: #0e0e57;
  display: inline-block;
  border-radius: 47px;
  font-size: 13px;
  font-weight: bold;
}
.link-box a:hover{
  color: var(--jana-pink); 
}
.knowmore-link{
  display: inline-block;
  margin: 19px 18px 0;
  color: var(--jana-pink);
  font-weight: 600;
}
.knowmore-link:hover{
  color: var(--jana-gold);
}
@media (max-width: 1060px) {
  .about-grid{
    gap: 25px;
  }
  .about-visual{
    padding: 0 35px;
  }
  .about-link__meta { 
    gap: 10px;
  }
  .about-link{
    padding: 17px 15px;
    gap: 10px;
    min-height: 90px;
  }
  .about-stats{
    gap: 20px 20px;
  }
  .rewards {
    padding: 30px 0 48px;
  }
  .about-section {
    padding: 50px 0 50px;
  }
  .hero-grid{
    gap: 30px;
  }
  .product-selector{
    padding: 0 15px;
  }
  .product-selector__top{
    padding: 15px 0px 0;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid,
  .score-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-stats,
  .about-links {
    grid-template-columns: 1fr;
  }

  .about-link + .about-link {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .product-selector {
    max-width: 680px;
  }

  .reward-grid {
    grid-template-columns: 1fr;
  }
  .footr-logo-p{
    order: 2;
  }
  .rules-card{
    order: 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section,
  .score {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 184px;
  }

  .header-actions {
    gap: 8px;
  }

  .notification {
    display: none;
  }

  .hero {
    padding: 42px 0 52px;
  }

  .slider-slide,
  .slider-slide img {
    height: 400px;
    min-height: 400px;
  }

  .slider-control {
    width: 38px;
    height: 38px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .hero-actions,
  .section-head,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .section-head a {
    width: 100%;
  }

  .merch-modal {
    padding: 16px;
  }

  .merch-modal__dialog {
    padding: 22px;
    border-radius: 22px;
  }

  .merch-modal__top {
    flex-direction: column;
  }

  .merch-modal__close {
    align-self: flex-end;
  }

  .merch-modal__grid {
    grid-template-columns: 1fr;
  }

  .feature-modal__grid {
    grid-template-columns: 1fr;
  }

  .product-selector {
    border-radius: 20px;
  }

  .product-selector__top {
    padding: 16px 16px 0;
  }

  .product-list {
    margin-inline: 16px;
    margin-top: 12px;
    padding: 18px;
  }

  .selector-card {
    margin-inline: 16px;
    margin-top: -8px;
  }

  .reward-grid {
    grid-template-columns: 1fr;
  }

  .reward-main {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .ball-visual {
    width: min(100%, 220px);
  }

  .reward-mini {
    grid-template-columns: 76px 1fr;
    padding: 20px;
  }

  .lead-form {
    padding: 42px 20px 28px;
    border-radius: 20px;
  }

  .about-visual img {
    min-height: 420px;
  }

  .form-grid,
  .rules-grid,
  .about-stats,
  .about-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom { 
    gap: 9px; 
    padding: 15px 0; 
    font-size: 0.82rem;
  }
  .rewards {
    padding: 0 0 0px;
  }
}
@media (max-width: 440px) {
  .product-selector {
    padding: 0 0px;
  }
  .product-list{
    padding: 5px;
  }
  .slider-slide,
  .slider-slide img {
    height: 400px;
    min-height: 400px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.error-massage{color: red;font-weight: 700;}