:root {
  --bg: #070a17;
  --bg-soft: #10152a;
  --panel: rgba(22, 28, 54, 0.72);
  --panel-border: rgba(112, 133, 255, 0.18);
  --text: #f8f8fb;
  --muted: #b3b7cb;
  --accent: #ff8b4b;
  --accent-soft: #ffd047;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 139, 75, 0.12), transparent 26%),
    radial-gradient(circle at 15% 80%, rgba(255, 208, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #090d1f 0%, #060811 60%, #05060d 100%);
  line-height: 1.5;
}

.page {
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 64px 0 40px;
  position: relative;
  z-index: 1;
}

.orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
}

.orb-left {
  left: -160px;
  bottom: -130px;
  background: #ff7b51;
}

.orb-right {
  right: -160px;
  top: -130px;
  background: #4b6fff;
}

.hero {
  text-align: center;
  margin-bottom: 42px;
}

.brand-logo {
  width: min(240px, 56vw);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.36em;
  font-size: 0.72rem;
  color: var(--accent-soft);
  font-weight: 700;
}

h1 {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6.6vw, 5.4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.subtitle {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.22rem);
}

.hero-download {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.hero-download a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-download a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-art {
  margin: 38px auto 0;
  width: min(690px, 92vw);
}

.hero-screenshot {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-strip {
  margin: 12px 0 52px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-strip article h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.feature-strip article p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.footer {
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer span {
  font-size: 0.84rem;
}

.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.legal-card {
  width: min(760px, 92vw);
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(12px);
  padding: 28px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.support-form {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.support-form label {
  color: var(--text);
  font-size: 0.9rem;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.support-form textarea {
  resize: vertical;
}

.support-error {
  margin: -4px 0 4px;
  min-height: 1.1em;
  color: #ffb5a0;
  font-size: 0.85rem;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: rgba(124, 199, 255, 0.8);
}

.support-form button {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 16px;
  font: inherit;
  cursor: pointer;
}

.support-form button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gradient-name {
  background: linear-gradient(90deg, #ff8b4b 0%, #ffd047 48%, #7cc7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.gradient-name-alt {
  background: linear-gradient(90deg, #7cc7ff 0%, #9e8cff 34%, #ffcf5a 68%, #ff8b4b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.inline-link {
  color: var(--text);
  text-decoration: none;
}

.inline-link:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.legal-back {
  margin-top: 16px;
  display: inline-flex;
  color: var(--text);
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}

.appstore-badge {
  width: 178px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-art {
    width: min(520px, 92vw);
    margin: 28px auto 0;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    justify-content: center;
  }
}
