:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #f5f5f7;
  --card: #ffffff;
  --border: #d2d2d7;
  --border-soft: rgba(29, 29, 31, .08);
  --muted: #6e6e73;
  --soft: #86868b;
  --text: #1d1d1f;
  --purple: #6941f5;
  --purple-soft: #7657ee;
  --blue: #0071e3;
  --green: #168b55;
  --teal: #168b8b;
  --orange: #a85d00;
  --danger: #c93445;
  --radius: 28px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .08);
  --max: 1240px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(101,115,173,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101,115,173,.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.24) 55%, transparent);
}

.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7,10,19,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-image {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
  transform: translateY(5px);
}
.footer-logo { width: 165px; }
.product-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 11px;
  object-fit: contain;
}
.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -.04em;
}
.brand-copy small { display: block; color: var(--soft); font-size: .78rem; margin-top: 2px; }
.desktop-nav,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-nav a,
.footer-links a { color: var(--muted); font-size: .92rem; }
.nav-signin { color: #e6e9f2; font-size: .9rem; font-weight: 650; }
.desktop-nav a:hover,
.footer-links a:hover { color: var(--text); }

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7761ff;
  border-radius: 12px;
  background: linear-gradient(135deg, #7454ff, #4e33d1);
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.button:hover { filter: brightness(1.08); }
.button-secondary {
  background: #111827;
  border-color: #34415a;
  color: #d2d9e9;
}
.button-small { min-height: 42px; padding: 0 16px; font-size: .9rem; }
.full { width: 100%; }
.text-link { color: #a896ff; font-weight: 700; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #101725;
  cursor: pointer;
}
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: #d8ddec; border-radius: 999px; }
.mobile-menu {
  position: fixed;
  inset: 80px 0 auto;
  z-index: 29;
  padding: 20px 24px 28px;
  display: grid;
  gap: 14px;
  background: rgba(7,10,19,.98);
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  transition: transform .25s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:not(.button) { color: var(--muted); }

.hero {
  padding: 68px 0 54px;
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #aeb8cc;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero h1 {
  margin: 20px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 6.5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.hero h1 .hero-title-accent { color: #a996ff; }
.hero-text {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.66;
}
.hero-copy-stack { display: grid; gap: 11px; }
.hero-copy-stack p { margin: 0; }
.hero-copy-stack strong { color: #dfe5f5; font-weight: 650; }
.hero-tagline { color: #b5a7ff; font-weight: 750; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; }

.product-window {
  min-height: 650px;
  display: grid;
  grid-template-columns: 160px minmax(320px, 1fr) 190px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #070b15;
  box-shadow: var(--shadow);
}
.product-sidebar,
.details-panel {
  padding: 18px 14px;
  background: rgba(9,14,25,.96);
}
.product-sidebar { border-right: 1px solid var(--border); }
.details-panel { border-left: 1px solid var(--border); }
.product-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.product-brand strong { display: block; font-size: .9rem; }
.product-brand small { display: block; color: var(--soft); font-size: .64rem; margin-top: 2px; }
.sidebar-label { margin: 13px 8px 7px; color: #758099; font-size: .58rem; letter-spacing: .09em; }
.sidebar-item {
  width: 100%;
  padding: 9px 10px;
  margin: 2px 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #aeb7ca;
  text-align: left;
  font-size: .72rem;
}
.sidebar-item span { display: inline-block; width: 22px; }
.sidebar-item.active { color: white; background: linear-gradient(90deg,#334bd2,#5531b9); }
.layers { margin-top: 22px; padding-top: 10px; border-top: 1px solid #1a2233; }
.layers label { display: flex; align-items: center; gap: 8px; padding: 7px 8px; color: #aeb7c9; font-size: .67rem; }
.layers i { width: 8px; height: 8px; border-radius: 50%; }
.layers input { margin-left: auto; accent-color: var(--purple); }
.screen-dot { background: var(--blue); }
.action-dot { background: var(--purple-soft); }
.request-dot { background: var(--green); }
.group-dot { background: var(--teal); }
.local-card {
  margin-top: 28px;
  padding: 11px;
  border: 1px solid #234a3a;
  border-radius: 10px;
  background: #0d211d;
}
.local-card strong { display: flex; align-items: center; gap: 7px; font-size: .66rem; }
.local-card small { display: block; color: #729084; font-size: .58rem; margin: 5px 0 0 15px; line-height: 1.5; }
.product-main { min-width: 0; }
.product-topbar {
  min-height: 62px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: #080d17;
}
.product-topbar strong { display: block; font-size: .78rem; }
.product-topbar > div > span { display: flex; align-items: center; gap: 7px; margin-top: 4px; color: #7e889c; font-size: .57rem; }
.metric-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.metric-row span { padding: 6px 7px; border: 1px solid #1f293c; border-radius: 7px; color: #8893aa; font-size: .55rem; }
.metric-row b { color: #e9edff; }
.product-canvas {
  min-height: 588px;
  padding: 24px 22px;
  background-image:
    linear-gradient(rgba(30,42,66,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,42,66,.11) 1px, transparent 1px);
  background-size: 22px 22px;
}
.canvas-heading { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; margin-bottom: 24px; }
.canvas-heading span { display: block; color: #8b7cff; font-size: .56rem; letter-spacing: .11em; }
.canvas-heading strong { display: block; margin-top: 5px; font-size: .9rem; }
.canvas-heading small { color: var(--soft); font-size: .58rem; }
.journey-tree { position: relative; padding-left: 42px; display: grid; gap: 13px; }
.tree-axis { position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: rgba(118,82,255,.38); }
.journey-node {
  position: relative;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #2c3a53;
  border-radius: 10px;
  background: linear-gradient(145deg,#111a2b,#0c121e);
}
.journey-node::before { content: ""; position: absolute; left: -27px; top: 23px; width: 19px; height: 2px; background: rgba(118,82,255,.38); }
.journey-node::after { content: ""; position: absolute; left: -32px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: #8b75ff; }
.type-label { display: inline-block; padding: 3px 5px; border-radius: 5px; font-size: .48rem; font-weight: 800; letter-spacing: .07em; }
.screen-node .type-label { color: #82b9ff; background: #15325a; }
.action-node .type-label { color: #c6aeff; background: #35245f; }
.request-node .type-label { color: #75e5a9; background: #123a2a; }
.journey-node strong { display: block; margin-top: 7px; font-size: .72rem; }
.journey-node small { display: block; margin-top: 4px; color: #78859d; font-size: .56rem; }
.selected-node { border-color: #745aff; box-shadow: 0 0 0 1px rgba(116,90,255,.25); }
.request-branch { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-left: 40px; }
.branch-line { position: absolute; left: -18px; top: -13px; bottom: 22px; width: 2px; background: rgba(85,215,165,.28); }
.request-branch .journey-node::before { left: -20px; width: 12px; background: rgba(85,215,165,.28); }
.request-branch .journey-node::after { left: -25px; background: var(--green); }
.details-panel { overflow: hidden; }
.detail-card { margin-top: 14px; padding: 12px; border: 1px solid #29354c; border-radius: 10px; background: #101725; }
.detail-card span { color: #75e5a9; font-size: .52rem; }
.detail-card strong { display: block; margin: 7px 0 3px; font-size: .72rem; overflow-wrap: anywhere; }
.detail-card small { color: var(--soft); font-size: .56rem; line-height: 1.4; }
.detail-list { margin: 12px 0; padding: 7px 11px; border: 1px solid var(--border); border-radius: 10px; }
.detail-list div { padding: 8px 0; border-bottom: 1px solid #192234; }
.detail-list div:last-child { border: 0; }
.detail-list dt { color: #6f7b92; font-size: .49rem; text-transform: uppercase; }
.detail-list dd { margin: 4px 0 0; color: #cbd2e3; font-size: .59rem; overflow-wrap: anywhere; }
.detail-list .good { color: #69dda0; }
.detail-note { padding: 10px; border: 1px solid #214637; border-radius: 9px; background: #0d241d; color: #6fbf99; font-size: .55rem; line-height: 1.5; }

.section { padding-top: 100px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.value-panel h2,
.privacy-copy h2,
.contact-copy h2 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.section-heading p,
.privacy-copy p,
.contact-copy p { margin: 0; color: var(--muted); line-height: 1.75; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-card,
.capability-card,
.price-card,
.faq-item,
.contact-panel,
.value-panel,
.privacy-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(11,16,29,.9);
  box-shadow: var(--shadow);
}
.process-card { padding: 28px; }
.process-card > span { color: #8b7cff; font-family: var(--font-display); font-size: .8rem; }
.process-card h3 { margin: 32px 0 10px; font-size: 1.15rem; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .92rem; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.capability-card { padding: 25px; }
.capability-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 20px; font-weight: 800; }
.blue-icon { color: #82b9ff; background: #15325a; }
.purple-icon { color: #c6aeff; background: #35245f; }
.green-icon { color: #75e5a9; background: #123a2a; }
.teal-icon { color: #76ddd4; background: #123d3d; }
.neutral-icon { color: #c8d0df; background: #1a2233; }
.capability-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.capability-card p { margin: 0; color: var(--muted); line-height: 1.68; font-size: .9rem; }

.value-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; padding: 44px; }
.value-panel h2 { font-size: clamp(2rem, 4vw, 3rem); }
.value-list { display: grid; gap: 14px; }
.value-list article { padding: 18px 0; border-bottom: 1px solid var(--border); }
.value-list article:last-child { border-bottom: 0; }
.value-list strong { display: block; margin-bottom: 6px; }
.value-list span { color: var(--muted); line-height: 1.65; font-size: .9rem; }

.privacy-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; padding: 42px; border-color: #24493a; background: #0a1515; }
.privacy-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.privacy-copy .text-link { display: inline-block; margin-top: 20px; color: #72dba6; }
.privacy-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.privacy-facts div { padding: 18px; border: 1px solid #24493a; border-radius: 14px; background: #0c1b18; }
.privacy-facts strong { display: block; margin-bottom: 6px; font-size: .92rem; }
.privacy-facts span { color: #84a99a; line-height: 1.55; font-size: .82rem; }

.billing-toggle { width: max-content; margin: 0 auto 24px; padding: 7px; display: flex; gap: 7px; border: 1px solid var(--border); border-radius: 14px; background: #0c121f; }
.billing-button { min-height: 44px; padding: 0 16px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-weight: 700; cursor: pointer; }
.billing-button.active { color: white; background: #211b49; }
.billing-button .billing-label { color: inherit; font-size: inherit; }
.billing-button .billing-saving { margin-left: 7px; color: #bcb1ef; font-size: .72rem; }
.billing-note {
  max-width: 820px;
  margin: 0 auto 30px;
  color: var(--soft);
  font-size: .8rem;
  line-height: 1.65;
  text-align: center;
}
.billing-note a { color: #b5a7ff; text-decoration: underline; text-underline-offset: 3px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 350px)); justify-content: center; gap: 16px; }
.pricing-grid:has(.price-card:only-child) { grid-template-columns: minmax(0, 390px); }
.price-card { position: relative; display: flex; flex-direction: column; padding: 28px; }
.price-card.featured { border-color: #6552d2; }
.popular-badge { position: absolute; top: -12px; right: 22px; padding: 6px 10px; border-radius: 999px; background: #7454ff; font-size: .68rem; font-weight: 800; }
.plan-header { display: grid; gap: 4px; }
.plan-name { font-family: var(--font-display); font-size: 1.35rem; }
.plan-audience { color: var(--soft); font-size: .78rem; }
.price-line { display: flex; align-items: flex-end; gap: 5px; margin: 24px 0 12px; }
.price-line[hidden] { display: none !important; }
.currency { align-self: flex-start; color: var(--muted); font-size: 1.3rem; }
.price-value { font-family: var(--font-display); font-size: 3.8rem; line-height: .86; letter-spacing: -.07em; }
.price-suffix { color: var(--muted); font-size: .8rem; margin-bottom: 6px; }
.plan-trial { margin: 4px 0 16px; padding: 12px 13px; border: 1px solid #d9cffb; border-radius: 12px; background: #f5f2ff; color: #515154; font-size: .78rem; line-height: 1.55; }
.plan-trial strong { color: #5c35dc; }
.plan-description { min-height: 68px; color: var(--muted); line-height: 1.65; font-size: .88rem; }
.plan-list { padding: 0; margin: 20px 0 26px; display: grid; gap: 10px; list-style: none; color: #aab4c8; font-size: .86rem; }
.plan-list li::before { content: "✓"; margin-right: 9px; color: var(--green); }
.price-card .button { margin-top: auto; }

.contact-panel { padding: 42px; display: grid; grid-template-columns: 1fr 420px; gap: 42px; }
.contact-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-copy a { color: #a996ff; }
.contact-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.contact-tags span { padding: 8px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: .78rem; }
.contact-form { display: grid; gap: 13px; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: #090e19; }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-size: .78rem; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 0 13px; border: 1px solid #2a354b; border-radius: 9px; background: #0d1320; color: #e9edff; outline: none; }
.contact-form input,
.contact-form select { min-height: 46px; }
.contact-form textarea { padding-block: 12px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #7260ee; }
.form-note,
.form-message { margin: 0; font-size: .74rem; line-height: 1.5; }
.form-note { color: var(--soft); }
.form-message { color: var(--muted); min-height: 18px; }
.form-message.success { color: #8ee8bd; }
.form-message.error { color: #ff9aa7; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.contact-form button:disabled { opacity: .68; cursor: wait; }
.contact-form .consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #929eb4;
  line-height: 1.5;
}
.contact-form .consent-row input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--purple); }
.contact-form .consent-row a { color: #b5a7ff; text-decoration: underline; text-underline-offset: 2px; }

.faq-section { padding-bottom: 100px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 0 20px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 19px 0; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 20px; color: var(--muted); line-height: 1.7; }

.site-footer { padding: 26px 0 40px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; border-top: 1px solid var(--border); color: var(--soft); font-size: .8rem; }
.footer-links { justify-content: center; flex-wrap: wrap; }
.footer-brand .brand-copy strong { font-size: 1.08rem; }

.reveal { opacity: 1; transform: none; }
html.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
html.motion-ready .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.motion-ready .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1280px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-window { grid-template-columns: 180px minmax(420px,1fr); }
  .details-panel { display: none; }
  .capability-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,minmax(0,350px)); }
}

@media (max-width: 920px) {
  .brand-logo { width: 170px; }
  .desktop-nav,
  .nav-actions .button { display: none; }
  .menu-button { display: block; }
  .process-grid,
  .value-panel,
  .privacy-panel,
  .contact-panel { grid-template-columns: 1fr; }
  .privacy-facts { grid-template-columns: repeat(2,1fr); }
  .product-window { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
}

@media (max-width: 700px) {
  .brand-logo { width: 150px; }
  .footer-logo { width: 160px; }
  .shell { width: min(calc(100% - 24px), var(--max)); }
  .nav-wrap { min-height: 72px; }
  .mobile-menu { inset: 72px 0 auto; }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .hero-actions { flex-direction: column; }
  .product-window { min-height: auto; }
  .product-topbar { flex-direction: column; align-items: flex-start; }
  .metric-row { justify-content: flex-start; }
  .product-canvas { min-height: 620px; padding: 18px 14px; }
  .canvas-heading { align-items: flex-start; flex-direction: column; }
  .journey-tree { padding-left: 30px; }
  .tree-axis { left: 10px; }
  .journey-node::before { left: -20px; width: 12px; }
  .journey-node::after { left: -24px; }
  .request-branch { grid-template-columns: 1fr; margin-left: 18px; }
  .capability-grid,
  .pricing-grid,
  .privacy-facts { grid-template-columns: 1fr; }
  .value-panel,
  .privacy-panel,
  .contact-panel { padding: 26px 20px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* Account, authentication, and checkout experience */
[hidden] { display: none !important; }

.app-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(105, 65, 245, .09), transparent 30rem),
    radial-gradient(circle at 88% 80%, rgba(0, 113, 227, .07), transparent 32rem),
    #f7f7f9;
  color: #1d1d1f;
}
.app-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,.6), transparent 48%);
  z-index: -1;
}
.app-body .page-grid {
  opacity: .52;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.app-header {
  min-height: 76px;
  border-bottom: 1px solid rgba(29,29,31,.09);
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(22px);
}
.app-header-inner {
  width: min(calc(100% - 48px), 1180px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  font-size: 1.15rem;
  letter-spacing: -.035em;
}
.app-brand img { width: 36px; height: 36px; object-fit: contain; }
.app-nav { display: flex; align-items: center; gap: 25px; }
.app-nav > a { color: #6e6e73; font-size: .88rem; font-weight: 580; }
.app-nav > a:hover { color: #1d1d1f; }
.checkout-header-actions { display: flex; align-items: center; gap: 20px; }
.app-kicker {
  margin: 0;
  color: #6941f5;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.app-status {
  margin: 16px 0 0;
  padding: 11px 13px;
  border: 1px solid #dedee3;
  border-radius: 11px;
  background: #f6f6f8;
  color: #5d5d62;
  font-size: .82rem;
  line-height: 1.5;
}
.app-status.is-error { border-color: #f0cbd0; background: #fff4f5; color: #a42a38; }
.app-status.is-success { border-color: #c7e4d4; background: #f0faf4; color: #087b45; }
.app-notice {
  margin-bottom: 18px;
  padding: 13px;
  display: grid;
  gap: 4px;
  border: 1px solid #cfe4d7;
  border-radius: 12px;
  background: #f0f8f3;
  font-size: .82rem;
}
.app-notice strong { color: #087b45; }
.app-notice span { color: #557060; line-height: 1.45; }

.auth-main {
  width: min(calc(100% - 48px), 1120px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 34px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .75fr);
  gap: 72px;
  align-items: stretch;
}
.auth-main > *, .auth-story { min-width: 0; }
.auth-story { display: flex; flex-direction: column; }
.auth-story h1 {
  width: 100%;
  max-width: 720px;
  margin: 14px 0 18px;
  font-size: clamp(3.25rem, 5.4vw, 4.75rem);
  line-height: .96;
  letter-spacing: -.07em;
}
.auth-story h1 span {
  background: linear-gradient(100deg, #6030dc, #7562f1 48%, #0071e3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-story > p { width: 100%; max-width: 620px; margin: 0 0 30px; color: #6e6e73; font-size: 1rem; line-height: 1.62; overflow-wrap: break-word; }
.auth-assurances { width: 100%; max-width: 650px; margin-top: auto; border-top: 1px solid #dddde2; }
.auth-assurances > div { padding: 14px 2px; display: grid; grid-template-columns: 42px 1fr; gap: 16px; border-bottom: 1px solid #dddde2; }
.auth-assurances > div > span { color: #7657ee; font-size: .68rem; font-weight: 750; letter-spacing: .08em; }
.auth-assurances p { margin: 0; color: #6e6e73; font-size: .86rem; line-height: 1.55; }
.auth-assurances strong { display: block; margin-bottom: 2px; color: #1d1d1f; font-size: .92rem; }
.auth-card {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e4;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 80px rgba(29,29,31,.1);
}
.auth-card-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #f2efff, #eaf4ff);
  box-shadow: inset 0 0 0 1px rgba(105,65,245,.1);
}
.auth-card-mark img { width: 43px; height: 43px; object-fit: contain; }
.auth-card h2 { margin: 9px 0 10px; font-size: 2rem; letter-spacing: -.045em; }
.auth-card-copy { margin: 0 0 25px; color: #6e6e73; font-size: .91rem; line-height: 1.6; }
.google-button {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #cfcfd5;
  border-radius: 12px;
  background: #fff;
  color: #2b2b2f;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 9px rgba(0,0,0,.04);
}
.google-button:hover { border-color: #aaaab2; background: #fafafa; }
.google-mark {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 67%, #ea4335 0 84%, #4285f4 0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  font-weight: 850;
}
.auth-legal { margin: 18px 0 0; color: #86868b; font-size: .7rem; line-height: 1.55; text-align: center; }
.auth-legal a, .summary-disclosure a, .checkout-legal a { color: #5c35dc; text-decoration: underline; text-underline-offset: 2px; }
.auth-security-note { margin-top: auto; padding-top: 21px; display: flex; gap: 12px; border-top: 1px solid #e6e6ea; }
.auth-security-note > span { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 9px; background: #f0f8f3; color: #087b45; }
.auth-security-note p { margin: 0; color: #86868b; font-size: .74rem; line-height: 1.5; }
.auth-security-note strong { display: block; color: #515154; font-size: .77rem; }

.subscribe-main { width: min(calc(100% - 48px), 1100px); margin: 0 auto; padding: 26px 0 78px; }
.subscribe-heading { max-width: 720px; margin: 0 auto 23px; text-align: center; }
.subscribe-heading h1 { margin: 8px 0; font-size: clamp(2.35rem, 4.4vw, 3.6rem); line-height: .98; letter-spacing: -.06em; }
.subscribe-heading > p { max-width: 650px; margin: 0 auto; color: #6e6e73; line-height: 1.5; }
.subscribe-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .75fr); gap: 22px; align-items: start; }
.subscribe-plan, .subscribe-summary {
  border: 1px solid #dfdfe4;
  border-radius: 27px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 55px rgba(29,29,31,.07);
}
.subscribe-plan { padding: 26px 30px 18px; }
.subscribe-plan-selector { margin: 0 0 30px; padding: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; border: 1px solid #dedee3; border-radius: 15px; background: #f4f4f6; }
.subscribe-plan-selector button { min-height: 64px; padding: 10px 14px; display: grid; gap: 3px; border: 0; border-radius: 11px; background: transparent; color: #6e6e73; text-align: left; cursor: pointer; }
.subscribe-plan-selector button.is-selected { background: #fff; color: #1d1d1f; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.subscribe-plan-selector strong, .subscribe-plan-selector small { display: block; }
.subscribe-plan-selector strong { font-size: .92rem; }
.subscribe-plan-selector small { color: #86868b; font-size: .68rem; }
.subscribe-plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.subscribe-plan h2 { margin: 6px 0 0; font-size: 1.4rem; letter-spacing: -.04em; }
.plan-pill { padding: 7px 10px; border: 1px solid #ded5fb; border-radius: 999px; background: #f5f2ff; color: #5c35dc; font-size: .7rem; font-weight: 700; }
.subscribe-toggle { margin: 22px 0 17px; padding: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; border: 1px solid #dedee3; border-radius: 13px; background: #f4f4f6; }
.subscribe-toggle button { min-height: 45px; border: 0; border-radius: 9px; background: transparent; color: #6e6e73; font-weight: 700; cursor: pointer; }
.subscribe-toggle button.is-selected { background: #fff; color: #1d1d1f; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.subscribe-toggle .billing-label { color: inherit; font-size: inherit; }
.subscribe-toggle .billing-saving { margin-left: 7px; color: #6941f5; font-size: .67rem; }
.subscribe-price { min-height: 70px; display: flex; align-items: center; justify-content: center; gap: 7px; text-align: center; }
.subscribe-price > span { align-self: flex-start; margin-top: 12px; color: #6e6e73; font-size: 1.35rem; }
.subscribe-price strong { font-size: 4.2rem; line-height: 1; letter-spacing: -.08em; }
.subscribe-price small { color: #6e6e73; font-size: .75rem; line-height: 1.45; }
.subscribe-trial-card { margin: 22px 0 0; padding: 15px 17px; display: grid; gap: 5px; border: 1px solid #cfe4d7; border-radius: 13px; background: #f0f8f3; }
.subscribe-trial-card strong { color: #087b45; font-size: .88rem; }
.subscribe-trial-card span { color: #557060; font-size: .75rem; line-height: 1.55; }
.subscribe-features { margin: 20px 0 0; padding: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; border-top: 1px solid #e3e3e7; list-style: none; }
.subscribe-features li { display: flex; gap: 11px; }
.subscribe-features li > span { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; border-radius: 50%; background: #e9f7ef; color: #087b45; font-size: .69rem; font-weight: 800; }
.subscribe-features strong { display: block; margin-bottom: 4px; font-size: .86rem; }
.subscribe-features small { display: block; color: #86868b; font-size: .74rem; line-height: 1.5; }
.subscribe-feature-trial > span { background: #eeeafd !important; color: #5c35dc !important; }
.subscribe-feature-trial strong { color: #5c35dc; }
.subscribe-summary { position: sticky; top: 20px; padding: 26px; }
.summary-product { margin: 16px 0; padding-bottom: 15px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e3e3e7; }
.summary-icon { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border: 1px solid #dedee3; border-radius: 12px; background: #f7f7f9; }
.summary-icon img { width: 36px; height: 36px; object-fit: contain; }
.summary-product strong, .summary-product small { display: block; }
.summary-product strong { font-size: .92rem; }
.summary-product small { margin-top: 3px; color: #86868b; font-size: .72rem; }
.summary-line, .summary-total { display: flex; justify-content: space-between; gap: 20px; color: #6e6e73; font-size: .77rem; }
.summary-line { margin: 9px 0; }
.summary-line strong { color: #515154; }
.summary-trial-line { margin-top: 14px; padding-top: 14px; border-top: 1px solid #e3e3e7; }
.summary-trial-line strong { color: #087b45; }
.summary-total { margin: 16px 0 0; padding: 14px 0; border-top: 1px solid #e3e3e7; color: #1d1d1f; }
.summary-total strong { font-size: .72rem; }
.summary-user { margin: 0 0 12px; padding: 9px; border-radius: 10px; background: #f5f5f7; color: #6e6e73; font-size: .72rem; text-align: center; }
.subscribe-paddle-notice { margin: 12px 0 0; padding: 10px 11px; font-size: .72rem; }
.summary-disclosure { margin: 12px 0; color: #86868b; font-size: .67rem; line-height: 1.45; text-align: center; }
.summary-secure { padding-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; border-top: 1px solid #e3e3e7; color: #6e6e73; font-size: .7rem; text-align: center; }

.account-main { width: min(calc(100% - 48px), 1120px); margin: 0 auto; padding: 66px 0 110px; }
.user-chip { padding: 5px 7px 5px 5px; display: grid; grid-template-columns: 34px auto; grid-template-rows: 1fr 1fr; column-gap: 9px; border: 1px solid #dddde2; border-radius: 11px; background: #fff; color: #1d1d1f; text-align: left; cursor: pointer; }
.user-chip > span:first-child { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: #eeeafd; color: #5c35dc; font-size: .68rem; font-weight: 800; }
.user-chip > span:nth-child(2) { align-self: end; max-width: 110px; overflow: hidden; font-size: .7rem; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.user-chip i { align-self: start; max-width: 110px; overflow: hidden; color: #86868b; font-size: .61rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.user-chip[aria-busy="true"] { cursor: wait; opacity: .78; }
.user-chip[aria-busy="true"] > span:first-child { position: relative; color: transparent; }
.user-chip[aria-busy="true"] > span:first-child::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #cbc3f3;
  border-top-color: #5c35dc;
  border-radius: 50%;
  animation: app-spin .8s linear infinite;
}
.account-loading { min-height: 380px; display: grid; place-content: center; justify-items: center; gap: 14px; color: #6e6e73; }
.app-spinner { width: 30px; height: 30px; border: 3px solid #dedee3; border-top-color: #6941f5; border-radius: 50%; animation: app-spin .8s linear infinite; }
@keyframes app-spin { to { transform: rotate(360deg); } }
.account-page-status { max-width: 700px; margin: 0 auto 18px; text-align: center; }
.account-retry { margin: 0 auto; }
.account-heading { margin-bottom: 35px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.account-heading h1 { margin: 7px 0 9px; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -.065em; }
.account-heading > div > p:last-child { margin: 0; color: #6e6e73; }
.account-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 20px; align-items: stretch; }
.account-card { padding: 31px; border: 1px solid #dfdfe4; border-radius: 25px; background: rgba(255,255,255,.95); box-shadow: 0 15px 48px rgba(29,29,31,.06); }
.account-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.account-card-heading h2 { margin: 6px 0 0; font-size: 1.38rem; letter-spacing: -.04em; }
.subscription-badge, .profile-lock { padding: 7px 10px; border-radius: 999px; font-size: .67rem; font-weight: 750; }
.subscription-badge { background: #f1f1f3; color: #6e6e73; }
.subscription-badge[data-state="active"], .subscription-badge[data-state="trialing"] { background: #eaf7ef; color: #087b45; }
.subscription-badge[data-state="past_due"], .subscription-badge[data-state="paused"] { background: #fff4dd; color: #8a5c00; }
.subscription-badge[data-state="canceled"] { background: #fff0f2; color: #a42a38; }
.profile-lock { background: #f5f2ff; color: #5c35dc; }
.subscription-empty { min-height: 306px; padding: 26px 20px 5px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-orbit { width: 74px; height: 74px; margin-bottom: 18px; display: grid; place-items: center; border: 1px solid #dcd4fb; border-radius: 50%; background: #f7f4ff; box-shadow: 0 0 0 10px #fbfaff; }
.empty-orbit span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(145deg,#6941f5,#0071e3); color: #fff; font-weight: 800; }
.subscription-empty h3 { margin: 7px 0; font-size: 1.08rem; }
.subscription-empty p { max-width: 390px; margin: 0 0 20px; color: #6e6e73; font-size: .82rem; line-height: 1.55; }
.subscription-details { padding-top: 28px; }
.current-plan { padding: 23px; border: 1px solid #ded5fb; border-radius: 16px; background: linear-gradient(145deg,#faf8ff,#f3f7ff); }
.current-plan span, .current-plan small { display: block; color: #6e6e73; font-size: .7rem; }
.current-plan strong { display: block; margin: 6px 0; font-size: 2rem; letter-spacing: -.05em; }
.subscription-facts { margin: 15px 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.subscription-facts div { padding: 14px; border: 1px solid #e4e4e8; border-radius: 12px; background: #fafafa; }
.subscription-facts dt, .profile-facts dt { color: #86868b; font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; }
.subscription-facts dd, .profile-facts dd { margin: 5px 0 0; color: #1d1d1f; font-size: .82rem; font-weight: 650; }
.portal-note { margin: 10px 0 0; color: #86868b; font-size: .66rem; line-height: 1.45; text-align: center; }
.profile-identity { margin: 30px 0 24px; padding-bottom: 23px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #e4e4e8; }
.profile-avatar { width: 54px; height: 54px; flex: 0 0 54px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg,#6040d9,#3d78de); color: #fff; font-weight: 800; }
.profile-identity strong, .profile-identity span { display: block; }
.profile-identity strong { margin-bottom: 4px; font-size: .98rem; }
.profile-identity span { color: #6e6e73; font-size: .78rem; overflow-wrap: anywhere; }
.profile-facts { margin: 0; display: grid; gap: 1px; }
.profile-facts div { padding: 11px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #ededf0; }
.profile-facts div:last-child { border: 0; }
.profile-facts dd { text-align: right; }
.profile-note { margin-top: 20px; padding: 14px; display: flex; gap: 10px; border-radius: 12px; background: #f1f8f4; color: #42624e; }
.profile-note > span { color: #087b45; }
.profile-note p { margin: 0; font-size: .71rem; line-height: 1.5; }
.installations-section { margin-top: 50px; }
.installations-heading { margin-bottom: 20px; display: flex; justify-content: space-between; align-items: end; }
.installations-heading h2 { margin: 7px 0 7px; font-size: 2rem; letter-spacing: -.05em; }
.installations-heading > div > p:last-child { max-width: 650px; margin: 0; color: #6e6e73; font-size: .86rem; line-height: 1.55; }
.installations-card { overflow: hidden; border: 1px solid #dfdfe4; border-radius: 20px; background: rgba(255,255,255,.95); box-shadow: 0 12px 40px rgba(29,29,31,.05); }
.installation-columns, .installation-row { display: grid; grid-template-columns: 1.65fr 1fr .7fr .75fr; gap: 20px; align-items: center; }
.installation-columns { padding: 13px 20px; border-bottom: 1px solid #e3e3e7; background: #f5f5f7; color: #86868b; font-size: .62rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.installation-row { min-height: 82px; padding: 15px 20px; border-bottom: 1px solid #ededf0; }
.installation-row:last-child { border-bottom: 0; }
.installation-main { min-width: 0; display: flex; align-items: center; gap: 12px; }
.installation-icon { width: 39px; height: 39px; flex: 0 0 39px; display: grid; place-items: center; border: 1px solid #ded5fb; border-radius: 11px; background: #f7f4ff; color: #5c35dc; }
.installation-main strong, .installation-main small { display: block; }
.installation-main strong { max-width: 220px; overflow: hidden; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .76rem; text-overflow: ellipsis; }
.installation-main small, .installation-seen { margin-top: 4px; color: #86868b; font-size: .68rem; }
.installation-state { width: max-content; padding: 6px 8px; border-radius: 999px; background: #edf8f2; color: #087b45; font-size: .66rem; font-weight: 750; }
.installation-state i { width: 6px; height: 6px; margin-right: 4px; display: inline-block; border-radius: 50%; background: currentColor; }
.installation-state[data-state="revoked"] { background: #f1f1f3; color: #6e6e73; }
.revoke-button { justify-self: start; padding: 8px 10px; border: 1px solid #e0bfc4; border-radius: 9px; background: #fff; color: #a42a38; font-size: .67rem; font-weight: 700; cursor: pointer; }
.revoke-button:hover { background: #fff4f5; }
.revoke-button:disabled { border-color: #dedee3; color: #86868b; cursor: default; }
.installations-empty { padding: 55px 24px; text-align: center; }
.installations-empty > div { width: 50px; height: 50px; margin: 0 auto 15px; display: grid; place-items: center; border-radius: 14px; background: #f1eefc; color: #6941f5; }
.installations-empty h3 { margin: 0 0 6px; }
.installations-empty p { margin: 0; color: #6e6e73; font-size: .82rem; }
.app-dialog { width: min(calc(100% - 32px), 470px); padding: 0; border: 0; border-radius: 24px; background: #fff; color: #1d1d1f; box-shadow: 0 30px 100px rgba(0,0,0,.28); }
.app-dialog::backdrop { background: rgba(20,20,24,.42); backdrop-filter: blur(5px); }
.app-dialog form { padding: 34px; }
.dialog-icon { width: 45px; height: 45px; margin-bottom: 20px; display: grid; place-items: center; border-radius: 13px; background: #fff0f2; color: #b72f3f; font-size: 1.1rem; font-weight: 850; }
.app-dialog h2 { margin: 7px 0 10px; font-size: 1.5rem; letter-spacing: -.04em; }
.app-dialog form > p:not(.app-kicker):not(.app-status) { margin: 0; color: #6e6e73; font-size: .86rem; line-height: 1.6; }
.dialog-actions { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.danger-button { border-color: #c93445; background: #c93445; }

.checkout-header { background: rgba(255,255,255,.92); }
.checkout-secure-label { display: flex; align-items: center; gap: 8px; color: #6e6e73; font-size: .75rem; font-weight: 650; white-space: nowrap; }
.checkout-secure-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f7ef;
  color: #087b45;
  line-height: 1;
}
.checkout-secure-icon svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.checkout-main { width: min(calc(100% - 48px), 1080px); margin: 0 auto; padding: 38px 0 82px; display: grid; grid-template-columns: minmax(280px,.72fr) minmax(420px,1fr); gap: 46px; align-items: start; }
.back-link { display: inline-block; margin-bottom: 25px; color: #6e6e73; font-size: .78rem; font-weight: 650; }
.checkout-trial-value { width: fit-content; margin: 9px 0 0 !important; padding: 6px 9px; border: 1px solid #d9cffb; border-radius: 999px; background: #f5f2ff; color: #5c35dc !important; font-size: .68rem; font-weight: 800; letter-spacing: .08em; line-height: 1.2 !important; }
.checkout-context h1 { margin: 10px 0 14px; font-size: clamp(2.8rem,5vw,4.2rem); line-height: .98; letter-spacing: -.065em; }
.checkout-context > p:not(.app-kicker):not(.checkout-legal) { margin: 0; color: #6e6e73; line-height: 1.65; }
.checkout-order { margin: 27px 0 22px; padding: 18px 0; display: flex; justify-content: space-between; gap: 20px; border-block: 1px solid #dddde2; }
.checkout-order div span, .checkout-order div strong { display: block; }
.checkout-order div span { margin-bottom: 4px; font-size: .85rem; font-weight: 750; }
.checkout-order div strong, .checkout-order > span { color: #86868b; font-size: .7rem; font-weight: 500; }
.checkout-points { padding: 0; display: grid; gap: 12px; list-style: none; color: #515154; font-size: .79rem; }
.checkout-points span { margin-right: 8px; color: #087b45; }
.checkout-legal { margin-top: 25px; color: #86868b; font-size: .69rem; line-height: 1.55; }
.checkout-panel { min-height: 600px; padding: 28px; border: 1px solid #dfdfe4; border-radius: 26px; background: #fff; box-shadow: 0 22px 65px rgba(29,29,31,.09); }
.checkout-panel-heading { padding-bottom: 21px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid #e5e5e8; }
.checkout-panel-heading h2 { margin: 6px 0 0; font-size: 1.25rem; letter-spacing: -.035em; }
.checkout-panel-heading > span { align-self: center; padding: 6px 9px; border-radius: 8px; background: #f0f2f5; color: #52606f; font-size: .65rem; font-weight: 800; }
.checkout-processor-note { margin-top: 20px; padding: 14px 15px; display: flex; gap: 10px; border: 1px solid #cfe8da; border-radius: 13px; background: #f1f8f4; color: #42624e; }
.checkout-processor-note > .checkout-secure-icon { margin-top: 1px; }
.checkout-processor-note p { margin: 0; font-size: .72rem; line-height: 1.55; }
.checkout-processor-note strong { color: #245139; }
.checkout-status { margin: 20px 0; }
.paddle-checkout-frame { min-width: 312px; margin-top: 20px; }
.checkout-fallback { padding: 42px 16px; text-align: center; }
.checkout-fallback p { max-width: 420px; margin: 0 auto 22px; color: #6e6e73; font-size: .85rem; line-height: 1.6; }
.checkout-fallback > div { display: flex; justify-content: center; gap: 9px; }

.welcome-main { width: min(calc(100% - 48px), 900px); min-height: calc(100vh - 76px); margin: 0 auto; padding: 72px 0; display: grid; place-items: center; }
.welcome-card { width: 100%; padding: 55px; border: 1px solid #dfdfe4; border-radius: 30px; background: rgba(255,255,255,.95); box-shadow: 0 24px 80px rgba(29,29,31,.09); text-align: center; }
.welcome-visual { position: relative; width: 102px; height: 102px; margin: 0 auto 30px; display: grid; place-items: center; }
.welcome-visual > span { position: relative; z-index: 2; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 17px; background: linear-gradient(145deg,#6941f5,#0071e3); box-shadow: 0 12px 30px rgba(92,53,220,.25); color: #fff; font-size: 1.25rem; font-weight: 850; }
.welcome-visual i { position: absolute; inset: 0; border: 1px solid rgba(105,65,245,.2); border-radius: 50%; animation: welcome-pulse 2.4s ease-out infinite; }
.welcome-visual i:nth-child(3) { animation-delay: .8s; }
.welcome-visual i:nth-child(4) { animation-delay: 1.6s; }
@keyframes welcome-pulse { 0% { transform: scale(.55); opacity: .9; } 100% { transform: scale(1.15); opacity: 0; } }
.welcome-card h1 { margin: 10px 0 14px; font-size: clamp(2.6rem,5vw,4.2rem); line-height: 1; letter-spacing: -.065em; }
.welcome-card > p:not(.app-kicker):not(.app-status):not(.welcome-note) { max-width: 630px; margin: 0 auto; color: #6e6e73; line-height: 1.65; }
.activation-progress { margin: 42px 0 30px; display: grid; grid-template-columns: 1fr 50px 1fr 50px 1fr; align-items: start; }
.activation-progress > div { display: grid; justify-items: center; gap: 10px; }
.activation-progress > div > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #d6d6dc; border-radius: 50%; background: #fff; color: #86868b; font-size: .75rem; font-weight: 800; }
.activation-progress > div[data-state="complete"] > span { border-color: #17824f; background: #17824f; color: #fff; }
.activation-progress > div[data-state="current"] > span { border-color: #6941f5; background: #6941f5; box-shadow: 0 0 0 6px #eeeafd; color: #fff; }
.activation-progress > i { height: 1px; margin-top: 17px; background: #d9d9df; }
.activation-progress p { margin: 0; }
.activation-progress strong, .activation-progress small { display: block; }
.activation-progress strong { font-size: .78rem; }
.activation-progress small { margin-top: 4px; color: #86868b; font-size: .65rem; }
.welcome-status { max-width: 580px; margin: 0 auto; }
.welcome-actions { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.text-action { color: #5c35dc; font-size: .82rem; font-weight: 700; }
.welcome-note { max-width: 650px; margin: 32px auto 0; padding-top: 23px; border-top: 1px solid #e3e3e7; color: #86868b; font-size: .67rem; line-height: 1.55; }

@media (prefers-reduced-motion: reduce) {
  .app-spinner, .welcome-visual i { animation: none; }
}

@media (max-width: 900px) {
  .auth-main { grid-template-columns: 1fr; gap: 50px; }
  .auth-story { text-align: center; }
  .auth-story > p, .auth-assurances { margin-inline: auto; }
  .auth-assurances { text-align: left; }
  .auth-card { width: min(100%, 480px); margin: 0 auto; }
  .subscribe-layout, .account-grid, .checkout-main { grid-template-columns: 1fr; }
  .subscribe-summary { position: static; }
  .checkout-main { max-width: 650px; gap: 32px; }
  .back-link { margin-bottom: 25px; }
  .installation-columns { display: none; }
  .installation-row { grid-template-columns: 1.4fr 1fr; }
  .installation-state, .revoke-button { justify-self: start; }
}

@media (max-width: 640px) {
  .app-header, .app-header-inner { min-height: 64px; }
  .app-header-inner { width: min(calc(100% - 30px), 1180px); }
  .app-nav > a { display: none; }
  .app-brand img { width: 32px; height: 32px; }
  .auth-main, .subscribe-main, .account-main, .checkout-main, .welcome-main { width: min(calc(100% - 30px), 1120px); padding-block: 42px 65px; }
  .subscribe-main { padding-block: 24px 55px; }
  .auth-main { gap: 36px; }
  .auth-story h1 { font-size: clamp(2.65rem,11.5vw,3.55rem); line-height: .98; letter-spacing: -.06em; }
  .auth-story > p { font-size: .94rem; }
  .auth-assurances { margin-top: 30px; }
  .auth-card, .subscribe-plan, .subscribe-summary, .account-card, .checkout-panel, .welcome-card { padding: 25px; border-radius: 21px; }
  .subscribe-heading { margin-bottom: 22px; }
  .subscribe-heading h1 { font-size: 2.45rem; }
  .subscribe-plan-top, .account-heading { align-items: flex-start; flex-direction: column; }
  .subscribe-toggle { grid-template-columns: 1fr; }
  .subscribe-price strong { font-size: 4.2rem; }
  .subscribe-features { grid-template-columns: 1fr; }
  .account-heading .button { width: 100%; }
  .account-nav { gap: 0; }
  .user-chip > span:nth-child(2), .user-chip i { display: none; }
  .user-chip { display: block; padding: 4px; }
  .subscription-facts { grid-template-columns: 1fr; }
  .installation-row { padding: 18px; grid-template-columns: 1fr; gap: 13px; }
  .installation-seen { margin-left: 51px; }
  .installation-state, .revoke-button { margin-left: 51px; }
  .dialog-actions { grid-template-columns: 1fr; }
  .checkout-context h1 { font-size: 3rem; }
  .checkout-order { align-items: flex-start; flex-direction: column; }
  .checkout-panel { min-height: 480px; }
  .paddle-checkout-frame { min-width: 0; }
  .checkout-fallback > div, .welcome-actions { align-items: stretch; flex-direction: column; }
  .activation-progress { grid-template-columns: 1fr; gap: 14px; }
  .activation-progress > i { width: 1px; height: 22px; margin: 0 auto; }
  .welcome-card h1 { font-size: 2.8rem; }
}

/* Cloudflare Pages custom 404 */
.error-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.error-shell {
  width: min(calc(100% - 36px), 820px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
}

.error-brand {
  display: inline-flex;
  justify-self: center;
}

.error-brand img {
  display: block;
  width: 190px;
  height: auto;
}

.error-card {
  width: 100%;
  padding: clamp(34px, 7vw, 64px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(16, 23, 40, .96), rgba(8, 13, 24, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  text-align: center;
}

.error-code {
  margin-bottom: 14px;
  color: #8975ff;
  font: 700 clamp(4.8rem, 15vw, 8rem)/.9 var(--font-display);
  letter-spacing: -.08em;
}

.error-card .eyebrow {
  margin-inline: auto;
}

.error-card h1 {
  max-width: 620px;
  margin: 18px auto 14px;
  font: 700 clamp(2.15rem, 6vw, 3.6rem)/1.02 var(--font-display);
  letter-spacing: -.055em;
}

.error-card p {
  max-width: 570px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.error-footnote {
  margin: 0;
  color: var(--soft);
  font-size: .78rem;
  text-align: center;
}

/* Shared legal pages */
.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -20%, rgba(83, 69, 178, .22), transparent 34%),
    linear-gradient(180deg, #080d18 0%, var(--bg) 100%);
  color: var(--text);
}

.legal-body a { color: #b7a8ff; text-decoration-color: rgba(183,168,255,.45); text-underline-offset: 3px; }
.legal-body a:hover { color: #ddd6ff; }

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7, 11, 21, .88);
  backdrop-filter: blur(14px);
}

.legal-header-inner,
.legal-main,
.legal-footer-inner {
  width: min(calc(100% - 40px), 960px);
  margin: 0 auto;
}

.legal-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text) !important; text-decoration: none; font-weight: 750; }
.legal-brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: contain; }
.legal-back { color: var(--muted) !important; text-decoration: none; font-size: .9rem; }

.legal-main { padding: 72px 0 96px; }
.legal-kicker { margin: 0 0 13px; color: var(--purple-soft); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.legal-main h1,
.legal-main h2,
.legal-main h3 { font-family: var(--font-display); line-height: 1.16; letter-spacing: -.035em; }
.legal-main h1 { max-width: 820px; margin: 0; font-size: clamp(2.7rem, 7vw, 4.8rem); }
.legal-intro { max-width: 800px; margin: 22px 0 0; color: var(--muted); font-size: 1.06rem; line-height: 1.72; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 24px 0 0; color: var(--soft); font-size: .88rem; }
.legal-summary { margin: 42px 0 0; padding: 25px; border: 1px solid #484080; border-radius: 19px; background: linear-gradient(145deg, rgba(24, 28, 57, .82), rgba(13, 20, 34, .92)); }
.legal-summary strong { display: block; margin-bottom: 8px; color: #d9d2ff; }
.legal-summary p { margin: 0; color: #bec7da; line-height: 1.7; }
.legal-toc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 26px 0 54px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: rgba(13, 20, 34, .66); }
.legal-toc a { padding: 9px 10px; border-radius: 9px; color: var(--muted); text-decoration: none; font-size: .9rem; }
.legal-toc a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.legal-section { scroll-margin-top: 102px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.075); }
.legal-section h2 { margin: 0 0 14px; font-size: 1.75rem; }
.legal-section h3 { margin: 26px 0 8px; font-size: 1.08rem; }
.legal-section p { color: var(--muted); line-height: 1.72; }
.legal-section > p:first-of-type { margin-top: 0; }
.legal-section ul { margin: 14px 0 0; padding-left: 22px; color: var(--muted); line-height: 1.65; }
.legal-section li { margin: 8px 0; }
.legal-section li::marker { color: var(--purple-soft); }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.legal-card { padding: 20px; border: 1px solid var(--border); border-radius: 15px; background: rgba(13, 20, 34, .76); }
.legal-card h3 { margin-top: 0; }
.legal-card p { margin-bottom: 0; font-size: .94rem; }
.legal-notice { margin-top: 20px; padding: 18px 20px; border: 1px solid #385645; border-radius: 14px; background: rgba(12, 38, 29, .58); color: #b8d8c8; line-height: 1.65; }
.legal-notice strong { color: var(--green); }
.legal-warning { border-color: #5d4828; background: rgba(48, 35, 17, .48); color: #d9c49f; }
.legal-warning strong { color: var(--orange); }
.legal-contact { margin-top: 18px; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--panel-2); }
.legal-contact p { margin: 0; }

.legal-footer { border-top: 1px solid rgba(255,255,255,.07); }
.legal-footer-inner { padding: 28px 0 44px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 24px; color: var(--soft); font-size: .84rem; }
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.legal-footer-links a { color: var(--muted); text-decoration: none; }

@media (max-width: 700px) {
  .legal-main { padding-top: 52px; }
  .legal-toc,
  .legal-grid { grid-template-columns: 1fr; }
  .legal-header-inner { min-height: 68px; }
  .legal-brand span { display: none; }
}

@media (max-width: 600px) {
  .error-shell { padding-block: 24px; }
  .error-brand img { width: 160px; }
  .error-card { padding: 32px 20px; }
  .error-actions { flex-direction: column; }
}

/* Light editorial interface */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-grid {
  background:
    radial-gradient(circle at 75% 5%, rgba(105, 65, 245, .12), transparent 27%),
    radial-gradient(circle at 18% 22%, rgba(0, 113, 227, .08), transparent 24%),
    linear-gradient(180deg, #fbfbfd 0%, #fff 62%);
  mask-image: none;
}

.site-header {
  background: rgba(255, 255, 255, .82);
  border-bottom-color: rgba(0, 0, 0, .08);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav-wrap { min-height: 64px; }
.brand-image { line-height: 1; }
.brand-mark { display: block; width: 34px; height: 34px; border-radius: 10px; object-fit: contain; }
.brand-name { font-size: 1.05rem; font-weight: 650; letter-spacing: -.03em; }
.desktop-nav a,
.footer-links a { color: #515154; font-size: .82rem; }
.desktop-nav a:hover,
.footer-links a:hover { color: #000; }
.nav-signin { color: #515154; }

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  vertical-align: middle;
}
.language-picker-trigger {
  width: 112px;
  height: 36px;
  margin: 0;
  padding: 0 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #515154;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}
.language-picker-trigger > span {
  width: 100%;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-picker-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #6e6e73;
  border-bottom: 1.5px solid #6e6e73;
  transform: translateY(-65%) rotate(45deg);
  transition: transform .16s ease;
}
.language-picker-trigger:hover { border-color: #b8b8be; background: #fff; }
.language-picker-trigger[aria-expanded="true"] {
  border-color: #8d72ef;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(105,65,245,.12);
}
.language-picker-trigger[aria-expanded="true"]::after { transform: translateY(-30%) rotate(225deg); }
.language-picker-trigger:focus-visible {
  outline: none;
  border-color: #8d72ef;
  box-shadow: 0 0 0 3px rgba(105,65,245,.12);
}
.language-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  z-index: 100;
  width: 168px;
  padding: 6px;
  display: grid;
  gap: 2px;
  border: 1px solid #d8d8dd;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 50px rgba(29,29,31,.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}
.language-picker-menu[hidden] { display: none; }
.language-picker-menu button {
  position: relative;
  min-height: 37px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #3a3a3c;
  font-size: .82rem;
  font-weight: 560;
  text-align: center;
  cursor: pointer;
}
.language-picker-menu button::before { content: "✓"; position: absolute; left: 12px; top: 50%; color: #6941f5; font-weight: 800; opacity: 0; transform: translateY(-50%); }
.language-picker-menu button:hover,
.language-picker-menu button:focus-visible { outline: none; background: #f5f5f7; }
.language-picker-menu button[aria-selected="true"] { background: #f0ecff; color: #4f2cc7; font-weight: 700; }
.language-picker-menu button[aria-selected="true"]::before { opacity: 1; }
.app-language-picker .language-picker-trigger { background: #fff; }

@media (min-width: 921px) {
  .nav-actions {
    width: 390px;
    display: grid;
    grid-template-columns: 112px minmax(84px, 1fr) auto;
    gap: 14px;
  }
  .nav-actions > .language-picker { justify-self: start; }
  .nav-actions > .nav-signin { width: 100%; text-align: center; }
}

.button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #6d45ee;
  box-shadow: none;
  color: #fff;
  font-weight: 600;
}
.button:hover { background: #7b55f3; filter: none; }
.button-secondary {
  border: 1px solid #d2d2d7;
  background: rgba(255, 255, 255, .86);
  color: #1d1d1f;
}
.button-secondary:hover { background: #f5f5f7; }
.text-link { color: #5c35dc; font-weight: 600; }

.menu-button { border-color: #d2d2d7; background: #fff; }
.menu-button span { background: #1d1d1f; }
.mobile-menu {
  inset: 64px 0 auto;
  background: rgba(255, 255, 255, .97);
  border-bottom-color: #d2d2d7;
}
.mobile-menu a:not(.button) { color: #515154; }

.hero {
  padding: 32px 0 42px;
  grid-template-columns: 1fr;
  gap: 62px;
  text-align: center;
}
.hero-copy { width: 100%; max-width: none; margin: 0 auto; }
.hero h1 {
  max-width: 1240px;
  margin: 16px auto 14px;
  font-size: clamp(2.75rem, 4.4vw, 4rem);
  line-height: .98;
  letter-spacing: -.07em;
}
.hero-title-line { display: block; }
.hero h1 .hero-title-accent {
  display: block;
  overflow: visible;
  margin-inline: -.08em;
  padding: .03em .08em .1em;
  color: transparent;
  background: linear-gradient(90deg, #5b32dc, #8557f3 50%, #006edb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.08;
}

@media (min-width: 921px) {
  .hero-title-line { white-space: nowrap; }
  html[lang="pt-BR"] .hero h1,
  html[lang="es"] .hero h1 { font-size: clamp(2.35rem, 4vw, 3.6rem); }
  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1 { font-size: clamp(2.2rem, 3.6vw, 3.3rem); }
  html[lang="ja"] .hero h1 { font-size: clamp(2.35rem, 4vw, 3.4rem); }
}
.hero-text { max-width: 780px; margin-inline: auto; color: #6e6e73; font-size: 1.06rem; line-height: 1.58; }
.hero-copy-stack { gap: 13px; }
.hero-copy-stack strong { color: #1d1d1f; }
.hero-tagline { color: #5c35dc; }
.hero-actions { align-items: flex-start; justify-content: center; margin-top: 30px; }
.eyebrow { border-color: #d2d2d7; color: #6e6e73; background: rgba(255, 255, 255, .72); }

.hero-visual { width: 100%; }
.hero-demo-frame {
  position: relative;
  width: min(100%, 1120px);
  aspect-ratio: 21 / 10;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, .16);
  border-radius: 24px;
  background: #0a0f2a url("marketing/video/output/nodelume-product-demo-poster-v2.jpg") center 52% / cover no-repeat;
  box-shadow: 0 32px 90px rgba(18, 18, 22, .18);
}
.hero-demo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
.hero-demo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.hero-demo-caption {
  width: fit-content;
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  color: #5c35dc;
  font-size: .9rem;
  font-weight: 650;
}
.hero-demo-caption:hover { color: #3d1cab; }
.section.home-demo-section { padding-top: 72px; padding-bottom: 0; }
.section.faq-section { padding-top: 72px; }
.home-demo-cta {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid #dedee3;
  border-radius: 28px;
  background: #f5f5f7;
}
.home-demo-cta h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.home-demo-cta .button { flex: 0 0 auto; }
.product-window {
  width: min(100%, 1120px);
  margin: 0 auto;
  color: #eef2ff;
  border-color: rgba(29, 29, 31, .16);
  box-shadow: 0 32px 90px rgba(18, 18, 22, .18);
}
.product-window .product-topbar strong,
.product-window .canvas-heading strong,
.product-window .journey-node strong,
.product-window .product-brand strong { color: #eef2ff; }

.section { padding-top: 132px; }
#product { padding-top: 48px; }
.section-heading { max-width: 820px; }
.section-heading.centered { max-width: 880px; }
.section-heading h2,
.value-panel h2,
.privacy-copy h2,
.contact-copy h2 {
  color: #1d1d1f;
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.section-heading p,
.privacy-copy p,
.contact-copy p { color: #6e6e73; font-size: 1.02rem; }

.process-card,
.capability-card,
.price-card,
.faq-item,
.contact-panel,
.value-panel,
.privacy-panel,
.installation-step {
  border-color: #e1e1e5;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .06);
}
.process-card > span { color: #5c35dc; }
.process-card p,
.capability-card p,
.value-list span,
.faq-item p { color: #6e6e73; }
.process-card h3,
.capability-card h3,
.value-list strong,
.faq-item summary { color: #1d1d1f; }

.blue-icon { color: #006edb; background: #eaf4ff; }
.purple-icon { color: #6540e7; background: #f0ecff; }
.green-icon { color: #087b45; background: #e8f7ef; }
.teal-icon { color: #087a7a; background: #e5f7f7; }
.neutral-icon { color: #515154; background: #f0f0f2; }

.installation-section { scroll-margin-top: 84px; }
.installation-flow { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.installation-flow::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, #dcd4fb, #c8dff7);
}
.installation-step { position: relative; z-index: 1; min-height: 300px; padding: 28px; border-radius: 28px; }
.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #6f47ee, #4c7ee8);
  box-shadow: 0 10px 28px rgba(91, 65, 210, .2);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.installation-step h3 { margin: 0 0 10px; color: #1d1d1f; font-size: 1.16rem; letter-spacing: -.025em; }
.installation-step p { margin: 0; color: #6e6e73; font-size: .91rem; line-height: 1.65; }
.installation-actions { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 22px; }

.value-panel { background: #f5f5f7; box-shadow: none; }
.value-list article { border-bottom-color: #d8d8dc; }

.privacy-panel { border-color: #d7e8df; background: #f1f8f4; box-shadow: none; }
.privacy-copy .text-link { color: #087b45; }
.privacy-facts div { border-color: #d7e8df; background: rgba(255, 255, 255, .78); }
.privacy-facts span { color: #5f7568; }

.billing-toggle { padding: 5px; gap: 4px; border-color: #d2d2d7; border-radius: 999px; background: #f5f5f7; }
.billing-button { padding-inline: 18px; border-radius: 999px; color: #6e6e73; transition: background-color .18s ease, color .18s ease, box-shadow .18s ease; }
.billing-button:hover:not(.active) { background: rgba(255,255,255,.7); color: #1d1d1f; }
.billing-button.active { color: #5c35dc; background: #fff; box-shadow: 0 2px 9px rgba(29,29,31,.09), inset 0 0 0 1px rgba(105,65,245,.12); }
.billing-button:focus-visible { outline: 3px solid rgba(105,65,245,.2); outline-offset: 2px; }
.billing-button .billing-label { min-height: auto; margin: 0; padding: 0; display: inline; background: transparent; color: inherit; font-size: inherit; line-height: inherit; }
.billing-button .billing-saving { min-height: 21px; margin-left: 9px; padding: 3px 7px; display: inline-flex; align-items: center; border-radius: 999px; background: #eeeafd; color: #5c35dc; line-height: 1; }
.billing-note { color: #86868b; }
.billing-note a { color: #5c35dc; }
.price-card.featured { border-color: #876af0; box-shadow: 0 18px 60px rgba(91, 53, 220, .12); }
.popular-badge { background: #6941f5; color: #fff; }
.plan-name,
.price-value { color: #1d1d1f; }
.plan-audience,
.currency,
.price-suffix,
.plan-description { color: #6e6e73; }
.plan-list { color: #515154; }

.contact-panel { background: #f5f5f7; box-shadow: none; }
.contact-copy a { color: #5c35dc; }
.contact-tags span { border-color: #d2d2d7; color: #6e6e73; background: #fff; }
.contact-form { border-color: #e1e1e5; background: #fff; box-shadow: 0 12px 36px rgba(0, 0, 0, .05); }
.contact-form label { color: #515154; }
.contact-form input,
.contact-form select,
.contact-form textarea { border-color: #d2d2d7; background: #fff; color: #1d1d1f; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #6941f5; box-shadow: 0 0 0 3px rgba(105, 65, 245, .1); }
.form-note,
.form-message,
.contact-form .consent-row { color: #86868b; }
.form-message.success { color: #087b45; }
.form-message.error { color: #c93445; }
.contact-form .consent-row a { color: #5c35dc; }

.faq-item { box-shadow: none; }
.site-footer { border-top-color: #d2d2d7; color: #86868b; }
.footer-mark { width: 30px; height: 30px; border-radius: 9px; }

.error-page { background: #f5f5f7; }
.error-brand { align-items: center; gap: 12px; color: #1d1d1f; }
.error-brand .brand-mark { width: 46px; height: 46px; }
.error-card { border-color: #e1e1e5; background: #fff; box-shadow: 0 20px 70px rgba(0, 0, 0, .08); }
.error-code { color: #6941f5; }

.legal-body { background: #fff; color: #1d1d1f; }
.legal-body a { color: #5c35dc; text-decoration-color: rgba(92, 53, 220, .35); }
.legal-body a:hover { color: #3d1cab; }
.legal-header { border-bottom-color: rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .86); backdrop-filter: saturate(180%) blur(20px); }
.legal-brand { color: #1d1d1f !important; }
.legal-back { color: #6e6e73 !important; }
.legal-kicker { color: #5c35dc; }
.legal-main h1,
.legal-main h2,
.legal-main h3 { color: #1d1d1f; }
.legal-intro,
.legal-meta,
.legal-section p,
.legal-section ul { color: #6e6e73; }
.legal-summary { border-color: #ded5fb; background: #f5f2ff; }
.legal-summary strong { color: #3d1cab; }
.legal-summary p { color: #5d5474; }
.legal-toc { border-color: #e1e1e5; background: #f5f5f7; }
.legal-toc a { color: #6e6e73; }
.legal-toc a:hover { color: #1d1d1f; background: #fff; }
.legal-section { border-top-color: #e1e1e5; }
.legal-card { border-color: #e1e1e5; background: #f8f8fa; }
.legal-notice { border-color: #cfe4d7; background: #f0f8f3; color: #42624e; }
.legal-notice strong { color: #087b45; }
.legal-warning { border-color: #ead9b9; background: #fff8ea; color: #765c2b; }
.legal-warning strong { color: #9a5b00; }
.legal-contact { border-color: #e1e1e5; background: #f5f5f7; }
.legal-footer { border-top-color: #e1e1e5; }
.legal-footer-links a { color: #6e6e73; }

@media (max-width: 1100px) {
  .installation-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .installation-flow::before { display: none; }
}

@media (max-width: 700px) {
  .nav-wrap { min-height: 58px; }
  .mobile-menu { inset: 58px 0 auto; }
  .brand-mark { width: 30px; height: 30px; }
  .nav-actions { gap: 9px; }
  .nav-signin { display: none; }
  .language-picker-trigger { width: 104px; height: 34px; padding: 0 18px; font-size: .7rem; }
  .language-picker-trigger::after { right: 10px; }
  .language-picker-menu { width: 160px; }
  .checkout-header-actions { gap: 8px; }
  .checkout-header-actions .language-picker-menu { left: auto; right: 0; transform: none; }
  .checkout-secure-label { display: none; }
  .hero { padding-top: 18px; gap: 42px; }
  .hero h1 { margin-top: 12px; font-size: clamp(2.15rem, 9.5vw, 2.85rem); }
  .hero-text { font-size: .94rem; line-height: 1.5; }
  .hero-demo-frame { border-radius: 16px; }
  .section.home-demo-section { padding-top: 64px; padding-bottom: 0; }
  .section.faq-section { padding-top: 56px; }
  .home-demo-cta { padding: 28px 22px; align-items: stretch; flex-direction: column; }
  .home-demo-cta .button { width: 100%; }
  .section { padding-top: 96px; }
  .installation-flow { grid-template-columns: 1fr; }
  .installation-step { min-height: 0; }
  .step-icon { margin-bottom: 28px; }
  .installation-actions { align-items: stretch; flex-direction: column; text-align: center; }
  .installation-actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* Product demo */
.desktop-nav a.is-active,
.desktop-nav a[aria-current="page"] { color: #5c35dc; }

.demo-main { padding-bottom: 48px; }
.demo-hero {
  max-width: 980px;
  padding-top: 78px;
  padding-bottom: 54px;
  text-align: center;
}
.demo-hero h1 {
  margin: 18px auto 20px;
  color: #1d1d1f;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.075em;
}
.demo-hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #5b32dc, #8557f3 52%, #006edb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.demo-hero > p {
  max-width: 780px;
  margin: 0 auto;
  color: #6e6e73;
  font-size: 1.08rem;
  line-height: 1.65;
}
.demo-meta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.demo-meta-row span {
  min-height: 34px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfdfe3;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #6e6e73;
  font-size: .76rem;
  font-weight: 650;
}
.demo-meta-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #6941f5;
  box-shadow: 0 0 0 4px rgba(105, 65, 245, .09);
}

.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 22px;
  align-items: start;
}
.demo-player-card,
.demo-chapters {
  border: 1px solid #dedee3;
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 80px rgba(25, 20, 45, .09);
}
.demo-player-card {
  position: sticky;
  top: 84px;
  overflow: hidden;
}
.demo-video-shell {
  aspect-ratio: 108 / 59;
  overflow: hidden;
  background: #080b13;
}
.demo-video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.demo-player-note {
  min-height: 70px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e4e4e8;
}
.demo-player-note-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #f0ecff;
  color: #5c35dc;
  font-weight: 800;
}
.demo-player-note p { margin: 0; color: #6e6e73; font-size: .82rem; line-height: 1.5; }

.demo-chapters { padding: 22px; }
.demo-chapters-heading { padding: 4px 5px 18px; }
.demo-chapters-heading > span {
  color: #6941f5;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.demo-chapters-heading h2 {
  margin: 8px 0 0;
  color: #1d1d1f;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.demo-chapter-list { display: grid; gap: 8px; }
.demo-chapter {
  width: 100%;
  padding: 13px 13px 13px 11px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: #1d1d1f;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.demo-chapter:hover { background: #f7f6fb; transform: translateY(-1px); }
.demo-chapter:focus-visible { outline: 3px solid rgba(105, 65, 245, .2); outline-offset: 2px; }
.demo-chapter.is-active {
  border-color: #d9cffb;
  background: linear-gradient(135deg, #f3efff, #f7f9ff);
}
.demo-chapter-time {
  padding-top: 2px;
  color: #86868b;
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}
.demo-chapter.is-active .demo-chapter-time { color: #5c35dc; }
.demo-chapter strong { display: block; color: #1d1d1f; font-size: .88rem; line-height: 1.25; }
.demo-chapter small { margin-top: 4px; display: block; color: #6e6e73; font-size: .73rem; line-height: 1.42; }

.demo-takeaway { padding-top: 136px; }
.demo-takeaway .process-grid { margin-top: 42px; }
.demo-cta-section { padding-top: 112px; padding-bottom: 86px; }
.demo-cta {
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  border: 1px solid #dcd3fb;
  border-radius: 32px;
  background: linear-gradient(135deg, #f3efff 0%, #f8faff 58%, #edf7ff 100%);
}
.demo-cta h2 {
  max-width: 780px;
  margin: 18px 0 16px;
  color: #1d1d1f;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.demo-cta p { max-width: 680px; margin: 0; color: #6e6e73; line-height: 1.65; }
.demo-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

@media (max-width: 1040px) {
  .demo-stage { grid-template-columns: 1fr; }
  .demo-player-card { position: static; }
  .demo-chapter-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demo-cta { grid-template-columns: 1fr; align-items: start; }
  .demo-cta-actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .demo-hero { padding-top: 42px; padding-bottom: 36px; }
  .demo-hero h1 { font-size: clamp(2.55rem, 12vw, 3.65rem); }
  .demo-hero > p { font-size: .95rem; }
  .demo-stage { gap: 16px; }
  .demo-player-card,
  .demo-chapters { border-radius: 20px; }
  .demo-chapters { padding: 14px; }
  .demo-chapter-list { grid-template-columns: 1fr; }
  .demo-takeaway { padding-top: 92px; }
  .demo-cta-section { padding-top: 86px; padding-bottom: 56px; }
  .demo-cta { padding: 28px 22px; border-radius: 24px; }
  .demo-cta-actions { align-items: stretch; flex-direction: column; }
  .demo-cta-actions .button { width: 100%; }
}
