:root {
  --kxn-blue: #1e88e5;
  --kxn-blue-dark: #1565c0;
  --kxn-teal: #00bfa6;
  --kxn-orange: #ff7043;
  --kxn-text: #1a1a1a;
  --kxn-light: #f4f6f8;
  --kxn-radius: 22px;
  --kxn-shadow: 0 18px 45px rgba(21, 101, 192, 0.12);
  --kxn-card-shadow: 0 16px 40px rgba(18, 53, 102, 0.08);
  --kxn-hero-text: rgba(255, 255, 255, 0.92);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--kxn-text);
  background: var(--kxn-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(244, 246, 248, 0.92);
  z-index: 6;
  transition: opacity 200ms ease;
}

.loading-screen.d-none {
  pointer-events: none;
  opacity: 0;
}

body.theme-dark {
  background: #111827;
  color: #e5e7eb;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.site-wrapper {
  position: relative;
  min-height: 100%;
  isolation: isolate;
  overflow-x: hidden;
}

#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(160deg, rgba(30, 136, 229, 0.85) 0%, rgba(21, 101, 192, 0.85) 100%);
  filter: saturate(1.05);
}

#networkCanvas.networkCanvas--static {
  opacity: 0.85;
}

main,
header,
footer,
section,
.angle-divider {
  position: relative;
  z-index: 1;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  background: rgba(244, 246, 248, 0.85);
  border-bottom: 1px solid rgba(30, 136, 229, 0.08);
}

.siteHeader[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 52, 96, 0.08);
}

.siteHeader .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  padding: 0.25rem 0.75rem 0.25rem 0.35rem;
  border-radius: 999px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.logo-group:hover,
.logo-group:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 52, 96, 0.12);
}

.logo-group:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.4);
  outline-offset: 4px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2f80ed 0%, #1e88e5 100%);
  box-shadow: 0 10px 24px rgba(30, 136, 229, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
}

.logo-mark img {
  width: 26px;
  height: 26px;
  display: block;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--kxn-blue);
  letter-spacing: 0.015em;
}

.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(15, 52, 96, 0.55);
  font-weight: 600;
}

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

.nav a {
  color: var(--kxn-blue-dark);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--kxn-blue), var(--kxn-blue-dark));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:focus-visible,
.nav a:hover {
  color: var(--kxn-blue);
}

.nav a:focus-visible::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--kxn-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-decoration: none;
}

.btn--sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  border-radius: calc(var(--kxn-radius) - 6px);
}

.btn:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.35);
  outline-offset: 2px;
}

.btn--primary {
  background-image: linear-gradient(135deg, var(--kxn-blue), var(--kxn-blue-dark));
  color: #fff;
  box-shadow: var(--kxn-shadow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 55px rgba(30, 136, 229, 0.35);
}

.btn--ghost {
  border: 1.5px solid var(--kxn-blue);
  color: var(--kxn-blue);
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(30, 136, 229, 0.08);
  color: var(--kxn-blue-dark);
}

.btn--text {
  padding: 0.65rem 1.1rem;
  color: var(--kxn-blue);
  background: transparent;
  font-weight: 600;
}

.btn--text:hover,
.btn--text:focus-visible {
  background: rgba(30, 136, 229, 0.12);
  color: var(--kxn-blue-dark);
}

section {
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}

.section-container {
  max-width: 1160px;
  margin: 0 auto;
}

.section--on-dark {
  color: rgba(255, 255, 255, 0.92);
}

.section--on-dark h2,
.section--on-dark h3,
.section--on-dark p,
.section--on-dark li,
.section--on-dark .small,
.section--on-dark small {
  color: inherit;
}

.section--on-dark .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section--on-dark a {
  color: rgba(255, 255, 255, 0.9);
}

.section--on-dark a:hover,
.section--on-dark a:focus-visible {
  color: #fff;
}

.section--on-dark .card,
.section--on-dark .card h2,
.section--on-dark .card h3,
.section--on-dark .card p,
.section--on-dark .card li,
.section--on-dark .card .section-eyebrow,
.section--on-dark .card .small,
.section--on-dark .card small {
  color: var(--kxn-text);
}

.site-wrapper .text-muted {
  color: var(--kxn-blue-dark) !important;
  opacity: 0.78;
}

#hero {
  color: var(--kxn-hero-text);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy p {
  font-size: 1.125rem;
}

.hero-support {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-left: 0;
  list-style: none;
}

.hero-support li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-weight: 500;
}

.hero-support li::before {
  content: '\2713';
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 360px;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

#hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

#hero h1 {
  color: #fff;
}

#hero p,
#hero .hero-support li {
  color: var(--kxn-hero-text);
}

#hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--kxn-hero-text);
  background: rgba(255, 255, 255, 0.08);
}

#hero .btn--ghost:hover,
#hero .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

#hero .hero-support li::before {
  color: rgba(255, 255, 255, 0.75);
}

#hero .hero-visual,
#hero .hero-visual p,
#hero .hero-visual span,
#hero .hero-visual .text-muted {
  color: var(--kxn-blue-dark);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--kxn-blue-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.social-proof-band {
  background: rgba(244, 246, 248, 0.85);
  border-radius: calc(var(--kxn-radius) + 12px);
  padding: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.social-proof-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  opacity: 0.7;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--kxn-blue-dark);
}

.quote-carousel {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.quote-card {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: var(--kxn-radius);
  box-shadow: var(--kxn-card-shadow);
  border: 1px solid rgba(30, 136, 229, 0.05);
  font-style: italic;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--kxn-radius);
  padding: 2rem;
  box-shadow: var(--kxn-card-shadow);
  border: 1px solid rgba(30, 136, 229, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(21, 101, 192, 0.16);
}

.card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: rgba(30, 136, 229, 0.12);
  color: var(--kxn-blue);
  font-size: 1.35rem;
}

.demo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.demo-media {
  position: relative;
  border-radius: calc(var(--kxn-radius) + 4px);
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(30, 136, 229, 0.92), rgba(21, 101, 192, 0.92));
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--kxn-card-shadow);
}

.demo-media::before {
  content: 'Preview coming soon';
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.demo-steps {
  display: grid;
  gap: 1.5rem;
}

.demo-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.demo-step-number {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(30, 136, 229, 0.15);
  color: var(--kxn-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.pricing-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 0.25rem;
  gap: 0.25rem;
}

.pricing-toggle-option {
  padding: 0.65rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 1.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.pricing-toggle-option:hover {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-toggle-option.active {
  background: var(--kxn-blue);
  color: #ffffff;
}

.pricing-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.pricing-card--popular {
  border: 2px solid var(--kxn-blue);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
}

.pricing-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--kxn-blue);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pricing-amount {
  margin: 1rem 0;
  min-height: 4.5rem;
}

.pricing-monthly,
.pricing-annual {
  display: block;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--kxn-blue);
  vertical-align: top;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--kxn-blue);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 0.25rem;
}

.section--on-dark .pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-billed {
  display: block;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 0.5rem;
}

.section--on-dark .pricing-billed {
  color: rgba(255, 255, 255, 0.6);
}

/* Annual pricing structure */
.pricing-annual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-annual .pricing-main {
  display: block;
}

.pricing-annual-total {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(59, 77, 99, 0.08);
  border-radius: 0.375rem;
  border-left: 3px solid var(--kxn-blue);
}

.section--on-dark .pricing-annual-total {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.5);
}

.pricing-free {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kxn-blue);
}

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

.pricing-card li::before {
  content: '\2022';
  color: var(--kxn-blue);
  margin-right: 0.65rem;
}

.faq {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq details {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--kxn-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--kxn-card-shadow);
  border: 1px solid rgba(30, 136, 229, 0.08);
}

.section--on-dark .faq details {
  color: var(--kxn-text);
}

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

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

.faq summary:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.35);
  border-radius: var(--kxn-radius);
}

.cta-band {
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
  background: rgba(30, 136, 229, 0.92);
  color: #fff;
  border-radius: calc(var(--kxn-radius) + 10px);
  box-shadow: 0 28px 60px rgba(13, 71, 161, 0.28);
}

.siteFooter {
  background: rgba(10, 19, 34, 0.92);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1160px;
  margin: 0 auto 2.5rem;
}

.siteFooter a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

.siteFooter a:hover,
.siteFooter a:focus-visible {
  color: #fff;
}

.footer-meta {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.75;
}

.angle-divider {
  height: 64px;
  overflow: hidden;
}

.angle-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 136, 229, 0.16) 0%, rgba(21, 101, 192, 0.05) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}

.angle-divider--light::before {
  background: linear-gradient(180deg, rgba(244, 246, 248, 0.96) 0%, rgba(232, 239, 247, 0.6) 100%);
}

.angle-divider::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 136, 229, 0.2), rgba(21, 101, 192, 0));
  pointer-events: none;
}

.micro-card {
  position: fixed;
  padding: 0.75rem 0.9rem;
  border-radius: calc(var(--kxn-radius) - 6px);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 28px rgba(9, 35, 74, 0.14);
  color: var(--kxn-blue-dark);
  opacity: 0;
  transform: translate(-50%, calc(-50% + var(--micro-offset, 0px))) scale(0.94);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.6s ease;
  will-change: opacity, transform;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: 'Caveat', 'Patrick Hand', 'Inter', cursive;
  font-size: 0.95rem;
  line-height: 1.35;
  z-index: 0;
  top: 50%;
  left: 50%;
}

.micro-card[data-state='visible'] {
  opacity: 0.55;
  transform: translate(-50%, calc(-50% + var(--micro-offset, -8px))) scale(1);
}

.micro-card__header {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(21, 101, 192, 0.72);
  position: relative;
  padding-bottom: 0.4rem;
  margin-bottom: 0.55rem;
}

.micro-card__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--kxn-blue), var(--kxn-blue-dark));
  border-radius: 999px;
  opacity: 0.6;
}

.micro-card__body {
  color: rgba(21, 101, 192, 0.85);
  white-space: pre-line;
}

.session-expired-banner {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(21, 101, 192, 0.18);
  color: var(--kxn-blue-dark);
  box-shadow: 0 12px 22px rgba(15, 52, 96, 0.12);
  transform: translateY(-100%);
  transition: transform 220ms ease;
}

.session-expired-banner[data-visible='true'] {
  transform: translateY(0);
}

.session-expired-banner__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.session-expired-banner__message {
  font-weight: 500;
}

.session-expired-banner__dismiss {
  background: transparent;
  border: none;
  color: var(--kxn-blue-dark);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
}

.session-expired-banner__dismiss:focus-visible,
.session-expired-banner__dismiss:hover {
  color: var(--kxn-blue);
}

.auth-modal .modal-content {
  border-radius: calc(var(--kxn-radius) + 6px);
  border: none;
  box-shadow: 0 28px 60px rgba(13, 71, 161, 0.25);
}

.auth-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.auth-modal .nav-tabs {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.auth-modal .nav-tabs .nav-link {
  border: none;
  border-radius: var(--kxn-radius);
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.65);
}

.auth-modal .nav-tabs .nav-link.active {
  color: var(--kxn-blue-dark);
  background: rgba(30, 136, 229, 0.16);
}

.auth-modal .form-control,
.auth-modal .form-select {
  border-radius: calc(var(--kxn-radius) - 10px);
  padding: 0.75rem 1rem;
}

.auth-modal .coupon-gate {
  background: rgba(244, 246, 248, 0.85);
  border: 1px dashed rgba(30, 136, 229, 0.35);
  border-radius: calc(var(--kxn-radius) - 6px);
}

@media (max-width: 1024px) {
  .siteHeader .container {
    padding: 0.85rem 1.25rem;
  }

  .logo-group {
    gap: 0.7rem;
    padding: 0.2rem 0.55rem 0.2rem 0.3rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-mark img {
    width: 24px;
    height: 24px;
  }

  .logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
  }

  .nav {
    display: none;
  }

  .siteHeader {
    position: fixed;
  }

  body {
    padding-top: 76px;
  }
}

@media (max-width: 768px) {
  section {
    padding-inline: 1.1rem;
  }

  .logo-tagline {
    display: none;
  }

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

  .hero-support li {
    align-items: flex-start;
  }

  .demo-media[data-collapsed='true'] {
    display: none;
  }

  .siteFooter {
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body {
    scroll-behavior: auto;
  }
}
