/* BandFrame site — shares the app's design tokens (src/theme/tokens.ts) */
:root {
  --bg: #0A0B0D;
  --surface: #121317;
  --surface2: #191B21;
  --surface3: #22252D;
  --hairline: rgba(255, 255, 255, 0.06);
  --hairline2: rgba(255, 255, 255, 0.10);
  --ink: #F2F3F5;
  --ink2: rgba(242, 243, 245, 0.72);
  --ink3: rgba(242, 243, 245, 0.46);
  --ink4: rgba(242, 243, 245, 0.28);
  --neon: #3DFFA6;
  --neon-soft: rgba(61, 255, 166, 0.18);
  --neon-glow: rgba(61, 255, 166, 0.45);
  --amber: #F59E0B;
  --red: #F43F5E;
  --blue: #818CF8;
  --pink: #EC4899;
  --r2: 12px;
  --r3: 18px;
  --r4: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink2);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink3);
}

a { color: var(--neon); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink3); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--neon);
  color: #062018 !important;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 10px;
}
.nav-cta:hover { text-decoration: none; filter: brightness(1.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 72px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 620px;
  background: radial-gradient(ellipse at center, rgba(61, 255, 166, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 44px rgba(61, 255, 166, 0.25);
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--neon); }
.hero p.sub {
  font-size: 19px;
  color: var(--ink3);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon);
  color: #062018;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 13px;
  box-shadow: 0 6px 28px rgba(61, 255, 166, 0.3);
}
.btn-primary:hover { text-decoration: none; filter: brightness(1.08); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--hairline2);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 13px;
}
.btn-secondary:hover { text-decoration: none; border-color: var(--neon-glow); }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--ink4); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-label { margin-bottom: 12px; }
.section-label .mono { color: var(--neon); }
h2.section-title {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
p.section-sub { color: var(--ink3); font-size: 17px; max-width: 620px; margin-bottom: 44px; }

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r3);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--hairline2); transform: translateY(-2px); }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 21px;
  border: 1px solid;
}
.card h3 { color: var(--ink); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--ink3); font-size: 14px; line-height: 1.6; }
.tint-neon  { background: rgba(61,255,166,0.12);  border-color: rgba(61,255,166,0.3) !important; }
.tint-pink  { background: rgba(236,72,153,0.12);  border-color: rgba(236,72,153,0.3) !important; }
.tint-amber { background: rgba(245,158,11,0.12);  border-color: rgba(245,158,11,0.3) !important; }
.tint-blue  { background: rgba(129,140,248,0.12); border-color: rgba(129,140,248,0.3) !important; }
.tint-red   { background: rgba(244,63,94,0.12);   border-color: rgba(244,63,94,0.3) !important; }

/* ---------- Screenshots ---------- */
.shots {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.phone {
  width: 250px;
  aspect-ratio: 9 / 19.2;
  border-radius: 34px;
  border: 1px solid var(--hairline2);
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; }
.phone-screen .ph-label { color: var(--ink); font-weight: 700; font-size: 15px; }
.phone-screen .ph-sub { color: var(--ink4); font-size: 11px; }
.ph-1 { background: linear-gradient(160deg, rgba(61,255,166,0.16), rgba(61,255,166,0.03) 60%), var(--surface2); }
.ph-2 { background: linear-gradient(160deg, rgba(236,72,153,0.16), rgba(236,72,153,0.03) 60%), var(--surface2); }
.ph-3 { background: linear-gradient(160deg, rgba(129,140,248,0.16), rgba(129,140,248,0.03) 60%), var(--surface2); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r4);
  padding: 32px 28px;
}
.price-card.featured {
  border-color: rgba(61, 255, 166, 0.4);
  box-shadow: 0 0 44px rgba(61, 255, 166, 0.08);
  position: relative;
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: #062018;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card h3 { color: var(--ink); font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.price-line { margin: 14px 0 4px; }
.price-line .amount { color: var(--ink); font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.price-line .period { color: var(--ink3); font-size: 15px; }
.price-alt { color: var(--neon); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.price-free-sub { color: var(--ink3); font-size: 13px; margin-bottom: 20px; }
.price-card ul { list-style: none; }
.price-card li {
  color: var(--ink2);
  font-size: 14px;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}
.price-card li.dim { color: var(--ink4); }
.price-card li.dim::before { content: '—'; color: var(--ink4); }
.pricing-note { text-align: center; color: var(--ink4); font-size: 12px; margin-top: 22px; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r4);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -40%, rgba(61, 255, 166, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--ink); font-size: clamp(26px, 4vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-band p { color: var(--ink3); margin-bottom: 28px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--hairline);
  padding: 44px 0;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--ink3); font-size: 14px; font-weight: 600; }
.footer-brand img { width: 22px; height: 22px; border-radius: 6px; opacity: 0.85; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--ink3); font-size: 13px; }
.footer-links a:hover { color: var(--ink); text-decoration: none; }
.footer-copy { width: 100%; text-align: center; color: var(--ink4); font-size: 11px; margin-top: 10px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Legal / content pages ---------- */
.page-header { padding: 72px 0 12px; }
.page-header h1 { color: var(--ink); font-size: clamp(30px, 5vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.page-header .meta { color: var(--ink3); font-size: 14px; }
.legal { padding: 24px 0 96px; }
.legal h2 { color: var(--ink); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 40px 0 12px; }
.legal h3 { color: var(--ink); font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink2); font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin: 6px 0; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal hr { border: none; border-top: 1px solid var(--hairline); margin: 36px 0; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--hairline); }
.legal th { color: var(--ink); font-weight: 600; }

/* ---------- Support ---------- */
.support-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r3);
  padding: 32px;
  margin: 20px 0;
}
.support-card h3 { color: var(--ink); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.support-card p { color: var(--ink3); font-size: 15px; }

@media (max-width: 640px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 48px; }
  section { padding: 52px 0; }
}
