:root {
  --navy: #09103d;
  --dark: #020916;
  --dark-2: #07111f;
  --pink: #f3167c;
  --blue: #1fa5eb;
  --white: #ffffff;
  --soft-white: rgba(255,255,255,.88);
  --line: rgba(255,255,255,.28);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 360px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 360px;
  color: var(--white);
  background: var(--dark);
  font-family: "alwyn-new-web", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.site-header {
  position: absolute;
  z-index: 90;
  top: 0;
  left: 50%;
  width: min(100%, 1240px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 23px 0 13px;
}

.brand {
  display: block;
  width: clamp(170px,26vw,270px);
  line-height: 0;
}

.menu-button {
  position: relative;
  z-index: 100;
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  padding: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 29px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}
.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-menu[hidden] {
  display: none !important;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding: 92px 30px 52px;
  color: var(--navy);
  background: rgba(255, 255, 255, .97);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
  font-weight: 500;
}

.site-menu a {
  display: block;
  width: min(82vw, 360px);
  padding: 26px 0;
  text-decoration: none;
}

.site-menu a + a {
  border-top: 1px solid rgba(4, 12, 58, .08);
}

.hero {
  position: relative;
  padding-bottom: 100px;
  background: #fff;
  color: var(--navy);
  overflow: hidden;
}


.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right 70%;     /* base for narrow screens */
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 20%, rgba(255,255,255,.78) 34%, rgba(255,255,255,.28) 50%, rgba(255,255,255,.08) 70%),
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 66%, #020916 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 71px 22px 34px;
}

.hero h1 {
  max-width: 330px;
  margin: 0 0 18px;
  font-family: "classic-comic", "Classic Comic", "Comic Sans MS", "Comic Neue", cursive;
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.018em;
  color: var(--navy);
}

.hero-line {
  white-space: nowrap;
}

.hero-line-main {
  font-size: 7.4vw;
  color: var(--blue);
  display: inline-block;
}

.hero-line-sub {
  font-size: 4vw;
  color: var(--blue);
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  position: relative;
  top: -0.4rem;
}

.hero-line-accent {
  margin-top: 2px;
  color: var(--pink);
  font-size: 8vw;
  letter-spacing: -.02em;
  display: block;
}

.hero-line-accent sup {
  position: relative;
  top: calc(0vw);
  right: -4px;
  font-size: 16px;
  font-family: "alwyn-new-web", Arial, Helvetica, sans-serif;
}

.hero h1 em {
  display: inline-block;
  color: var(--pink);
  font-style: normal;
  font-size: .42em;
  transform: translateY(-.34em) rotate(10deg);
}

.hero p {
  margin: 0;
  max-width: 40vw;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .005em;
}

.hero p strong {
  color: var(--pink);
}

.get-app-block {
  position: absolute;
  left: 20px;
}

.get-app-label {
  color: var(--pink);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
}

#get-app .get-app-label {
  text-align: left;
  color: var(--navy);  
}


.hero-apps {
  width: min(100%, 295px);
  
}


.hero-apps .store-buttons {
  justify-content: flex-start;
  gap: 9px;
  margin-top: 10px;
}

.hero-apps .store-buttons img {
  height: 39px;
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.store-buttons img {

}

.dark-section {
  position: relative;
  padding: 32px 14px 28px;
  background:
    radial-gradient(circle at 25% 7%, rgba(41,152,255,.13), transparent 28%),
    radial-gradient(circle at 70% 5%, rgba(243,22,124,.12), transparent 26%),
    linear-gradient(180deg, #020916 0%, #07111f 54%, #020916 100%);
}


.feature-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1140px);
  margin: 0 auto 24px;
}

.feature-card {
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--line);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(86, 54, 255, .35);
}

.feature-icon.bolt,
.feature-icon.sparkle {
  background: linear-gradient(135deg, #1fa5eb 0%, #0077b5 100%);
}

.feature-icon.shield {
  background: linear-gradient(135deg, #ff268c 0%, #f31570 100%);
}

.feature-card h2 {
  margin: 0 0 8px;
  font-size: .84rem;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.feature-card p {
  margin: 0 auto;
  max-width: 116px;
  color: var(--soft-white);
  font-size: .82rem;
  line-height: 1.34;
}

.video-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  min-height: 150px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(255,255,255,.04);
  box-shadow: inset 0 0 38px rgba(255,255,255,.03);
}

.play-button {
  width: 70px;
  height: 70px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: var(--white);
  background: transparent;
  border: 4px solid var(--white);
  border-radius: 999px;
  font-size: 2rem;
  cursor: pointer;
}

.video-panel p {
  margin: 0 0 6px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.video-panel span {
  font-size: 1.15rem;
  color: var(--soft-white);
}

.experiences {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 500;
}

.section-heading a span {
  font-size: 2rem;
  vertical-align: -.15em;
}

.carousel-wrap {
  position: relative;
}

.carousel-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 12px;
  z-index: 3;
  width: 56px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(2, 9, 22, 1) 0%,
    rgba(2, 9, 22, .72) 28%,
    rgba(2, 9, 22, 0) 100%
  );
  opacity: 0;
  transition: opacity .2s ease;
}

.carousel-wrap.has-scroll-left::before {
  opacity: 1;
}

.carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 12px;
  z-index: 3;
  width: 56px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(2, 9, 22, 0) 0%,
    rgba(2, 9, 22, .72) 72%,
    rgba(2, 9, 22, 1) 100%
  );
  opacity: 0;
  transition: opacity .2s ease;
}

.carousel-wrap.has-scroll-right::after {
  opacity: 1;
}

.experience-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 14px;
  padding: 0 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.experience-track {
  cursor: grab;
}
.experience-track::-webkit-scrollbar {
  display: none;
}

.experience-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.experience-track img {
  user-select: none;
  -webkit-user-drag: none;
}



.experience-card {
  position: relative;
  flex: 0 0 182px;
  height: 296px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 13px;
  background: #152131;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.card-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.28), transparent 10%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.86) 100%);
}

.experience-card h3 {
  position: relative;
  z-index: 2;
  margin: 13px 10px 0;
  color: #fff2a8;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  line-height: .95;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0,0,0,.75);
}

.experience-card p {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 14px;
  margin: 0;
  color: #f5ff62;
  font-size: .78rem;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}


.carousel-arrow {
  display: none;
}

.app-promo {
  position: relative;
  width: min(100%, 1120px);
  min-height: 232px;
  margin: 8px auto 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(255,255,255,.04);
  overflow: hidden;
}

.promo-copy {
  position: relative;
  z-index: 2;
  max-width: 215px;
}

.promo-copy h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.22;
  letter-spacing: -.04em;
  font-weight: 500;
}

.promo-copy p {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 1.38rem;
  line-height: 1.1;
  font-weight: 500;
}

.hearts {
  display: flex;
  gap: 8px;
  font-size: 2.25rem;
  line-height: 1;
}

.hearts span:first-child {
  color: var(--blue);
}

.hearts span:last-child {
  color: var(--pink);
}

.promo-phone {
  position: absolute;
  right: 15px;
  bottom: -20px;
  transform: rotate(13deg);
  width: 130px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}

.phone-mockup {
  position: absolute;
  right: 15px;
  bottom: -20px;
  width: 128px;
  height: 244px;
  padding: 7px;
  border: 3px solid #20242b;
  border-radius: 26px;
  background: #0a0d12;
  box-shadow: -18px 18px 34px rgba(0,0,0,.38);
  transform: rotate(13deg);
}

.phone-screen {
  height: 100%;
  padding: 12px 9px;
  border-radius: 19px;
  background:
    radial-gradient(circle at 50% 52%, rgba(243,22,124,.35), transparent 12%),
    linear-gradient(180deg, #10141c, #020306);
  text-align: center;
  overflow: hidden;
}

.phone-time {
  display: block;
  margin-bottom: 8px;
  font-size: .48rem;
  text-align: left;
}

.phone-screen strong {
  display: block;
  font-size: .6rem;
}

.phone-screen p {
  margin: 2px auto 7px;
  color: #fff;
  font-size: .72rem;
  line-height: 1.1;
  font-weight: 500;
}

.phone-art {
  height: 86px;
  margin: 0 auto 12px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 48% 50%, rgba(255,255,255,.3), transparent 13%),
    linear-gradient(145deg, #5d301e, #0c1729 70%);
}

.wave {
  height: 26px;
  margin-bottom: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 4px, transparent 5px),
    linear-gradient(90deg, #1fa5eb, #8a29ff 48%, #f3167c);
  box-shadow: 0 0 18px rgba(243,22,124,.65);
}

.phone-screen small {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: .48rem;
  line-height: 1.1;
}

.bottom-apps {
  width: min(100%, 1120px);
  margin: 15px auto;
  padding: 0 0 8px;
  text-align: center;
}

.bottom-apps .get-app-label {
  margin-bottom: 6px;
}

.footer-links {
  text-align: center;
  margin: 0 auto;
  color: #777;
  font-size: 12px;
}
.footer-links a {
  color: #777;
}

@media (max-width: 400px) {
  .promo-phone {
    width: 150px;
    bottom:-80px;
    right: -30px;
  }  
}

@media (min-width: 500px) {
  .hero-image {
    object-position: 78% 65%;
  }
  .promo-phone {
    width: 223px;
    bottom:-225px;
    right:40px;
  }
}

@media (min-width: 768px) {
  .site-shell {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }

  .site-header {
    width: 100%;
    padding: 34px clamp(36px, 5vw, 70px) 0;
  }

  .hero {
    min-height: 470px;
    padding-bottom: 0;
  }

  .hero-image {
    object-position: 78% 65%;
  }

  .hero-fade {
    background:
      linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 22%, rgba(255,255,255,.78) 36%, rgba(255,255,255,.25) 57%, rgba(255,255,255,.05) 74%),
      linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 62%, #020916 100%);
  }

  .hero-content {
    width: 100%;
    padding: 92px clamp(36px, 5vw, 70px) 120px;
  }

  .hero h1 {
    max-width: 660px;
    margin-bottom: 18px;
  }

  .hero-line-main {
    font-size: clamp(3.6rem, 7.2vw, 5.6rem);
  }

  .hero-line-sub {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    top: -0.65rem;
  }

  .hero-line-accent {
    font-size: clamp(4rem, 7.8vw, 6.2rem);
  }

  .hero-line-accent sup {
    top: -0.2em;
    font-size: 18px;
  }

  .hero p {
    max-width: 40vw;
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .hero-apps {
    z-index: 2;
    left: clamp(36px, 5vw, 70px);
    bottom: 24px;
    width: 300px;
  }

  .hero-apps .store-buttons img {
    height: 43px;
  }

  .dark-section {
    padding-inline: clamp(28px, 5vw, 70px);
  }
}
@media (min-width: 980px) {
  .hero-image {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 60%;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-image {
    object-position: 82% 60%;
  }
  .feature-row {
    margin-bottom: 50px;
  }
  .experience-card {
    height: 366px;
    flex: 0 0 250px;
  }
  .app-promo {
    padding: 24 42px;
  }
}