@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter_28pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

 .lang-switcher {
   position: fixed;
   top: 5px;
   left: 5px;
   z-index: 999;
 }
 
.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  background: transparent;
  cursor: pointer;
}
 
.lang-switcher__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin: auto;
  background: #000;
  mask: url("assets/globe-solid-full.svg") center / contain no-repeat;
  -webkit-mask: url("assets/globe-solid-full.svg") center / contain no-repeat;
}

.lang-switcher__text {
  font-size: 12px;
  font-weight: 700;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 150px;
  padding: 6px;
  border: 1px solid #111;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.lang-switcher__menu button {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.lang-switcher__menu button[aria-current="true"],
.lang-switcher__menu button:hover,
.lang-switcher__menu button:focus {
  background: #f0f0f0;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

.landing {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.brand {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 62px);
  text-align: center;
  z-index: 10;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(420px, 1fr);
  align-items: center;
  column-gap: clamp(32px, 6vw, 120px);
  padding:
    clamp(96px, 10vh, 150px)
    clamp(32px, 7vw, 110px)
    clamp(40px, 7vh, 80px);
}

.content {
  width: min(100%, 390px);
  margin-left: clamp(0px, 6vw, 120px);
  position: relative;
  z-index: 2;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.05;
  font-weight: 900;
}

h2 {
	font-weight: 900;
}

p {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.32;
}

.responsive-copy--mobile {
  display: none;
}

.responsive-copy--desktop {
  display: block;
}

@media (max-width: 767px) {
  .responsive-copy--mobile {
    display: block;
  }
  .responsive-copy--desktop,
  .desktop-subheading {
    display: none;
  }
}

.desktop-subheading {
  margin-top: 6px;
  font-size: clamp(20px, 1.7vw, 24px);
}

.rule {
  height: 2px;
  background: #111;
  margin: 18px 0 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(100%, 380px);
  min-height: clamp(54px, 5vw, 66px);
  margin-top: clamp(36px, 7vh, 70px);
  border-radius: 999px;
  background: #c40000;
  color: #fff;
  text-decoration: none;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
}

.button:hover {
	opacity: 0.8;
}

a:hover {
	text-decoration: none;
}

.contact {
  display: block;
  width: max-content;
  margin: clamp(36px, 6vh, 64px) auto 0;
  color: #000;
  font-size: 20px;
}

.apple-wrap {
  position: relative;
  justify-self: end;
  align-self: end;
  width: clamp(420px, 48vw, 600px);
  margin-right: clamp(-72px, -4vw, -32px);
  margin-bottom: clamp(-36px, -4vh, -12px);
}

.apple-wrap::after {
  content: "";
  position: absolute;
  width: 140%;
  aspect-ratio: 4.3 / 1;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 232, 188, 0.95) 0%,
      rgba(255, 255, 255, 0) 72%
    );
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

.apple {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(300px, 360px) minmax(360px, 1fr);
    column-gap: clamp(20px, 4vw, 48px);
    padding-left: clamp(28px, 5vw, 60px);
    padding-right: clamp(20px, 4vw, 48px);
  }
  .content {
    margin-left: 0;
    width: min(100%, 350px);
  }
  .apple-wrap {
    width: clamp(360px, 45vw, 520px);
    margin-right: clamp(-80px, -7vw, -36px);
  }
  .button {
    margin-top: 42px;
  }
  .contact {
    margin-top: 40px;
  }
}

@media (min-width: 768px) and (max-height: 760px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 32px;
  }
  p {
    font-size: 18px;
  }
  .rule {
    margin: 12px 0 10px;
  }
  .button {
    min-height: 54px;
    margin-top: 32px;
  }
  .contact {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .brand {
    top: 60px;
    right: 28px;
  }
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 162px 16px 48px;
  }
  .apple-wrap {
    order: 1;
    width: clamp(340px, 112vw, 500px);
    margin: 0 -96px 20px auto;
    align-self: flex-end;
  }
  .content {
    order: 2;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .button {
    width: 100%;
    font-size: 16px;
    margin-top: 40px;
  }
  .contact {
    margin-top: 40px;
   }
}
