@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --bg-top: #100A1A;
  --bg-bottom: #050508;
  --accent: #9141DC;
  --soft-accent: #321955;
  --hero-pink: #E84BA8;
  --hero-blue: #4BA3F5;
  --magenta: #D147A3;
  --purple: #6B2BB8;
  --card: #16161F;
  --elevated: #12121A;
  --success: #45D0B0;
  --warning: #FF9B6A;
  --danger: #FF5C7A;
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.72);
  --text-3: rgba(255, 255, 255, 0.50);
  --radius: 24px;
  --radius-input: 18px;
  --radius-pill: 999px;
  --font: "SF Pro Rounded", "Nunito", "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  background:
    radial-gradient(circle at 8% 92%, rgba(75, 163, 245, 0.10), transparent 40%),
    radial-gradient(circle at 88% 6%, rgba(209, 71, 163, 0.38), rgba(209, 71, 163, 0.10) 35%, transparent 70%),
    linear-gradient(180deg, rgba(107, 43, 184, 0.55) 0%, rgba(107, 43, 184, 0.18) 28%, transparent 55%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--hero-pink);
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav-wrap {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.nav {
  background: rgba(22, 22, 31, 0.42);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-pill);
  height: 64px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 72rem;
  position: relative;
  padding: 0 40px 0 16px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-text:hover {
  color: var(--text);
  opacity: 0.8;
}

.logo-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.desktop-nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  color: var(--text-2);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  background: none;
  border: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  right: 16px;
  background: var(--card);
  border-radius: 18px;
  padding: 6px;
  min-width: 160px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  flex-direction: column;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}

.mobile-menu a:hover {
  background: var(--soft-accent);
  color: var(--text);
}

main {
  flex: 1;
  padding: 160px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 48px;
}

.hero-tight {
  margin-bottom: 16px;
}

.hero-tight .page-title {
  margin-bottom: 12px;
}

.hero-tight .page-title:last-child {
  margin-bottom: 0;
}

.hero-tight .lede {
  margin-bottom: 0;
}

.hero h1,
.page-title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(90deg, var(--hero-pink), var(--accent), var(--hero-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.lede {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--text-2);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 16px 28px;
  background: linear-gradient(90deg, #E84BA8, #9141DC, #4BA3F5);
  box-shadow: 0 6px 12px rgba(209, 71, 163, 0.40);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(209, 71, 163, 0.55);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  padding: 28px;
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card p,
.prose p {
  margin: 0 0 16px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 600;
}

.card p:last-child,
.prose p:last-child {
  margin-bottom: 0;
}

.phone {
  position: relative;
  width: min(320px, 80vw);
  margin: 0 auto 24px;
}

.phone-frame {
  background: #050508;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45), 0 0 40px rgba(145, 65, 220, 0.18);
}

.phone-screen {
  background: var(--elevated);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-fallback {
  padding: 32px 20px;
  text-align: center;
}

.phone-fallback .score {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--hero-pink), var(--accent), var(--hero-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.phone-fallback .caption {
  margin-top: 8px;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
}

.prose {
  width: 100%;
  max-width: 48rem;
}

.prose h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.prose .meta {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 28px;
}

.prose h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.prose a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--hero-pink);
}

.prose a.btn-primary {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.prose a.btn-primary:hover {
  color: #fff;
}

.prose strong {
  color: var(--text);
  font-weight: 800;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-status {
  margin: 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px 4px;
}

input,
textarea {
  width: 100%;
  background: var(--elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-input);
  padding: 16px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-3);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.muted {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
}

.footer {
  padding: 64px 24px 80px;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer a {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
}

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

.footer-links {
  display: flex;
  gap: 40px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(69, 208, 176, 0.5);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #E84BA8, #9141DC, #4BA3F5);
  box-shadow: 0 6px 12px rgba(209, 71, 163, 0.40);
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .brand-group {
    display: none !important;
  }

  .logo-mobile {
    display: flex;
  }

  .hero h1,
  .page-title {
    font-size: 32px;
  }

  main {
    padding-top: 140px;
  }
}
