@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

:root {
  --bg: #010102;
  --panel: #131416;
  --panel-2: #1c1d20;
  --text: #f7f8f2;
  --muted: #8c94a3;
  --lime: #b6ff3b;
  --cyan: #32e8ff;
  --violet: #8b42ff;
  --yellow: #ffd84d;
  --stroke: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 45vh),
    radial-gradient(circle at 25% 12%, rgba(182, 255, 59, 0.13), transparent 30vw),
    radial-gradient(circle at 80% 18%, rgba(50, 232, 255, 0.12), transparent 28vw),
    var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(247, 248, 242, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--lime);
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 28px 0 34px;
}

.hero-stage {
  width: min(640px, 100%);
  min-height: min(620px, calc(100vh - 170px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 7% 8% 16%;
  border: 1px solid var(--stroke);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(139, 66, 255, 0.15), transparent 46%),
    rgba(19, 20, 22, 0.58);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-2deg);
  z-index: 0;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.app-logo {
  width: clamp(112px, 19vw, 168px);
  height: clamp(112px, 19vw, 168px);
  border-radius: 32px;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 24px 80px rgba(182, 255, 59, 0.18);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 12vw, 132px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: 0;
}

.tagline {
  width: min(460px, 92%);
  margin: 22px auto 30px;
  color: rgba(247, 248, 242, 0.72);
  font-size: clamp(16px, 2.3vw, 22px);
  line-height: 1.45;
  font-weight: 600;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 10px 22px 10px 18px;
  border-radius: 18px;
  background: #f7f8f2;
  color: #010102;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(182, 255, 59, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(50, 232, 255, 0.17);
}

.apple-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #010102;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.button-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.button-copy small {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(1, 1, 2, 0.68);
}

.button-copy span {
  font-size: 18px;
  line-height: 1.1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  color: rgba(247, 248, 242, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: 54px;
}

.legal-wrap {
  width: min(840px, calc(100% - 40px));
  margin: 34px auto 0;
  padding: 38px;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 30%),
    rgba(19, 20, 22, 0.72);
}

.legal-wrap h1 {
  font-size: clamp(34px, 7vw, 72px);
  line-height: 0.95;
  margin-bottom: 12px;
}

.updated {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-wrap h2 {
  margin: 30px 0 10px;
  color: var(--lime);
  font-size: 18px;
  line-height: 1.25;
}

.legal-wrap p,
.legal-wrap li {
  color: rgba(247, 248, 242, 0.73);
  font-size: 15px;
  line-height: 1.75;
}

.legal-wrap ul {
  padding-left: 20px;
}

.support-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.support-list li {
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav,
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-stage {
    min-height: calc(100vh - 225px);
  }

  .hero-stage::before {
    inset: 5% 0 10%;
    border-radius: 28px;
  }

  .legal-wrap {
    width: min(100% - 28px, 840px);
    margin-top: 18px;
    padding: 24px;
    border-radius: 22px;
  }
}
