:root {
  --bg: #000000;
  --bg-elevated: #0A0A0B;
  --surface: #151517;
  --border: #232326;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.68);
  --text-tertiary: rgba(255, 255, 255, 0.42);
  --accent: #FC3158;
  --accent-2: #30D178;
  --accent-3: #64D2FF;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-secondary);
}

.nav-links a {
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.nav-cta {
  color: var(--text-primary) !important;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 88px 0 64px;
  text-align: center;
}

.hero-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  margin: 0 auto 28px;
  box-shadow: 0 8px 40px rgba(252, 49, 88, 0.25);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(48, 209, 120, 0.1);
  border: 1px solid rgba(48, 209, 120, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}

h1 .accent {
  color: var(--accent);
}

.hero p.lede {
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 14px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: #3a3a3d;
}

.hero-note {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* Screenshot showcase */
.showcase {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 0 96px;
  flex-wrap: wrap;
}

.showcase img {
  width: 230px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showcase img:nth-child(2) {
  transform: translateY(-20px);
}

/* Sections */
section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 800;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}

.price-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(252, 49, 88, 0.08), rgba(252, 49, 88, 0.02));
  position: relative;
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}

.price-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0 0 12px;
  font-weight: 700;
}

.price-card .amount {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.price-card .amount span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-tertiary);
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card li {
  font-size: 14.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-card li::before {
  content: "✓";
  color: var(--accent-2);
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

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

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

/* Legal / simple content pages */
.page-hero {
  padding: 56px 0 24px;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 8px;
}

.page-hero .updated {
  color: var(--text-tertiary);
  font-size: 14px;
}

.content {
  padding: 24px 0 80px;
  max-width: 760px;
}

.content h2 {
  font-size: 21px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

.content h2:first-child {
  margin-top: 0;
}

.content p, .content li {
  color: var(--text-secondary);
  font-size: 15.5px;
}

.content ul {
  padding-left: 20px;
}

.content li {
  margin-bottom: 6px;
}

.content a {
  color: var(--accent-3);
  text-decoration: underline;
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 28px 0;
}

.contact-card a {
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
}

@media (max-width: 860px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-links {
    display: none;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .showcase img {
    width: 180px;
  }
  .showcase img:nth-child(2) {
    transform: none;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
