* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  background: #070710;
  color: #f8f4f6;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 17, 0.78), rgba(6, 7, 17, 0.92)),
    radial-gradient(circle at top, rgba(155, 108, 255, 0.22), transparent 48%),
    radial-gradient(circle at 20% 75%, rgba(248, 91, 169, 0.18), transparent 34%),
    url("./assets/hero-logo.png") center/cover no-repeat;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1080px, 92%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0 56px;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 12px 0 18px;
}

.hero-mark {
  width: min(280px, 48vw);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d7bcff;
}

.wordmark {
  margin: 0 0 10px;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 20%, #A78BFA 50%, #F472B6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro {
  width: min(720px, 100%);
  margin: 0 auto 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #d7d3e4;
}

.coming-soon {
  margin: 0 auto 22px;
  font-size: 0.98rem;
  font-weight: 600;
  background: linear-gradient(90deg, #FBBF24, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  width: min(240px, 100%);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 16, 30, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.65;
  text-decoration: none;
  color: #fff;
}

.store-btn.testflight {
  opacity: 1;
  border-color: rgba(88, 166, 255, 0.5);
  background: rgba(20, 40, 80, 0.7);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.store-btn.testflight:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 166, 255, 0.8);
  background: rgba(25, 50, 100, 0.85);
}

.store-btn.is-disabled {
  cursor: default;
}

.store-icon {
  width: 28px;
  text-align: center;
  font-size: 1.55rem;
}

.store-btn small,
.store-btn strong {
  display: block;
}

.store-btn small {
  font-size: 0.72rem;
  color: #b8b0ca;
}

.store-btn strong {
  font-size: 1rem;
  color: #f7f3f8;
}

.highlights {
  margin-top: 28px;
}

.highlight-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.highlight-band p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease;
}

.highlight-band p:hover {
  transform: translateY(-2px);
}

.highlight-band p:nth-child(1) {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.highlight-band p:nth-child(2) {
  background: linear-gradient(135deg, #F43F5E, #BE123C);
  border: 1px solid rgba(251, 113, 133, 0.3);
}

.highlight-band p:nth-child(3) {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.highlight-band p:nth-child(4) {
  background: linear-gradient(135deg, #10B981, #059669);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.shots {
  margin-top: 52px;
}

.shots h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #A78BFA, #F472B6, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
}

.phone-frame {
  flex: 0 0 auto;
  width: 205px;
  background: #0d1020;
  border-radius: 32px;
  border: 2px solid rgba(167, 139, 250, 0.2);
  box-shadow:
    0 0 0 6px #090b16,
    0 0 0 8px rgba(167, 139, 250, 0.1),
    0 28px 52px rgba(0, 0, 0, 0.62),
    0 0 40px rgba(167, 139, 250, 0.08);
  padding: 14px 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.phone-frame:hover {
  box-shadow:
    0 0 0 6px #090b16,
    0 0 0 8px rgba(167, 139, 250, 0.2),
    0 28px 52px rgba(0, 0, 0, 0.62),
    0 0 60px rgba(167, 139, 250, 0.15);
}

.phone-frame::before {
  content: "";
  display: block;
  width: 58px;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 0 auto 10px;
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.phone-frame:nth-child(1) {
  transform: rotate(-4deg) translateY(22px);
}

.phone-frame:nth-child(2) {
  width: 222px;
  z-index: 2;
}

.phone-frame:nth-child(3) {
  transform: rotate(4deg) translateY(22px);
}

.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 3;
}

.preview-card {
  display: flex;
  align-items: stretch;
}

.preview-copy-inner,
.preview-brand-inner {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.preview-copy-inner {
  background:
    radial-gradient(circle at top, rgba(111, 89, 245, 0.38), transparent 46%),
    linear-gradient(180deg, #151529, #0f1121);
}

.preview-brand-inner {
  background:
    radial-gradient(circle at bottom, rgba(247, 93, 162, 0.32), transparent 44%),
    linear-gradient(180deg, #171429, #0d1020);
}

.preview-icon {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto 18px;
  aspect-ratio: 1 / 1;
}

.preview-brand-mark {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 18px;
}

.preview-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
}

.preview-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #dbd3e8;
}

.site-footer {
  margin-top: 76px;
  padding: 20px 0 12px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 14px;
}

.footer-links a {
  color: #d8d0e6;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
  color: #ada7bc;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .highlight-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid {
    gap: 14px;
  }

  .phone-frame {
    width: 30vw;
    border-radius: 22px;
    padding: 8px 5px;
  }

  .phone-frame::before {
    width: 38px;
    height: 6px;
    margin-bottom: 6px;
  }

  .phone-frame img,
  .preview-copy-inner,
  .preview-brand-inner {
    border-radius: 16px;
  }

  .phone-frame:nth-child(2) {
    width: 34vw;
  }

  .preview-copy-inner,
  .preview-brand-inner {
    padding: 18px 14px;
  }
}

@media (max-width: 620px) {
  .page {
    width: min(94%, 540px);
    padding-top: 24px;
  }

  .intro {
    font-size: 0.96rem;
  }

  .highlight-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid {
    gap: 8px;
  }

  .phone-frame {
    width: 28vw;
    border-radius: 18px;
    padding: 6px 4px;
  }

  .phone-frame::before {
    width: 32px;
    height: 5px;
    margin-bottom: 5px;
  }

  .phone-frame img {
    border-radius: 12px;
  }

  .phone-frame:nth-child(2) {
    width: 32vw;
  }

  .preview-icon {
    width: 64px;
    height: 64px;
  }
}
