:root {
  --primary: #066fac;
  --primary-hover: #055a8c;
  --gold: #b8860b;
  --gold-light: #d4af37;
  --bg: #0c1219;
  --bg-2: #151d28;
  --surface: #ffffff;
  --text: #0f1724;
  --text-on-dark: #f8fafc;
  --muted: #5a6b7d;
  --muted-on-dark: #b8c5d4;
  --border: #d8e0ea;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(12, 18, 25, 0.18);
  --content: 1120px;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-display: Manrope, "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.5;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--content), calc(100% - 2.5rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: color-mix(in srgb, var(--primary) 10%, white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Nav —— */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1rem 0;
}

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

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img,
.nav-logo svg {
  height: 54px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links a {
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 1.05rem;
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: none;
  color: #fff;
}

.nav-cta {
  display: none;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-cta--demo-end {
  display: flex;
  margin-left: auto;
}

.nav-cta--demo-end .btn {
  white-space: nowrap;
}

@media (max-width: 420px) {
  .nav-cta--demo-end .btn {
    padding: 0.55rem 0.7rem;
    font-size: 0.8rem;
  }
}

.nav-cta .btn {
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1100px) {
  .nav-cta:not(.nav-cta--demo-end) {
    display: flex;
  }
}

.nav-mobile {
  display: none;
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 4.5rem;
  background: rgba(12, 18, 25, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: #fff;
  font-weight: 600;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text-on-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7.5rem 0 3rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.78) 0%, rgba(8, 14, 22, 0.62) 50%, rgba(8, 14, 22, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 14, 22, 0.55) 0%, rgba(8, 14, 22, 0.35) 40%, rgba(8, 14, 22, 0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 22ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-inner > *:not(.hero-media) {
  animation: heroRise 0.7s ease both;
}

.hero h1 { animation-delay: 0.08s; }
.hero-lead { animation-delay: 0.16s; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  justify-content: center;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: min(68rem, 100%);
  margin: 0.5rem auto 0;
  text-align: left;
  animation: heroRise 0.7s ease both;
  animation-delay: 0.28s;
}

@media (min-width: 700px) {
  .hero-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  .hero-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-feature-card {
  background: rgba(15, 28, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.2rem 1.15rem 1.3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 111, 172, 0.25);
  color: #9fd0ef;
  margin-bottom: 0.85rem;
}

.hero-feature-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.hero-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-more {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  animation: heroRise 0.7s ease both;
  animation-delay: 0.36s;
}

.hero-more a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.hero-more a:hover {
  color: #9fd0ef;
}

/* —— Sections —— */
section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.audience-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.audience-tabs button {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.audience-tabs button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #fff;
}

.feature-tile h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-hidden {
  display: none;
}

.panel-hidden.active {
  display: block;
}

.band {
  background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
}

/* —— Pricing —— */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.switch {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #cbd5e1;
  border: 0;
  position: relative;
  cursor: pointer;
}

.switch[aria-checked="true"] {
  background: var(--primary);
}

.switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s;
}

.switch[aria-checked="true"] span {
  transform: translateX(22px);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 800px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 25%, transparent);
}

.price-card .badge {
  align-self: flex-start;
  background: color-mix(in srgb, var(--primary) 12%, white);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.price-card .tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-card .amount small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.price-card li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.9rem;
  color: #334155;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.price-card .price-cta,
.price-card a.btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 800;
}

.price-card .price-cta:hover,
.price-card a.btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.addons {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

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

.compare-plans {
  margin-top: 1.75rem;
  text-align: center;
}

.compare-plans a {
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.compare-plans a:hover {
  text-decoration: underline;
}

.compare-section {
  margin: 2.75rem 0 0.25rem;
}

.compare-heading {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
}

.compare-lead {
  margin: 0 0 1.1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table thead th {
  background: color-mix(in srgb, var(--primary) 8%, white);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
}

.compare-table tbody th {
  text-align: left;
  font-weight: 700;
  color: #334155;
  width: 32%;
  background: #fafbfc;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: color-mix(in srgb, var(--primary) 4%, white);
}

.cmp-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 14%, white);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.cmp-no {
  color: #94a3b8;
  font-weight: 700;
}

.pricing-teaser-grid {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .pricing-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-teaser-card {
  text-align: center;
  padding: 1.35rem 1.25rem 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.pricing-teaser-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.pricing-teaser-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-teaser-card .btn {
  width: 100%;
  justify-content: center;
}

/* —— CTA band —— */
.cta-band {
  background: var(--bg);
  color: var(--text-on-dark);
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  color: var(--muted-on-dark);
}

.cta-band .hero-actions {
  justify-content: center;
}

/* —— Footer —— */
.site-footer {
  background: #0a1017;
  color: var(--muted-on-dark);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: var(--muted-on-dark);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Secondary / legal pages —— */
body.page-inner {
  background: #f7fafc;
}

.site-header--solid {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 16, 23, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.site-header--solid .nav-links a {
  color: var(--text-on-dark);
  opacity: 0.92;
}

.site-header--solid .nav-links a:hover {
  color: #fff;
  opacity: 1;
}

.site-header--solid .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.site-header--solid .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-header--solid .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.site-header--solid .nav-mobile {
  background: rgba(12, 18, 25, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header--solid .nav-mobile a {
  color: #fff;
}

.page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(6, 111, 172, 0.28), transparent 55%),
    linear-gradient(180deg, #0c1219 0%, #151d28 100%);
  padding: 3rem 0 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
}

.page-hero .store-group-label {
  color: #fff;
}

.page-body {
  padding: 2.5rem 0 4rem;
}

.prose {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 10px 30px rgba(12, 18, 25, 0.04);
  max-width: 48rem;
  margin: 0 auto;
}

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

.prose h1 {
  display: none;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.prose h3 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.prose p,
.prose li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.65;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.prose a {
  font-weight: 600;
}

.about-principles {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.about-principles li {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(90deg, rgba(6, 111, 172, 0.06), transparent);
}

.about-signoff {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--muted);
}

.about-signoff strong {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  color: var(--text);
}

/* —— Store badges —— */
.store-downloads {
  display: grid;
  gap: 1.25rem;
}

.store-group {
  display: grid;
  gap: 0.55rem;
}

.store-group-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.store-badges a {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}

.store-badges a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  text-decoration: none;
}

.store-badges img {
  height: 48px;
  width: auto;
}

.store-downloads--light .store-group-label {
  color: var(--muted);
}

.store-downloads--row {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .store-downloads--row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.cta-band .store-downloads {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}

/* —— Product feature details —— */
.feature-detail {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin: 0 0 3rem;
}

@media (min-width: 860px) {
  .feature-detail {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .feature-detail--flip .feature-detail-media {
    order: 2;
  }

  .feature-detail--flip .feature-detail-copy {
    order: 1;
  }
}

.feature-detail-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0c1219;
  aspect-ratio: 16 / 10;
}

.feature-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-detail-copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-detail-copy p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.feature-detail-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.feature-detail-copy li {
  position: relative;
  padding-left: 1.15rem;
  color: #334155;
  font-size: 0.95rem;
}

.feature-detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.product-hero-actions {
  margin-top: 1.5rem;
}

.teaser-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.teaser-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.teaser-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.teaser-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.teaser-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.teaser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.teaser-card .more {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

/* —— Services (Our Services style) —— */
.services {
  background: #fff;
  padding: 4.5rem 0;
}

.section-rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0.75rem auto 1rem;
  background: var(--primary);
  border-radius: 999px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 1.25rem;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  text-align: center;
  padding: 0.5rem 0.75rem 1rem;
}

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  min-height: 3.25rem;
  align-items: center;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 4.2rem;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.btn-read-more:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

/* —— Features & benefits —— */
.capabilities {
  background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
  padding: 4.5rem 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.capability-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  padding-bottom: 0.65rem;
  border-bottom: 2px solid color-mix(in srgb, var(--primary) 25%, white);
}

.capability-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.capability-col li {
  position: relative;
  padding-left: 1.1rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.45;
}

.capability-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary);
}

.capabilities-more {
  margin: 2.25rem 0 0;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.capabilities-more a {
  font-weight: 800;
}


.callout-note {
  padding: 0.85rem 1.1rem;
  background: #fff8e6;
  border-left: 4px solid #e6a800;
  margin: 0 0 1.5rem;
  color: #334155;
}

.sms-cta-example {
  max-width: 42rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: #f4f8fc;
}

.sms-cta-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.sms-cta-meta {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: #334155;
}

.page-pricing-cta {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
  text-align: center;
}

.page-pricing-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.page-pricing-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* —— Demo modal —— */
body.modal-open {
  overflow: hidden;
}

.demo-modal[hidden] {
  display: none !important;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 22, 0.55);
  backdrop-filter: blur(3px);
}

.demo-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(94vh, 920px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(8, 14, 22, 0.28);
  padding: 1.75rem 1.65rem 1.5rem;
}

.demo-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.demo-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.demo-modal-title {
  margin: 0 2rem 0.45rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.2;
}

.demo-modal-lead {
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 36ch;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

@media (min-width: 480px) {
  .demo-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f172a;
}

.demo-form .req {
  color: var(--primary);
  margin-left: 0.15rem;
}

.demo-form input {
  font: inherit;
  font-weight: 500;
  color: var(--text);
  border: 1.5px solid #d7dee8;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: #fff;
}

.demo-form input::placeholder {
  color: #94a3b8;
}

.demo-form input:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 35%, white);
  border-color: var(--primary);
}

.demo-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.35rem;
  border: none;
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 92%, white) 0%, var(--primary) 55%, var(--primary-hover) 100%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 38%, transparent);
}

.demo-submit:hover {
  filter: brightness(1.04);
}

.demo-form-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

.demo-form-phone a {
  color: inherit;
  text-decoration: none;
}

.demo-form-phone a:hover {
  color: var(--primary);
}

.demo-form-legal {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #94a3b8;
  text-align: center;
}

.demo-form-legal a {
  color: inherit;
  text-decoration: underline;
}

.demo-form-legal a:hover {
  color: var(--primary);
}

.demo-form-success {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 10%, white);
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

/* —— Support —— */
.support-contact {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
}

@media (min-width: 720px) {
  .support-contact {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }
}

.support-card {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
}

.support-card h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.support-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.support-email:hover {
  text-decoration: none;
  color: var(--primary-hover);
}

.support-hours {
  margin: 0;
  font-size: 0.92rem;
  color: #334155;
}

.faq-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: var(--radius-pill);
  background: #eef3f8;
  margin: 0 0 1.5rem;
}

.faq-tabs button {
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.faq-tabs button.active {
  background: var(--primary);
  color: #fff;
}

.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

.faq-section {
  margin: 0 0 1.75rem;
}

.faq-section h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: #f8fafc;
}

.faq-answer {
  padding: 0 1.1rem 1.05rem;
  color: #334155;
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 0 0 0.65rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  font-weight: 700;
}

/* —— Maintenance —— */
.page-maintenance {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, color-mix(in srgb, var(--primary) 35%, transparent), transparent 60%),
    linear-gradient(165deg, #0a1018 0%, #121a24 45%, #0c1219 100%);
  color: var(--text-on-dark);
}

.maintenance {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.maintenance-card {
  width: min(520px, 100%);
  text-align: center;
}

.maintenance-logo {
  display: block;
  margin: 0 auto 1.75rem;
  height: 54px;
  width: auto;
}

.maintenance-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary) 70%, white);
}

.maintenance-card h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.maintenance-lead {
  margin: 0 0 0.85rem;
  color: var(--muted-on-dark);
  font-size: 1.05rem;
  line-height: 1.55;
}

.maintenance-meta {
  margin: 0 0 1.5rem;
  color: #8fa0b3;
  font-size: 0.95rem;
}

.maintenance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.page-maintenance .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.page-maintenance .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.maintenance-contact {
  margin: 0;
  font-size: 0.9rem;
  color: #8fa0b3;
}

.maintenance-contact a {
  color: #dbe7f3;
  font-weight: 700;
  text-decoration: none;
}

.maintenance-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

