:root {
  --bg: #060b13;
  --surface: #0e1420;
  --text: #ffffff;
  --muted: #94a3b8;
  --outline: rgba(255, 255, 255, .08);
  --primary: #3b82f6;
  /* Vibrant Blue */
  --primary-dark: #2563eb;
  --accent: #cbd5e1;
  /* Silver/Slate */
  --shadow: 0 30px 100px rgba(0, 0, 0, .6);
  --shadow2: 0 15px 40px rgba(0, 0, 0, .4);
  --r: 24px;
}

[data-theme='light'] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --outline: rgba(15, 23, 42, .08);
  --shadow: 0 20px 60px rgba(15, 23, 42, .08);
  --shadow2: 0 10px 30px rgba(15, 23, 42, .06);
}

body.theme-transitioning,
body.theme-transitioning * {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px
}

.bg-glow {
  position: fixed;
  inset: 0;
  height: 100vh;
  background: radial-gradient(circle at 75% 30%, rgba(59, 130, 246, .15), transparent 45%),
    radial-gradient(circle at 25% 70%, rgba(203, 213, 225, .05), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

[data-theme='light'] .bg-glow {
  background: radial-gradient(circle at 75% 30%, rgba(59, 130, 246, .1), transparent 50%),
    radial-gradient(circle at 25% 70%, rgba(203, 213, 225, .08), transparent 50%);
}

.bg-dots {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(203, 213, 225, .08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: .15;
  pointer-events: none;
  z-index: -2;
}

[data-theme='light'] .bg-dots {
  background-image: radial-gradient(rgba(15, 23, 42, .08) 1.5px, transparent 1.5px);
}

/* Handled via data-theme above */

.header {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand.small .brand-mark {
  height: 38px;
  width: 38px;
  border-radius: 14px
}

.brand-mark {
  height: 46px;
  width: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: var(--shadow2);
}

.brand-name {
  font-weight: 800;
  letter-spacing: -.2px
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted)
}

.nav a:hover {
  color: var(--text)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(59, 130, 246, .2)
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #2563eb
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent)
}

.btn-ghost:hover {
  background: rgba(203, 213, 225, .05)
}

.theme-toggle {
  height: 38px;
  width: 38px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--outline);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.theme-toggle i {
  pointer-events: none;
}

.hero {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center
}

.hero-left {
  text-align: left
}

.hero-left h1 {
  font-size: 62px;
  margin-bottom: 20px;
  font-weight: 900
}

.hero-left p {
  font-size: 18px;
  max-width: 45ch;
  margin-bottom: 32px
}

@media (max-width:960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .hero-left h1 {
    font-size: 44px
  }

  .nav {
    display: none
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 200, 120, .12);
  border: 1px solid rgba(0, 200, 120, .22);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}

@media (prefers-color-scheme: light) {
  .pill {
    background: rgba(0, 200, 120, .1);
    border-color: rgba(0, 200, 120, .2)
  }
}

h1 {
  margin: 14px 0 12px;
  line-height: 1.05;
  font-size: 52px;
  letter-spacing: -1.3px
}

@media (max-width:560px) {
  h1 {
    font-size: 40px
  }
}

.grad {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch
}

.cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap
}

.cta-pills {
  justify-content: center
}

.btn-pill {
  border-radius: 999px;
  padding: 12px 16px
}

.btn-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  width: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  margin-right: 10px
}

.btn-ghost .btn-ic {
  background: rgba(16, 24, 40, .06)
}

@media (prefers-color-scheme: dark) {
  .btn-ghost .btn-ic {
    background: rgba(231, 234, 242, .10)
  }
}

.note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px
}

@media (max-width:560px) {
  .trust {
    grid-template-columns: 1fr
  }
}

.trust-item {
  padding: 12px 12px;
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px)
}

@media (prefers-color-scheme: dark) {
  .trust-item {
    background: rgba(15, 22, 37, .65)
  }
}

.trust-k {
  font-weight: 800;
  font-size: 13px
}

.trust-v {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px
}

.phone {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/2;
  border-radius: 40px;
  border: 8px solid #1a1f2b;
  background: #0c111b;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .8), 0 0 100px rgba(0, 255, 136, .12);
  margin: 0 auto;
  position: relative;
  color: #fff;
  /* Force white text inside phone */
}

[data-theme='light'] .phone {
  border-color: #e2e8f0;
  background: #fdfdfd;
  color: #0f172a;
  box-shadow: 0 50px 100px rgba(15, 23, 42, .08), 0 0 60px rgba(0, 255, 136, .1);
}

.phone-top {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #1e293b;
  margin-right: 8px;
}

[data-theme='light'] .dot {
  background: #e2e8f0;
}

.pill-mini {
  height: 6px;
  width: 40px;
  border-radius: 10px;
  background: #1e293b;
}

[data-theme='light'] .pill-mini {
  background: #e2e8f0;
}

.screen {
  height: calc(100% - 30px);
  overflow: hidden;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.screen-title {
  font-size: 16px;
  font-weight: 800;
}

.screen-sub {
  font-size: 11px;
  color: var(--muted);
}

.avatar {
  height: 32px;
  width: 32px;
  border-radius: 10px;
  background: var(--primary);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.tile {
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, .65)
}

@media (prefers-color-scheme: dark) {
  .tile {
    background: rgba(15, 22, 37, .55)
  }
}

.tile-ic {
  height: 30px;
  width: 30px;
  border-radius: 12px;
  background: rgba(0, 163, 137, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary2)
}

.tile-t {
  margin-top: 10px;
  font-weight: 900
}

.tile-s {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.mini-card {
  margin-top: 12px;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, .65)
}

@media (prefers-color-scheme: dark) {
  .mini-card {
    background: rgba(15, 22, 37, .55)
  }
}

.mini-title {
  font-weight: 900;
  margin-bottom: 8px
}

.mini-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  padding: 4px 0
}

.ok {
  color: var(--primary2);
  font-weight: 800
}

.dash-card {
  background: var(--primary);
  color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 14px;
  box-shadow: 0 10px 20px rgba(59, 130, 246, .2);
}

[data-theme='light'] .dash-card {
  box-shadow: 0 10px 20px rgba(59, 130, 246, .1);
}

.dash-card-t {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 700;
}

.dash-card-v {
  font-size: 28px;
  font-weight: 900;
  margin: 4px 0 10px;
}

.dash-tabs {
  display: flex;
  gap: 6px;
}

.tab {
  font-size: 10px;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  border-radius: 99px;
  font-weight: 700;
}

.recent-list {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 14px;
}

[data-theme='light'] .recent-list {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .05);
}

.recent-t {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--muted);
}

.recent-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-row:last-child {
  border-bottom: none;
}

.price-tag {
  font-weight: 800;
  color: var(--primary);
}

.hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center
}

.section {
  padding: 56px 0
}

.section-head {
  max-width: 720px
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -.7px
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px
}

@media (max-width:960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .grid {
    grid-template-columns: 1fr
  }
}

.card {
  border: 1px solid var(--outline);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .03);
  padding: 16px;
  backdrop-filter: blur(8px);
}

@media (prefers-color-scheme: light) {
  .card {
    background: rgba(0, 0, 0, .02)
  }
}

.card .ic {
  font-size: 20px
}

.card h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing: -.2px
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start
}

@media (max-width:960px) {
  .split {
    grid-template-columns: 1fr
  }
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted)
}

.dot2 {
  height: 10px;
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2))
}

.panel {
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(255, 255, 255, .65);
  padding: 16px;
}

@media (prefers-color-scheme: dark) {
  .panel {
    background: rgba(15, 22, 37, .55)
  }
}

.panel-top {
  font-weight: 900;
  margin-bottom: 10px
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--outline);
  color: var(--muted)
}

.panel-row:first-of-type {
  border-top: none
}

.badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(0, 200, 120, .12);
  border: 1px solid rgba(0, 200, 120, .22);
  padding: 6px 10px;
  border-radius: 999px
}

.badge2 {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary2);
  background: rgba(212, 175, 55, .12);
  border: 1px solid rgba(212, 175, 55, .22);
  padding: 6px 10px;
  border-radius: 999px
}

.badge3 {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--outline);
  padding: 6px 10px;
  border-radius: 999px
}

@media (prefers-color-scheme: light) {
  .badge3 {
    background: rgba(15, 23, 42, .05)
  }
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  max-width: 820px
}

.qa {
  border: 1px solid var(--outline);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  padding: 14px 16px
}

@media (prefers-color-scheme: light) {
  .qa {
    background: rgba(0, 0, 0, .02)
  }
}

.qa summary {
  cursor: pointer;
  font-weight: 900
}

.qa p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px
}

@media (max-width:760px) {
  .pricing {
    grid-template-columns: 1fr
  }
}

.price-card {
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(255, 255, 255, .03);
  padding: 16px
}

@media (prefers-color-scheme: light) {
  .price-card {
    background: rgba(0, 0, 0, .02)
  }
}

.price-card.featured {
  background: linear-gradient(135deg, rgba(0, 200, 120, .15), rgba(212, 175, 55, .08))
}

@media (prefers-color-scheme: light) {
  .price-card.featured {
    background: linear-gradient(135deg, rgba(0, 200, 120, .1), rgba(212, 175, 55, .05))
  }
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px
}

.price-name {
  font-weight: 900;
  font-size: 16px
}

.price-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px
}

.price {
  font-weight: 900;
  color: var(--text)
}

.price-list {
  margin: 14px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted)
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px
}

@media (max-width:960px) {
  .quotes {
    grid-template-columns: 1fr
  }
}

.quote {
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(255, 255, 255, .65);
  padding: 16px;
  margin: 0
}

@media (prefers-color-scheme: dark) {
  .quote {
    background: rgba(15, 22, 37, .55)
  }
}

.stars {
  color: var(--primary2);
  font-weight: 900;
  letter-spacing: 1px
}

.quote blockquote {
  margin: 10px 0 12px;
  color: var(--text);
  line-height: 1.6
}

.quote figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px
}

@media (max-width:760px) {
  .contact {
    grid-template-columns: 1fr
  }
}

.contact-card {
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(255, 255, 255, .65);
  padding: 16px;
  display: block
}

@media (prefers-color-scheme: dark) {
  .contact-card {
    background: rgba(15, 22, 37, .55)
  }
}

.contact-k {
  font-weight: 900
}

.contact-v {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700
}

.cta2 {
  padding-top: 10px
}

.cta2-card {
  border: 1px solid var(--outline);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(0, 200, 120, .12), rgba(212, 175, 55, .08));
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (prefers-color-scheme: light) {
  .cta2-card {
    background: linear-gradient(135deg, rgba(0, 200, 120, .1), rgba(212, 175, 55, .05))
  }
}

@media (max-width:760px) {
  .cta2-card {
    flex-direction: column;
    align-items: flex-start
  }
}

.cta2-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.5px
}

.cta2-card p {
  margin: 8px 0 0;
  color: var(--muted)
}

.cta2-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.footer {
  padding: 26px 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px
}

@media (max-width:760px) {
  .footer {
    flex-direction: column
  }
}

.footer-right {
  display: flex;
  gap: 14px
}

.footer-right a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px
}

.footer-right a:hover {
  color: var(--text)
}

.fine {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px
}