
:root {
  --teal: #0a7780;
  --dark: #031315;
  --white: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
}

body { overflow: hidden; }

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

.page {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.cinematic-bg,
.grain {
  position: absolute;
  inset: 0;
}

.cinematic-bg {
  z-index: -3;
  background:
    radial-gradient(circle at 63% 42%, rgba(9,105,112,.62), transparent 31%),
    radial-gradient(circle at 84% 54%, rgba(170,94,57,.50), transparent 28%),
    linear-gradient(120deg, #020e10 0%, #04191b 45%, #101518 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .58;
}

.glow-one {
  width: 30vw;
  height: 30vw;
  min-width: 280px;
  min-height: 280px;
  right: 20%;
  top: 18%;
  background: rgba(8,125,134,.40);
}

.glow-two {
  width: 28vw;
  height: 28vw;
  min-width: 250px;
  min-height: 250px;
  right: -3%;
  bottom: 4%;
  background: rgba(190,102,59,.36);
}

.grain {
  opacity: .10;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

.header,
.footer {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.header {
  padding: 26px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 800 23px "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
}

.get-app {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.get-app:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
}

.hero {
  width: min(1040px, calc(100% - 48px));
  margin: auto;
  text-align: center;
  align-self: center;
  padding: 22px 0 12px;
}

.eyebrow {
  margin: 0 0 26px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font: 800 clamp(76px, 8.8vw, 144px)/.86 "Manrope", sans-serif;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.subtitle {
  margin: 30px auto 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.45;
  letter-spacing: -.025em;
}

/* App Store and Google Play Buttons */

.store-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-button {
  width: 210px;
  height: 62px;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 12px;

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;

  background: #ffffff;
  color: #07191b;

  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.store-button small {
  display: block;
  margin: 0;
  color: #07191b;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
}

.store-button strong {
  display: block;
  margin-top: 4px;
  color: #07191b;
  font: 700 20px/1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: left;
}

.apple {
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  line-height: 1;
  color: #07191b;
}

.play-icon {
  width: 29px;
  height: 32px;
  justify-self: center;
  flex-shrink: 0;

  clip-path: polygon(0 0, 100% 50%, 0 100%);

  background:
    linear-gradient(
      180deg,
      #31d17b 0 34%,
      #ffd54a 34% 66%,
      #ff655f 66%
    );
}

.apple {
  font-size: 31px;
  line-height: 1;
}

.play-icon {
  width: 25px;
  height: 29px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(180deg,#31d17b 0 34%,#ffd54a 34% 66%,#ff655f 66%);
}

.status-pill {
  width: fit-content;
  margin: 46px auto 0;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(3,18,20,.52);
  backdrop-filter: blur(18px);
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f47b4c;
  box-shadow: 0 0 0 7px rgba(244,123,76,.13);
}

.footer {
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px 18px;
  max-width: 620px;
}

.footer a {
  transition: color .2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 500px) {
  .store-buttons {
    width: 100%;
    margin-top: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .store-button {
    width: min(210px, 100%);
    height: 64px;
    padding: 0 20px;

    grid-template-columns: 38px 1fr;
    column-gap: 14px;

    border-radius: 17px;
  }

  .store-button small {
    font-size: 9px;
  }

  .store-button strong {
    margin-top: 4px;
    font-size: 21px;
  }

  .apple {
    width: 38px;
    font-size: 32px;
  }

  .play-icon {
    width: 30px;
    height: 33px;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .header { padding-top: 18px; }

  .hero {
    transform: scale(.90);
    transform-origin: center;
    padding: 0;
  }

  .footer { padding-bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

@media (max-width: 400px) {
  .hero {
    padding-top: 45px;
  }

  .footer { padding-top: 45px; }

}
