:root {
  --bg: #050816;
  --bg-soft: #0b1226;
  --surface: #111b34;
  --text: #f5f7ff;
  --muted: #8ea0be;
  --accent: #7c3aed;
  --accent-2: #22d3ee;
  --border: rgba(255,255,255,0.12);
}

html[data-theme="light"] {
  --bg: #f4f1ea;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --text: #152033;
  --muted: #56657f;
  --accent: #8a5a12;
  --accent-2: #2e6f8e;
  --border: rgba(21,32,51,0.12);
}

html[data-theme="light"] .hero .eyebrow,
html[data-theme="light"] .hero h1,
html[data-theme="light"] #trust .section-heading .eyebrow,
html[data-theme="light"] .quotes-heading .eyebrow,
html[data-theme="light"] .hero-panel .panel-card h3,
html[data-theme="light"] #waitlist .eyebrow {
  color: #000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 22%), var(--bg);
  transition: background-color 0.25s ease, color 0.25s ease;
  line-height: 1.7;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header .container { width: min(1440px, calc(100% - 2rem)); }
.site-header {
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); background: rgba(5,8,22,0.84); border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .site-header {
  background: rgba(244,241,234,0.9);
}
.nav-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; justify-content: flex-end; }
.brand { display: inline-flex; gap: 0.8rem; align-items: center; text-decoration: none; font-weight: 700; letter-spacing: 0.04em; font-size: 1.56rem; }
.brand img { width: 76px; height: 76px; object-fit: contain; }
.theme-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover { transform: translateY(-1px); opacity: 0.85; }
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
 .nav-links { display: flex; gap: 0.85rem; flex-wrap: nowrap; white-space: nowrap; }
 .nav-links a { color: var(--muted); text-decoration: none; font-size: 1.05rem; font-weight: 500; line-height: 1.2; }
.nav-links a:hover { color: var(--text); }
.soft-page .content-shell { max-width: 980px; }
.soft-page .lead { max-width: 760px; }
.soft-product-hero {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.soft-product-hero .eyebrow {
  margin-bottom: 0;
}
.soft-product-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}
.soft-product-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.soft-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}
.soft-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.soft-subnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
  font-weight: 600;
}
.soft-subnav a:hover {
  border-color: rgba(124,58,237,0.8);
}
.soft-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}
.platform-card,
.software-card,
.feature-card,
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  padding: 1.5rem;
}
.platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.platform-logo,
.software-logo {
  object-fit: contain;
  background: #081226;
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}
.platform-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}
.software-logo {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 22px;
}
.platform-card .platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.12);
  color: var(--text);
  font-weight: 800;
}
.platform-card h3,
.feature-card h3,
.software-card h2,
.info-card h2,
.soft-page h2 {
  margin: 0;
}
.platform-meta {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.platform-meta div {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.platform-meta strong {
  color: var(--text);
  min-width: 98px;
}
.soft-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.8rem 1rem;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  border: 1px solid transparent;
}
.soft-link-btn.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}
.feature-card p,
.software-card p,
.info-card p,
.software-card li,
.platform-card p,
.soft-page p,
.soft-page li {
  color: var(--muted);
}
.info-card ul,
.software-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}
.software-list { display: grid; gap: 1.25rem; }
.software-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.software-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.software-title-wrap { display: flex; flex-direction: column; gap: 0.55rem; }
.software-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.soft-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  background: rgba(124,58,237,0.12);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.software-card li + li { margin-top: 0.4rem; }
.software-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.25rem; }
.btn-download {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
}
.btn-secondary-soft {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.hero { padding: 5rem 0 4rem; }

@media (max-width: 860px) {
  .soft-platforms,
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
.eyebrow { display: inline-block; margin: 0 0 1rem; padding: 0.5rem 0.85rem; border-radius: 0; background: rgba(124,58,237,0.16); color: #d8b4fe; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero h1 { font-size: clamp(1.3rem, 2.3vw, 2.16rem); line-height: 1.3; margin: 0 0 1.2rem; text-align: left; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 760px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.15rem; border-radius: 0; text-decoration: none; font-weight: 700; border: 1px solid transparent; cursor: pointer; font: inherit; }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); color: white; }
.btn-secondary { border: 1px solid var(--border); color: var(--text); }
.btn-crm-ai {
  background: #19163e;
  border-color: #19163e;
  color: #000;
}
html[data-theme="light"] .btn-crm-ai {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-color: transparent;
  color: white;
}
.hero-panel .panel-card, .content-card, .waitlist-box, .card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 0; box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
.panel-card { padding: 1.8rem; }
.panel-card h3 { margin: 0 0 1.2rem; font-size: 1.5rem; line-height: 1.3; }
.panel-card ul { list-style: none; margin: 0; padding: 0; color: var(--muted); }
.panel-card li { position: relative; padding-left: 1.6rem; margin-bottom: 0.9rem; font-size: 1.1rem; line-height: 1.5; }
.panel-card li:last-child { margin-bottom: 0; }
.panel-card li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.section { padding: 2rem 0 4rem; }
.section-heading { margin-bottom: 1.4rem; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.card { padding: 1.25rem; }
.card h3 { margin-top: 0; margin-bottom: 0.5rem; }
.card p { margin: 0; color: var(--muted); }
.form-message { font-size: 0.95rem; line-height: 1.4; }
.form-message.success { color: #7ee081; }
.form-message.info { color: #8dd8ff; }
.form-message.error { color: #ff8a8a; }
.waitlist { padding-top: 0; }
.waitlist-heading { margin-bottom: 1rem; }
.waitlist-box { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.signup-form { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 360px; }
.signup-form input { width: 100%; border: 1px solid var(--border); background: rgba(255,255,255,0.08); color: var(--text); padding: 0.85rem 1rem; border-radius: 0; }
.signup-form button { width: 100%; border: 0; border-radius: 0; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); color: white; padding: 0.85rem 1rem; font-weight: 700; cursor: pointer; }
.site-footer { border-top: 1px solid var(--border); padding: 2rem 0 3rem; text-align: center; }
.site-footer p { margin: 0; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); }
.footer-grid a { display: block; margin-bottom: 0.4rem; color: var(--muted); text-decoration: none; }
.page { padding: 3rem 0 4rem; }
.content-shell { max-width: 900px; }
.content-card { padding: 1.4rem; margin-bottom: 1rem; }
.content-card h2 { margin-top: 0; }
.content-card a { color: #8dd8ff; }
.quotes-section { padding-top: 0; }
.quotes-heading { margin-bottom: 1rem; }
.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  padding: 1.3rem 1.35rem;
}
.quote-card-single {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.quote-card-visible { opacity: 1; transform: translateY(0); }
.quote-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.quote-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.crm-modal[hidden] { display: none; }
.crm-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.crm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 22, 0.76);
  backdrop-filter: blur(8px);
}
.crm-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 2rem;
  background: linear-gradient(180deg, rgba(17,27,52,0.98) 0%, rgba(8,14,30,0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.crm-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}
.crm-modal__eyebrow { margin-bottom: 0.75rem; }
.crm-modal__dialog h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}
.crm-modal__hours {
  margin: 1.25rem 0 0.35rem;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}
.crm-modal__timer {
  margin: 0;
  color: var(--accent-2);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.crm-modal-open { overflow: hidden; }
html[data-theme="light"] .crm-modal__dialog {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,241,234,0.98) 100%);
}
html[data-theme="light"] .crm-modal__hours,
html[data-theme="light"] .crm-modal__dialog h2,
html[data-theme="light"] .crm-modal__close {
  color: #152033;
}
html[data-theme="light"] .quote-card blockquote,
html[data-theme="light"] .quote-card p {
  color: #000;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .waitlist-box { flex-direction: column; align-items: flex-start; }
  .hero { padding: 3rem 0 2.5rem; }
}
@media (max-width: 620px) {
  .cards-grid { grid-template-columns: 1fr; }
  .site-header { backdrop-filter: blur(10px); }
  .nav-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
  }
  .header-actions {
    width: auto;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.5rem;
    justify-content: end;
  }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: min(260px, calc(100vw - 2rem));
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    justify-self: end;
    margin-top: 0.35rem;
    padding: 0.95rem 1rem;
    background: rgba(11,18,38,0.96);
    border: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(0,0,0,0.28);
  }
  .nav-links.is-open { display: flex; }
  html[data-theme="light"] .nav-links {
    background: rgba(255,255,255,0.98);
  }
  .nav-links a {
    width: 100%;
    font-size: 1rem;
    line-height: 1.35;
  }
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.28rem; line-height: 1.35; }
  .lead { font-size: 1rem; }
  .panel-card { padding: 1.2rem; }
  .panel-card h3 { font-size: 1.3rem; }
  .panel-card li { font-size: 1rem; }
  .content-card { padding: 1.1rem; }
  .content-card h2 { font-size: 1.25rem; }
  .content-card h3 { font-size: 1.1rem; }
  .waitlist-box { padding: 1.2rem; }
  .signup-form { max-width: 100%; }
  .brand img { width: 60px; height: 60px; object-fit: contain; }
  .brand img { width: 48px; height: 48px; object-fit: contain; }
  .brand {
    min-width: 0;
    gap: 0.55rem;
    font-size: 1rem;
  }
  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-actions { flex-direction: column; width: 100%; }
  .section { padding: 1.5rem 0 2.5rem; }
  .page { padding: 2rem 0 3rem; }
  .site-footer { padding: 1.5rem 0 2rem; }
  .theme-toggle { width: 40px; height: 40px; }
  .crm-modal__dialog { padding: 1.35rem; }
  .crm-modal__hours { line-height: 1.1; }
}
@media (max-width: 380px) {
  .container { width: calc(100% - 1.5rem); }
  .hero h1 { font-size: 1.12rem; }
  .eyebrow { font-size: 0.7rem; padding: 0.4rem 0.7rem; }
  .lead { font-size: 0.95rem; }
  .card { padding: 1rem; }
  .content-card { padding: 1rem; }
  .brand { font-size: 1.15rem; }
  .brand img { width: 50px; height: 50px; object-fit: contain; }
  .signup-form input, .signup-form button { padding: 0.75rem 0.9rem; }
}

.legal-note { font-size: 0.85rem; color: var(--muted); margin: 0.5rem 0 0; line-height: 1.5; }
.legal-note a { color: #8dd8ff; text-decoration: underline; }
.legal-note a:hover { color: #b8e6ff; }
