:root {
  --navy: #061A36;
  --navy-light: #0A2C59;
  --blue: #0B5ED7;
  --blue-bright: #1677FF;
  --green: #39E67A;
  --green-dark: #21B85F;
  --bg-top: #071A35;
  --bg-bottom: #020B18;
  --card: #0B2446;
  --card-light: #10315B;
  --border: #21466F;
  --text-primary: #F8FAFF;
  --text-secondary: #B4C1D3;
  --text-muted: #8394AB;
  --warning: #FFC107;
  --danger: #FF5A67;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(2, 11, 24, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.2px;
}

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

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

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

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(22, 119, 255, 0.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--bg-bottom);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-toggle {
    display: block;
  }
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 230, 122, 0.1);
  border: 1px solid rgba(57, 230, 122, 0.35);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}

h1 .accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 12px 30px rgba(22, 119, 255, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--card);
  border-color: var(--border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--card-light);
}

.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
}

.store-badge .glyph {
  font-size: 20px;
}

.store-badge-app {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 9px 20px 9px 16px;
  border-radius: 12px;
  transition: filter 0.15s ease;
}

.store-badge-app:hover {
  filter: brightness(1.15);
}

.store-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.store-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.store-badge-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Section shell */
section {
  padding: 72px 0;
}

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

.section-label {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: linear-gradient(135deg, var(--card-light), var(--card));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(22, 119, 255, 0.16);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Alt band */
.band {
  background: rgba(11, 36, 70, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* CTA band */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(22,119,255,0.14), rgba(57,230,122,0.1));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 32px;
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 30px;
}

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 11px;
  font-weight: 600;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

/* Content pages (privacy, pricing text areas) */
.page-header {
  padding: 64px 0 20px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(30px, 4.4vw, 44px);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 0 60px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 16px;
}

.prose h2 {
  color: var(--text-primary);
  font-size: 22px;
  margin: 40px 0 12px;
}

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

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose strong {
  color: var(--text-primary);
}

.updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

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

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

.price-card {
  background: linear-gradient(135deg, var(--card-light), var(--card));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
}

.price-card.highlight {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 20px 40px rgba(57, 230, 122, 0.12);
}

.price-card .plan-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.price-card .plan-price {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 6px;
}

.price-card .plan-price span {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 700;
}

.price-card .plan-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.price-card li .check {
  color: var(--green);
  font-weight: 900;
}

.badge-beta {
  display: inline-block;
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: var(--warning);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: linear-gradient(135deg, var(--card-light), var(--card));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(57, 230, 122, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}

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

.contact-card .value {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
}
