:root {
  --app-height: 100dvh;
  --color-bg: #001219;
  --color-white: #f4f4f3;
  --color-copy: #d7dee3;
  --color-accent: #e85d04;
  --color-gain: #22c55e;
  --color-loss: #ff5b43;
  --color-divider: rgba(110, 125, 138, 0.38);
  --color-proof: #627282;
  --color-button-bg: #f4f4f3;
  --color-button-text: #081923;
  --shadow-button: 0 10px 30px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: var(--app-height);
  background: var(--color-bg);
  overflow: hidden;
}

body {
  position: fixed;
  inset: 0;
  margin: 0;
  width: 100%;
  height: var(--app-height);
  min-height: var(--app-height);
  background: var(--color-bg);
  color: var(--color-white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

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

a {
  font: inherit;
}

.landing {
  min-height: var(--app-height);
  height: var(--app-height);
  width: 100%;
  display: flex;
  justify-content: center;
  padding:
    calc(env(safe-area-inset-top, 0px) + clamp(0.9rem, 2.6vw, 2rem))
    clamp(1rem, 3vw, 2rem)
    calc(env(safe-area-inset-bottom, 0px) + clamp(1.15rem, 2.9vw, 2rem));
  overflow: hidden;
}

.hero {
  --hero-scale: 1;
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.hero__inner {
  width: min(100%, 24.9rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  transform: scale(var(--hero-scale));
  transform-origin: top center;
}

.hero__logo {
  width: min(19.1rem, 90vw);
}

.hero__ticker {
  margin: clamp(4.4rem, 10vw, 5.2rem) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  flex-wrap: nowrap;
  font-size: clamp(1rem, 3.7vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.hero__ticker-label {
  color: var(--color-white);
}

.hero__ticker-price,
.hero__ticker-change {
  white-space: nowrap;
  color: var(--color-loss);
}

.hero__title {
  width: calc(100% + 1.45rem);
  margin: clamp(2.72rem, 6.7vw, 3.25rem) 0 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.88rem, 11.3vw, 4.28rem);
  line-height: 0.965;
  font-weight: 400;
  letter-spacing: 0.004em;
  color: var(--color-accent);
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__title span + span {
  margin-top: 0.7rem;
}

.hero__copy {
  margin: clamp(2.48rem, 6.2vw, 3.05rem) 0 0;
  width: calc(100% + 0.95rem);
  font-size: clamp(1.01rem, 4.3vw, 1.4rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: var(--color-copy);
}

.hero__copy span {
  display: block;
  white-space: nowrap;
}

.hero__copy span + span {
  margin-top: 0.54rem;
}

.hero__copy strong {
  font-weight: 800;
  color: var(--color-white);
}

.google-button {
  width: 100%;
  max-width: 16.35rem;
  margin-top: clamp(2.45rem, 6.2vw, 3.2rem);
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: var(--color-button-bg);
  color: var(--color-button-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.82rem;
  font-size: clamp(0.89rem, 3.5vw, 1.02rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-button);
  text-decoration: none;
}

.google-button__icon {
  width: 1.74rem;
  height: 1.74rem;
  flex: 0 0 auto;
}

.hero__divider {
  width: 9.8rem;
  margin-top: 1.95rem;
  border-top: 1px dashed var(--color-divider);
}

.hero__proof {
  margin: 1.18rem 0 0;
}

.hero__proof-image {
  width: min(8.7rem, 37vw);
  margin: 0 auto;
}

.hero__proof-caption {
  margin-top: 0.92rem;
  font-size: clamp(0.76rem, 3.05vw, 0.92rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--color-proof);
}

.hero__ticker--positive .hero__ticker-price,
.hero__ticker--positive .hero__ticker-change {
  color: var(--color-gain);
}

.hero__ticker--negative .hero__ticker-price,
.hero__ticker--negative .hero__ticker-change {
  color: var(--color-loss);
}

.hero__ticker--neutral .hero__ticker-price,
.hero__ticker--neutral .hero__ticker-change {
  color: var(--color-white);
}

@media (max-width: 359px) {
  .hero__inner {
    width: min(100%, 20rem);
  }

  .hero__logo {
    width: min(16.8rem, 87vw);
  }

  .hero__ticker {
    flex-wrap: wrap;
    font-size: 0.94rem;
  }

  .hero__title {
    width: calc(100% + 0.8rem);
    font-size: clamp(2.48rem, 11.15vw, 3.02rem);
  }

  .hero__title span + span {
    margin-top: 0.56rem;
  }

  .hero__copy {
    width: calc(100% + 0.2rem);
    font-size: 0.97rem;
  }

  .hero__copy span {
    white-space: normal;
  }

  .google-button {
    max-width: 15.2rem;
    padding: 0.94rem 1.05rem;
    font-size: 0.84rem;
  }

  .google-button__icon {
    width: 1.64rem;
    height: 1.64rem;
  }
}

@media (min-width: 480px) {
  .hero__inner {
    width: min(100%, 29rem);
  }

  .hero__logo {
    width: min(22rem, 85vw);
  }

  .hero__ticker {
    font-size: clamp(1.12rem, 2.9vw, 1.3rem);
  }

  .hero__title {
    width: calc(100% + 1.15rem);
    font-size: clamp(4.35rem, 10.2vw, 5.5rem);
  }

  .hero__copy {
    width: calc(100% + 0.75rem);
    font-size: clamp(1.22rem, 3.15vw, 1.58rem);
  }

  .google-button {
    max-width: 17.6rem;
    font-size: clamp(0.95rem, 2.3vw, 1.12rem);
  }

  .hero__proof-image {
    width: min(10rem, 33vw);
  }
}

@media (min-width: 768px) {
  .landing {
    padding:
      calc(env(safe-area-inset-top, 0px) + 1.1rem)
      2rem
      calc(env(safe-area-inset-bottom, 0px) + 1.2rem);
  }

  .hero__inner {
    width: min(100%, 68rem);
  }

  .hero__logo {
    width: min(46rem, 66vw);
  }

  .hero__ticker {
    margin-top: 4.4rem;
    font-size: clamp(1.45rem, 1.95vw, 2.05rem);
  }

  .hero__title {
    margin-top: 2.8rem;
    font-size: clamp(6.15rem, 7.2vw, 8rem);
  }

  .hero__title span + span {
    margin-top: 0.72rem;
  }

  .hero__copy {
    margin-top: 2.55rem;
    font-size: clamp(2rem, 2.55vw, 2.7rem);
  }

  .hero__copy span + span {
    margin-top: 0.62rem;
  }

  .google-button {
    max-width: 27rem;
    margin-top: 2.7rem;
    padding: 1.2rem 1.75rem;
    gap: 1rem;
    font-size: clamp(1.28rem, 1.6vw, 1.65rem);
  }

  .google-button__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .hero__divider {
    width: 15rem;
    margin-top: 1.85rem;
  }

  .hero__proof {
    margin-top: 1.25rem;
  }

  .hero__proof-image {
    width: min(15rem, 22vw);
  }

  .hero__proof-caption {
    margin-top: 1.2rem;
    font-size: clamp(1.25rem, 1.35vw, 1.65rem);
  }
}

@media (min-width: 1200px) {
  .hero__inner {
    width: min(100%, 76rem);
  }

  .hero__logo {
    width: min(52rem, 56vw);
  }

  .hero__ticker {
    font-size: clamp(1.7rem, 1.55vw, 2.2rem);
  }

  .hero__title {
    font-size: clamp(6.9rem, 6.65vw, 8.9rem);
  }

  .hero__copy {
    font-size: clamp(2.2rem, 2.2vw, 2.85rem);
  }

  .google-button {
    max-width: 29rem;
    font-size: clamp(1.42rem, 1.35vw, 1.82rem);
  }

  .hero__proof-image {
    width: min(16rem, 18vw);
  }

  .hero__proof-caption {
    font-size: clamp(1.35rem, 1.1vw, 1.7rem);
  }
}
