/* Prefer WOFF2 if you have it; TTF fallback shown */
@font-face {
  font-family: 'Gilroy';
  src: url('https://repost.uz/avo-special/assets/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://repost.uz/avo-special/assets/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://repost.uz/avo-special/assets/fonts/gilroy-semibold.ttf') format('truetype');
  /* your file */
  font-weight: 600;
  /* Semibold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://repost.uz/avo-special/assets/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  /* Bold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('https://repost.uz/avo-special/assets/fonts/Gilroy-Heavy.ttf') format('truetype');
  /* your file */
  font-weight: 800;
  /* Heavy (sometimes 900; adjust if needed) */
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #ffed00;
  --dark: #1E1E1E;
  --white: #fff;
  --bg: #1E1E1E;
  --glass-bg: rgba(255, 255, 255, .06);
  --glass-stroke: rgba(255, 255, 255, .18);
  --glass-hi: rgba(255, 255, 255, .22);
  --text: #f5f5f7;
  --muted: #c7c7cd;
  --card: #1f1f22;
  --radius-outer: 24px;
  --desk-mt: -220px;
  --mobile-mt: -180px;
  --mini-mt: -125px;
  --radius-card: 18px;
  --cta-height: 130px;
  /* overall visual height of the component */
  /* --cta-font: 600 28px/1.1 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; */
  --cta-text: #1E1E1E;
  --cta-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
  /* чтобы ссылки не красились в синий, если не нужно */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  /* overflow-x: hidden; */
  /* overflow-y: scroll; */
  font-family: 'Gilroy', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.6px;
}

body {
  background: var(--dark);
  color: var(--white);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.hero-title {
  font-weight: 700;
  /* Heavy */
  font-synthesis: none;
  /* avoid “fake bold” if the weight fails to load */
}

/* CTA label */
.hero-cta__label {
  font-weight: 400;
  /* Semibold */
}


.hero-cta {
  top: -20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  justify-content: flex-start;
  height: var(--cta-height);
  /* the 3 svg pieces are absolutely positioned, so the button itself is just the canvas */
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pre-footer {
  display: none;
}

/* pointer disk sits on the left and overlaps the pill */
.hero-cta__pointer {
  position: relative;
  z-index: 2;
  display: block;
  height: 50%;
  width: auto;
  background: transparent;
  /* filter: drop-shadow(var(--cta-shadow)); */
  /* pull slightly left so the disk “sticks out” like on the mock */
  /* margin-right: -36px; */
  /* adjust to match your comp */
}

/* yellow pill bg centered vertically */
.hero-cta__bg {
  position: relative;
  z-index: 1;
  display: block;
  height: 30%;
  /* pill is visually a bit shorter than the disk */
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .28));
  /* leave room on the right for the flare */
  margin-right: 70px;
  left: -40px;
  /* space for flare (tune) */
}

/* right sparkle sits outside the pill’s corner */
.hero-cta__flare {
  left: -110px;
  position: relative;
  /* right: 10vw; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  height: 35%;
  /* width: auto; */
  z-index: 4;
  pointer-events: none;
}

.hero-banner {

  position: relative;
  /* z-index: 1; */
  margin-bottom: -90px;
  width: 700px;
  height: auto;
  margin-right: -83px;
}

.page-container {
  max-width: 1250px;
  /* keeps content centered on large screens */
  margin: 0 auto;
  /* centers horizontally */
  padding: 0 20px;
  /* left/right breathing room */
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}

.hero-bg-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 650px;
  left: 613px;
  height: auto;
  z-index: 0;
  opacity: 0.25;
  /* прозрачность, как в макете */
  pointer-events: none;
  /* чтобы не мешал кликам */
}

.hero-text {
  margin-top: -70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
}

.hero-text h1 {
  line-height: 0.8;
  font-size: 4rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero-text p {
  font-weight: 500;
  /* margin: 15px 0; */
  font-size: 2rem;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Social icons */
.socials {
  display: flex;
  gap: 20px;
}

.socials img {
  width: 50px;
  /* height: 24px; */
  transition: transform 0.2s ease;
  cursor: pointer;
}

.socials img:hover {
  transform: scale(1.1);
}

/* .btn-secret {
  background: var(--yellow);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
} */

/* Cards */
.exclusive {
  padding: 40px 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.date {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #bbb;
}

/* Buttons */
.btn-outline,
.btn-dark {
  margin: 10px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
}

.btn-outline {
  border: 2px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--white);
}

/* Footer */
.footer {
  margin-top: var(--desk-mt);
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.partners>img {
  width: 25%;
}

.footer a {
  margin: 0 10px;
  color: #ccc;
}

.footer .copy {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #888;
}

.links {
  padding: 0 20px;
  position: relative;
  bottom: -32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  display: flex;
  width: 60%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.copyright>p {
  padding-left: 20px;
  font-weight: 400;
  font-size: 13px
}

.copyright>img {
  width: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}


/* Section spacing */
.exclusive {
  padding: 28px 16px 48px;
}

/* GLASS PANEL */
.glass {
  top: var(--desk-mt);
  position: relative;
  border-radius: var(--radius-outer);
  padding: 0px 22px 70px;
  color: var(--text);

  /* base “glass” layer */
  background: var(--glass-bg);
  border: 1px solid var(--glass-stroke);
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, .35), inset 0 1px 0 var(--glass-hi); */

  /* frosted effect – supported in modern browsers; harmless fallback elsewhere */
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(50px) saturate(120%);
}

/* subtle vignette / gradient glow */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(1200px 300px at 20% 0%, rgba(255, 255, 255, .14), transparent 60%),
    radial-gradient(700px 200px at 80% 20%, rgba(255, 255, 255, .08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .08));
  pointer-events: none;
}

/* Title */
.exclusive__title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--yellow);
  letter-spacing: .2px;
  margin: 15px 0;
}

/* Cards layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  /* background: var(--card); */
  /* border-radius: var(--radius-card); */
  padding: 0;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, .32); */
}

.card__media {
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  background: #2a2a2d;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__title {
  margin: 14px 0 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  text-align: left;
}

.card__meta {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}

.card__meta .dot {
  opacity: .5;
}

/* Buttons */

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.actions__wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.actions__wrapper>img {
  width: 70%;
}

.exclusive__actions {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  font-family: 'Gilroy', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  border-radius: 18px;
  font-weight: 500;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.btn--ghost {
  cursor: pointer;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--yellow);
  /* box-shadow: 0 0 0 3px rgba(255, 239, 24, .08) inset; */
}

.btn--ghost:hover {
  transform: translateY(-1px);
  /* box-shadow: 0 0 0 4px rgba(255, 239, 24, .16) inset; */
}

.btn--dark {
  background: #141415;
  color: var(--text);
  border: 2px solid #fff;
}

.btn--dark:hover {
  transform: translateY(-1px);
}


.hero-cta__mobile {
  display: none;
  width: 100%;
  background: transparent;
  border: none;
}

.hero-cta__mobile>img {
  height: auto;
  margin: 15px;
}

.footer__mobile {
  display: none;
}


/* Watermark band */
.exclusive__watermark {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 36px;
  display: flex;
  align-items: center;
  color: #ffffff;
  opacity: .08;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  text-transform: uppercase;
}

.mobile__header {
  display: none;
}


/* --------- Responsive --------- */
@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1175px) {

  .hero-banner {
    width: 600px;
    margin-right: -55px;
  }
}

@media (max-width: 1075px) {
  .hero-banner {
    width: 500px;
    margin-right: -55px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1.5rem;
  }

  .hero-cta__pointer {
    height: 40%
  }

  .hero-cta__bg {
    height: 25%;
  }

  .hero-cta__flare {
    right: 100px;
  }

  .glass {
    top: var(--mobile-mt);
  }

  .footer {
    margin-top: var(--mobile-mt);
  }
}


@media (max-width: 950px) {
  .hero-banner {
    width: 450px;
    margin-right: -55px;
  }
}

@media (max-width: 900px) {
  .hero-banner {
    width: 400px;
    margin-right: -40px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass {
    top: var(--mini-mt);
  }

  .footer {
    margin-top: var(--mini-mt);
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .exclusive__title {
    font-size: 1.5rem;
  }

  .copyright>p {
    font-size: 7px;
  }

  .card__title {
    font-size: 1rem;
  }

  .card__meta {
    font-size: 0.7rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-cta__pointer {
    height: 35%
  }

  .hero-cta__bg {
    height: 20%;
    left: -25px;
  }

  .hero-cta__flare {
    right: 100px;
    height: 25%;
  }

}


@media (max-width: 882px) {
  .hero-banner {
    width: 350px;
    margin-right: -35px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .exclusive__title {
    font-size: 1.2rem;
  }

  .copyright>p {
    font-size: 7px;
  }

  .card__title {
    font-size: 1rem;
  }

  .card__meta {
    font-size: 0.7rem;
  }

  .hero-cta {
    top: -30px;
  }

  .hero-text {
    margin-top: 11px;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-cta__pointer {
    height: 35%
  }

  .hero-cta__bg {
    height: 20%;
    left: -25px;
  }

  .hero-cta__flare {
    right: 100px;
    height: 25%;
  }
}


@media (max-width: 765px) {
  .card__media>img {
    width: 100%;
    height: auto;
  }

  .burger {
    display: inline-block;
  }

  .mobile__header {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .mobile__header>.logo {
    height: 25px;
  }

  .footer,
  .header {
    display: none;
  }

  .footer__links>a {
    margin: 10px;
    color: var(--text);
  }

  .footer__mobile>img {
    margin-top: 30px;
  }

  .footer__mobile>p {
    margin-top: 10px;
    font-size: 7px;
    text-align: center;
  }

  .footer__mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }

  .pre-footer {
    position: relative;
    top: -20px;
    width: 100%;
    /* take full width of viewport */
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically if you add height */
    padding: 0;
    margin: 0;
  }

  .pre-footer>img {
    width: 80vw;
    max-width: 90%;
    height: auto;
    display: block;
    margin-top: var(--mini-mt);
  }

  .hero-cta__mobile>img {
    margin: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-banner {
    width: 350px;
    margin-right: 0;
  }

  .exclusive {
    padding: 0;
  }

  .hero-cta__mobile {
    display: flex;
    padding: 10px 50px 10px 50px;
  }

  .btn {
    font-size: 10px;
  }

  .actions__wrapper>img {
    display: none;
  }

  .exclusive__title {
    text-align: center;
    font-size: 30px;
  }

  .cards-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .card {
    display: flex;
    min-width: 82%;
    scroll-snap-align: start;
    flex-direction: row;
  }

  .card__media {
    width: 50%;
  }

  .card-info {
    padding-left: 15px;
    width: 50%;
  }

  .card__media>img {
    width: 100%;
  }


  .hero-cta__mobile {
    width: 100%;
    display: flex;
  }

  .hero-cta__pointer {
    border: none;
    filter: none;
  }

  .hero-cta {
    display: none;
  }

  .cards-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .card {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .exclusive__actions {
    flex-direction: column;
  }
}