:root {
  --bg: #050505;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --muted-2: rgba(255, 255, 255, 0.65);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 520ms ease, backdrop-filter 520ms ease,
    border-color 520ms ease, transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 850ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease;
  border-bottom: 1px solid transparent;
  transform: translateY(-18px);
  opacity: 0;
}

.site-header.is-loaded {
  transform: translateY(0);
  opacity: 1;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .navbar {
  padding: 12px 0;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transform: none;
    opacity: 1;
    transition: background 520ms ease, backdrop-filter 520ms ease,
      border-color 520ms ease, box-shadow 520ms ease;
  }
}

.navbar {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  transition: padding 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand__text {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.brand__text img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav__link {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 10px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  justify-self: end;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--pill {
  background: rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 120px 0 80px;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 10px;
}

.hero__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero__title {
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.02;
  text-shadow: var(--shadow);
  position: relative;
  display: inline-block;
  will-change: transform, opacity, background-position;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.55) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.55) 100%
  );
  background-size: 260% 100%;
  background-position: -140% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: translateX(-38px);
  opacity: 0;
  animation: heroSlideIn 900ms ease forwards, heroShine 2200ms linear infinite;
  animation-delay: 120ms, 1100ms;
}

.hero__subtitle {
  margin: 14px 0 0;
  max-width: 640px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  transform: translateX(-28px);
  opacity: 0;
  will-change: transform, opacity;
  animation: heroSlideIn 900ms ease forwards;
  animation-delay: 260ms;
}

@keyframes heroSlideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroShine {
  0% {
    background-position: -140% 50%;
  }
  100% {
    background-position: 140% 50%;
  }
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__title {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    animation: heroSlideIn 900ms ease forwards;
    animation-delay: 120ms;
  }
}

.hero__cta {
  position: absolute;
  right: 20px;
  bottom: 30px;
  z-index: 2;
}

.why {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(
      circle at 20% 0%,
      rgba(255, 255, 255, 0.06),
      rgba(0, 0, 0, 0) 55%
    ),
    radial-gradient(
      circle at 85% 40%,
      rgba(255, 255, 255, 0.04),
      rgba(0, 0, 0, 0) 55%
    ),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why__grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.why__media {
  position: relative;
  border-radius: 30px 120px 30px 120px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.why__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.15),
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05));
  pointer-events: none;
  z-index: 1;
}

.why__image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1.03);
}

.why__content {
  padding: 6px 0;
}

.why__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.why__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.12;
}

.why__text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 640px;
}

.why__cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 14px 14px 12px;
  transition: transform 160ms ease, border-color 160ms ease,
    background 160ms ease;
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.why-card__title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.why-card__text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
}

.why__actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal--from-left {
  transform: translateX(-38px);
}

.reveal--from-right {
  transform: translateX(38px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.tiles {
  padding: 10px 0 90px;
  background: #050505;
}

.tiles__grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tile {
  position: relative;
  display: block;
  border-radius: 20px 44px 20px 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  min-height: 520px;
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 520ms ease;
}

.tile__media {
  position: absolute;
  inset: 0;
}

.tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease;
}

.tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.05)
  );
  transition: background 520ms ease;
}

.tile__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.tile__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 520ms ease;
}

.tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}

.tile:hover .tile__img {
  transform: scale(1.08);
  filter: contrast(1.08) saturate(1.08);
}

.tile:hover .tile__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.06)
  );
}

.tile:hover .tile__title {
  transform: translateY(-6px);
  letter-spacing: 3.5px;
}

.parallax {
  min-height: 70vh;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)),
    url("../images/mid-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.parallax__box {
  width: min(520px, 92vw);
  border-radius: 22px 80px 22px 80px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
  padding: 26px 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.parallax__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.15;
}

.parallax__text {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .parallax {
    background-attachment: scroll;
    min-height: 86vh;
  }

  .parallax__inner {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .parallax__box {
    border-radius: 18px 56px 18px 56px;
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax {
    background-attachment: scroll;
  }
}

.club-features {
  background: #f5f5f5;
  color: #111;
  padding: 84px 0;
}

.club-features__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.club-features__heading {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 18px;
}

.club-features__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px 34px 18px 34px;
  background: #111;
  min-height: 260px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms ease;
}

.feature-card__media {
  position: absolute;
  inset: 0;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease;
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.06)
  );
  transition: background 520ms ease;
}

.feature-card__title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  z-index: 2;
  color: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  line-height: 1.25;
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 520ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08);
}

.feature-card:hover .feature-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.06)
  );
}

.feature-card:hover .feature-card__title {
  transform: translateY(-6px);
  letter-spacing: 3.4px;
}

.club-features__note {
  margin: 26px auto 0;
  text-align: center;
  max-width: 700px;
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .club-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .club-features {
    padding: 68px 0;
  }

  .club-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .club-features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 320px;
  }
}

.steps {
  background: #ffffff;
  color: #111;
  padding: 84px 0;
}

.steps__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.steps__heading {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 18px;
}

.steps__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms ease, border-color 520ms ease;
}

.step__icon {
  width: 74px;
  height: 74px;
  margin: 4px auto 10px;
  display: grid;
  place-items: center;
  color: #111;
  transform: translateY(0) scale(1);
}

.step__icon svg {
  width: 64px;
  height: 64px;
}

.step__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-size: 11px;
  color: rgba(17, 17, 17, 0.55);
}

.step__title {
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
}

.step__text {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.65;
  font-size: 13px;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.18);
}

.step:hover .step__icon {
  transform: translateY(-2px) scale(1.03);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .steps {
    padding: 68px 0;
  }

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

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0 26px;
}

.site-footer__top {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.footer-brand__text {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-nav__link {
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 4px;
  position: relative;
}

.footer-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav__link:hover::after,
.footer-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.footer-tagline {
  justify-self: end;
  margin: 0;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 520ms ease, border-color 520ms ease;
}

.social svg {
  width: 18px;
  height: 18px;
}

.social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.social--instagram {
  color: #e1306c;
}

.social--youtube {
  color: #ff0000;
}

.social--tiktok {
  color: #ffffff;
}

.social--facebook {
  color: #1877f2;
}

.social--linkedin {
  color: #0a66c2;
}

@media (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .footer-tagline {
    justify-self: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

.section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
}

.section h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.nav-toggle {
  display: none;
  justify-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  margin: 4px auto;
}

@media (max-width: 980px) {
  .navbar {
    grid-template-columns: 1fr auto auto;
  }

  .why {
    padding: 72px 0;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why__image {
    height: 420px;
  }

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

  .tiles {
    padding: 10px 0 72px;
  }

  .tiles__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tile {
    min-height: 460px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    gap: 10px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .nav__link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero__cta {
    right: 20px;
    bottom: 22px;
  }
}

@media (max-width: 520px) {
  .brand__text {
    font-size: 18px;
  }

  .brand__text img {
    width: 34px;
    height: 34px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 11px;
  }

  .hero {
    padding-top: 104px;
  }

  .why {
    padding: 64px 0;
  }

  .why__media {
    border-radius: 22px 80px 22px 80px;
  }

  .why__image {
    height: 320px;
  }

  .tile {
    border-radius: 18px 34px 18px 34px;
    min-height: 420px;
  }
}
