:root {
  --bg: #fffaf1;
  --bg-soft: #f5efe2;
  --ink: #102418;
  --muted: #5e6d61;
  --line: rgba(16, 36, 24, 0.1);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --green: #68cb63;
  --green-deep: #2a9d58;
  --teal: #1bc0b9;
  --orange: #ff8a22;
  --orange-deep: #f06212;
  --navy: #102b42;
  --shadow: 0 22px 60px rgba(27, 46, 34, 0.12);
}

html[data-theme="dark"] {
  --bg: #08111d;
  --bg-soft: #0d1725;
  --ink: #ecf4ff;
  --muted: #9eb4cf;
  --line: rgba(158, 180, 207, 0.18);
  --panel: rgba(12, 24, 42, 0.9);
  --panel-strong: rgba(13, 29, 52, 0.96);
  --green: #68cb63;
  --green-deep: #2fb96b;
  --teal: #1bc0b9;
  --orange: #ff9a3d;
  --orange-deep: #ff7c2a;
  --navy: #dcecff;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(104, 203, 99, 0.22), transparent 24rem),
    radial-gradient(circle at right center, rgba(27, 192, 185, 0.16), transparent 20rem),
    linear-gradient(180deg, #fffdf7 0%, #f5efe2 62%, #eef8ef 100%);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(104, 203, 99, 0.14), transparent 22rem),
    radial-gradient(circle at right center, rgba(27, 192, 185, 0.12), transparent 18rem),
    linear-gradient(180deg, #040b14 0%, #0b1830 62%, #10233a 100%);
}

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

img {
  max-width: 100%;
}

button,
.button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 241, 0.82);
  border-bottom: 1px solid rgba(16, 36, 24, 0.06);
}

html[data-theme="dark"] .site-header {
  background: rgba(8, 17, 29, 0.78);
  border-bottom-color: rgba(158, 180, 207, 0.12);
}

.site-nav {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(42, 157, 88, 0.24);
}

.site-menu,
.site-cta,
.hero-actions,
.hero-microproof,
.client-strip,
.row-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-menu {
  flex-wrap: wrap;
  justify-content: center;
}

.site-menu a {
  color: var(--muted);
  font-weight: 600;
}

.site-menu a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.3rem 0;
  border-radius: 999px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 20px 35px rgba(42, 157, 88, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(16, 36, 24, 0.12);
}

html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .button.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 36, 24, 0.1);
}

.button.compact {
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-deep);
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  color: #f5f9ff;
  background:
    radial-gradient(circle at top left, rgba(27, 192, 185, 0.18), transparent 18rem),
    linear-gradient(135deg, #102b42, #0c1f2f);
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(255, 138, 34, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.45);
}

.hero-section {
  padding: 2.4rem 0 4rem;
}

.hidden {
  display: none !important;
}

.hero-grid,
.split-section,
.devices-grid,
.proof-grid,
.footer-grid,
.trust-grid,
.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.proof-panel h2,
.cta-banner h2 {
  margin: 0;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  max-width: 9.5ch;
  letter-spacing: -0.045em;
}

.hero-lead,
.section-heading p,
.timeline-step p,
.feature-card p,
.device-card p,
.proof-panel p,
.faq-item p,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.68;
  margin: 1.1rem 0 0;
}

.hero-actions {
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.hero-microproof {
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.hero-microproof span,
.client-chip,
.price-tag,
.plan-badge,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.hero-microproof span {
  padding: 0.52rem 0.88rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 36, 24, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.floating-panel,
.trust-item,
.feature-card,
.pricing-card,
.device-card,
.proof-panel,
.faq-item,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.floating-panel {
  position: relative;
  padding: 1.3rem;
  overflow: hidden;
}

.panel-glow {
  background:
    radial-gradient(circle at top right, rgba(255, 138, 34, 0.24), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 239, 0.82));
}

html[data-theme="dark"] .panel-glow {
  background:
    radial-gradient(circle at top right, rgba(255, 138, 34, 0.2), transparent 11rem),
    linear-gradient(145deg, rgba(13, 29, 52, 0.96), rgba(12, 24, 42, 0.88));
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.live-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(104, 203, 99, 0.18);
}

.dashboard-card {
  margin-top: 1.2rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: #0f2430;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-card h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.68);
}

.price-tag {
  min-width: 5.7rem;
  min-height: 5.7rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(240, 98, 18, 0.28);
}

.mini-stat-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mini-stat-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .mini-stat-grid article,
html[data-theme="dark"] .hero-microproof span,
html[data-theme="dark"] .client-chip,
html[data-theme="dark"] .pricing-meta span {
  background: rgba(255, 255, 255, 0.08);
}

.mini-stat-grid strong {
  display: block;
  font-size: 1.6rem;
}

.mini-stat-grid span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
}

.client-strip {
  margin-top: 1rem;
  flex-wrap: wrap;
}

.client-chip {
  padding: 0.55rem 0.88rem;
  background: rgba(16, 36, 24, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.trust-band {
  padding: 0 0 2rem;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item,
.feature-card,
.device-card,
.proof-panel {
  padding: 1.35rem;
}

.icon-ring,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  font-weight: 800;
}

.icon-ring {
  color: var(--green-deep);
  background: rgba(104, 203, 99, 0.14);
}

.feature-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-icon {
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 138, 34, 0.14), rgba(27, 192, 185, 0.2));
}

.section-heading {
  max-width: 48rem;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.proof-panel h2,
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.row-heading {
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}

.split-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  font-weight: 800;
}

.timeline-step h3,
.trust-item h3,
.feature-card h3,
.pricing-card h3,
.device-card strong,
.faq-item summary,
.site-footer h3 {
  margin: 0 0 0.4rem;
}

.pricing-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  padding: 1.45rem;
  display: grid;
  gap: 1rem;
}

.pricing-card.featured {
  transform: translateY(-0.4rem);
  border-color: rgba(104, 203, 99, 0.35);
  background:
    radial-gradient(circle at top, rgba(104, 203, 99, 0.18), transparent 12rem),
    var(--panel-strong);
}

.plan-badge,
.status-chip {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.plan-badge {
  background: rgba(16, 36, 24, 0.06);
}

.status-chip {
  background: rgba(104, 203, 99, 0.14);
  color: var(--green-deep);
}

.pricing-topline,
.pricing-meta,
.pricing-actions,
.check-list,
.footer-grid {
  display: flex;
}

.pricing-topline,
.pricing-meta {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 0.45rem;
}

.plan-price strong {
  font-size: 3rem;
  line-height: 0.9;
}

.plan-price span,
.pricing-card p,
.plan-note,
.site-footer a,
.site-footer p {
  color: var(--muted);
}

.pricing-meta {
  flex-wrap: wrap;
}

.pricing-meta span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 36, 24, 0.05);
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-actions {
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pricing-actions .button {
  flex: 1 1 12rem;
}

.devices-grid,
.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.device-cards {
  display: grid;
  gap: 0.9rem;
}

.device-card strong {
  display: block;
  font-size: 1.1rem;
}

.accent-panel {
  background:
    radial-gradient(circle at top right, rgba(27, 192, 185, 0.18), transparent 12rem),
    linear-gradient(145deg, #112e46, #0a1d30);
  color: white;
}

.accent-panel .eyebrow,
.accent-panel .muted {
  color: rgba(255, 255, 255, 0.72);
}

.accent-panel blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.7;
}

.check-list {
  margin: 1.15rem 0 0;
  padding: 0;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
}

.cta-section {
  padding-top: 1rem;
}

.cta-banner {
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 34, 0.18), transparent 12rem),
    linear-gradient(135deg, #fff, #f2faef);
}

html[data-theme="dark"] .cta-banner {
  background:
    radial-gradient(circle at top left, rgba(255, 138, 34, 0.16), transparent 12rem),
    linear-gradient(135deg, rgba(13, 29, 52, 0.96), rgba(12, 24, 42, 0.88));
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(16, 36, 24, 0.06);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 20, 0.48);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(32rem, 100%);
  padding: 1.5rem;
  border-radius: 28px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 36, 24, 0.08);
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
}

.checkout-modal-card h2 {
  margin: 0;
  line-height: 1.02;
}

.checkout-auth-state,
.checkout-auth-forms,
.checkout-form,
.modal-copy {
  display: grid;
  gap: 1rem;
}

.checkout-user-chip,
.checkout-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-user-chip {
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(104, 203, 99, 0.12);
  border: 1px solid rgba(104, 203, 99, 0.24);
}

.checkout-tabs {
  margin-top: 0.25rem;
}

.checkout-tab {
  flex: 1 1 0;
  min-height: 2.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.checkout-tab.active {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  border-color: transparent;
}

.checkout-form label {
  display: grid;
  gap: 0.45rem;
}

.checkout-form span {
  font-weight: 700;
  color: var(--muted);
}

.checkout-form input {
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
}

html[data-theme="dark"] .checkout-form input,
html[data-theme="dark"] .checkout-tab,
html[data-theme="dark"] .modal-close {
  background: rgba(255, 255, 255, 0.06);
}

.checkout-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
}


.footer-grid {
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid > div {
  min-width: 0;
  flex: 1 1 0;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.skeleton-card .skeleton-line {
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 36, 24, 0.05), rgba(16, 36, 24, 0.11), rgba(16, 36, 24, 0.05));
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.skeleton-card .skeleton-line.large {
  height: 2.7rem;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .hero-grid,
  .split-section,
  .devices-grid,
  .proof-grid,
  .trust-grid,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .footer-grid {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-menu,
  .site-cta {
    width: 100%;
  }

  .site-menu {
    display: none;
    flex-direction: column;
    align-items: start;
    padding-bottom: 0.4rem;
  }

  .site-menu.open {
    display: flex;
  }

  .site-cta {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .site-cta .button {
    flex: 1 1 12rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }

  .mini-stat-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card,
  .pricing-topline,
  .pricing-actions,
  .row-heading {
    flex-direction: column;
    align-items: start;
  }

  .price-tag {
    min-width: 0;
    min-height: 0;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .section,
  .hero-section {
    padding-block: 4rem;
  }

  .button,
  .pricing-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions,
  .site-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card.featured {
    transform: none;
  }
}
