:root {
  --blue: #0038ff;
  --blue-dark: #001b7a;
  --black: #05070d;
  --ink: #111827;
  --muted: #5e6678;
  --line: #e5e9f3;
  --soft: #f5f7fb;
  --soft-blue: #eef3ff;
  --white: #ffffff;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-card: 0 22px 70px rgba(15, 23, 42, 0.11);
  --shadow-blue: 0 24px 75px rgba(0, 56, 255, 0.28);
  --headline: "Instrument Sans", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--black);
  font-family: var(--headline);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
}

h2 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3vw, 3.05rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 100;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 16px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

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

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

.section-pad {
  padding: 92px 0;
}

section[id],
#contact-form {
  scroll-margin-top: 116px;
}

.light-section {
  background:
    radial-gradient(circle at top right, rgba(0, 56, 255, 0.09), transparent 28rem),
    var(--soft);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 11px 20px;
  text-align: center;
}

.announcement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(229, 233, 243, 0.82);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-family: var(--headline);
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 56, 255, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-links a {
  color: #293044;
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  font-size: 0.9rem;
  box-shadow: 0 14px 36px rgba(0, 56, 255, 0.22);
}

.button {
  padding: 14px 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 56, 255, 0.23);
}

.button-primary:hover {
  box-shadow: 0 24px 54px rgba(0, 56, 255, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.button-secondary:hover {
  border-color: rgba(0, 56, 255, 0.25);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.button-light {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.16);
}

.full-width {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 42px;
  padding-bottom: 38px;
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 56, 255, 0.14), transparent 31rem),
    linear-gradient(180deg, var(--white) 0%, #f8faff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 17px;
  border: 1px solid rgba(0, 56, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 56, 255, 0.08);
  color: var(--blue);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.section-label.on-dark,
.section-label.on-blue {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-subtitle {
  max-width: 710px;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span,
.price-badges span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 56, 255, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: #26324c;
  padding: 9px 12px;
  font-size: 0.83rem;
  font-weight: 800;
}

.trust-badges span::before,
.price-badges span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 0;
  max-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.glow-one {
  inset: 54px 8px auto auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 56, 255, 0.31), rgba(0, 56, 255, 0));
}

.dashboard-card {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    var(--white);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.dashboard-topbar,
.dashboard-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topbar {
  margin-bottom: 20px;
}

.eyebrow {
  display: block;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-family: var(--headline);
  font-size: 1.2rem;
}

.live-pill {
  border-radius: 999px;
  background: #e8fff3;
  color: #047642;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pipeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 15px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pipeline article:last-child {
  grid-column: 1 / -1;
}

.pipeline article:hover {
  transform: translateX(3px);
  border-color: rgba(0, 56, 255, 0.2);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.pipeline span {
  display: grid;
  grid-row: span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.pipeline strong {
  color: var(--black);
  font-weight: 800;
}

.pipeline p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
}

.pipeline .highlight {
  border-color: rgba(0, 56, 255, 0.34);
  background: linear-gradient(135deg, rgba(0, 56, 255, 0.08), rgba(255, 255, 255, 0.96));
}

.dashboard-lower {
  margin-top: 18px;
  border-radius: 20px;
  background: var(--black);
  padding: 18px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 62px;
}

.mini-chart span {
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), #9db3ff);
}

.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6affac;
  box-shadow: 0 0 0 6px rgba(106, 255, 172, 0.12);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 60px;
  align-items: center;
}

.two-column h3,
.support-grid h3,
.fit-card h3 {
  margin-top: 26px;
}

.check-list,
.x-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 28px;
}

.check-list li,
.x-list li,
.price-list li,
.info-card li {
  position: relative;
  color: #3a4358;
  padding-left: 30px;
}

.check-list li::before,
.price-list li::before,
.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--blue), var(--blue-dark)),
    var(--blue);
  box-shadow: 0 7px 16px rgba(0, 56, 255, 0.22);
}

.check-list li::after,
.price-list li::after,
.info-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.45em + 4px);
  width: 4px;
  height: 7px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.x-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.54em;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #8c95a8;
}

.check-list.light li {
  color: rgba(255, 255, 255, 0.78);
}

.leakage-stack {
  display: grid;
  gap: 15px;
}

.leak-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.leak-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leak-card strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--black);
  font-family: var(--headline);
  font-size: 1.35rem;
}

.leak-card p {
  margin: 0;
}

.leak-card:nth-child(2) {
  margin-left: 32px;
}

.leak-card:nth-child(3) {
  margin-left: 64px;
}

.leak-card.feature {
  margin-left: 20px;
  border-color: rgba(0, 56, 255, 0.25);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.leak-card.feature span,
.leak-card.feature strong,
.leak-card.feature p {
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.centered,
.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-label,
.centered .section-label {
  margin-right: auto;
  margin-left: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bento-card,
.info-card,
.fit-card,
.pricing-card,
.accordion-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.bento-card {
  min-height: 200px;
  padding: 24px;
}

.bento-card.wide {
  grid-column: span 2;
}

.icon-box,
.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.bento-card h3,
.info-card h3 {
  font-size: 1.28rem;
}

.bento-card p,
.info-card p {
  margin-bottom: 0;
}

.cta-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.cta-card h3,
.cta-card p {
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 14px;
}

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

.info-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 56, 255, 0.2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.info-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.info-card li {
  font-size: 0.9rem;
}

.included-grid .card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 13px;
  font-size: 0.82rem;
}

.included-grid .info-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.18;
}

.included-grid .info-card p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.included-card {
  position: relative;
  appearance: none;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.included-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.included-card .card-icon {
  margin-bottom: 0;
}

.card-action {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(0, 56, 255, 0.12);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-family: var(--headline);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.included-card:hover .card-action,
.included-card:focus-visible .card-action {
  background: var(--blue);
  color: var(--white);
  transform: rotate(90deg);
}

.included-card:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(0, 56, 255, 0.24);
  outline-offset: 3px;
}

.included-modal {
  width: min(92vw, 680px);
  max-height: min(86vh, 760px);
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.included-modal::backdrop {
  background: rgba(5, 7, 13, 0.58);
  backdrop-filter: blur(8px);
}

.included-modal-card {
  position: relative;
  overflow: auto;
  max-height: min(86vh, 760px);
  border: 1px solid rgba(229, 233, 243, 0.9);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 56, 255, 0.1), transparent 16rem),
    var(--white);
  padding: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-family: var(--headline);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.modal-close:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.included-modal-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 48px;
}

.included-modal-head .card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
}

.modal-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.included-modal h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
}

.modal-summary {
  margin: 24px 0;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
}

.modal-section {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.modal-section + .modal-section {
  margin-top: 20px;
}

.modal-section h4 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 0.95rem;
}

.modal-section p {
  margin-bottom: 0;
}

.modal-benefits {
  display: grid;
  gap: 12px;
}

.modal-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 0.96rem;
}

.modal-benefits li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  content: "";
  box-shadow: 0 8px 18px rgba(0, 56, 255, 0.2);
}

.modal-benefits li::after {
  position: absolute;
  top: 0.48rem;
  left: 0.36rem;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.dark-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 56, 255, 0.48), transparent 30rem),
    radial-gradient(circle at 10% 100%, rgba(0, 56, 255, 0.2), transparent 26rem),
    var(--black);
  color: var(--white);
}

.dark-section h2,
.dark-section h3,
.dark-section p {
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: 60px;
  align-items: center;
}

.boundary-box {
  margin: 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.comparison-card {
  display: grid;
  gap: 16px;
}

.comparison-card article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.comparison-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-card h3 {
  font-size: 1.55rem;
}

.comparison-card .featured {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: var(--shadow-blue);
}

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 56, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 90% 40%, rgba(0, 56, 255, 0.18), transparent 25rem),
    #05070d;
  color: var(--white);
  padding-top: 86px;
}

.testimonials-section h2,
.testimonials-section h3,
.testimonials-section p {
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  padding: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.video-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #111827;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition:
    opacity 0.2s ease,
    scale 0.2s ease;
}

.video-trigger:hover img,
.video-trigger:focus-visible img {
  opacity: 1;
  scale: 1.03;
}

.video-trigger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(0, 56, 255, 0.42);
  translate: -50% -50%;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
}

.video-card h3 {
  margin: 14px 4px 4px;
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  padding: 30px;
}

.featured-pricing {
  border-color: rgba(0, 56, 255, 0.22);
  background:
    radial-gradient(circle at 92% 5%, rgba(255, 255, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.featured-pricing h3,
.featured-pricing p,
.featured-pricing .price,
.featured-pricing li {
  color: var(--white);
}

.price-header h3 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.price {
  margin: 18px 0;
  color: var(--black);
  font-family: var(--headline);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.price span {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 800;
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}

.featured-pricing .price-badges span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.featured-pricing .price-badges span::before {
  background: var(--white);
}

.price-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 28px;
}

.price-list li {
  color: rgba(255, 255, 255, 0.86);
}

.price-list.dark li {
  color: #3a4358;
}

.featured-pricing .price-list li::before {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.custom-pricing h4 {
  margin: 22px 0 0;
  color: var(--black);
  font-size: 1rem;
}

.split-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.fit-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
}

.fit-card.white {
  background: var(--white);
}

.fit-card h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 2.25vw, 2.25rem);
}

.fit-card p {
  max-width: 560px;
  margin-bottom: 18px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 20px;
}

.signal-grid span {
  display: flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(0, 56, 255, 0.14);
  border-radius: 16px;
  background: rgba(0, 56, 255, 0.06);
  color: #20304f;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.signal-grid.muted span {
  border-color: var(--line);
  background: #f8faff;
  color: #4b5569;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 28px;
}

.tag-list.tight {
  margin-top: 4px;
  margin-bottom: 24px;
}

.compact-list {
  gap: 9px;
  margin: 4px 0 22px;
}

.compact-list li {
  font-size: 0.93rem;
  line-height: 1.45;
}

.fit-card .button {
  margin-top: auto;
}

.impact-section {
  background:
    radial-gradient(circle at top left, rgba(0, 56, 255, 0.44), transparent 30rem),
    linear-gradient(135deg, #05070d 0%, #11172b 100%);
  color: var(--white);
}

.impact-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 50px;
  align-items: center;
}

.impact-section h2,
.impact-section p,
.impact-section strong {
  color: var(--white);
}

.impact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.impact-copy strong {
  display: block;
  margin: 24px 0;
  font-family: var(--headline);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.16;
}

.stat-grid {
  display: grid;
  gap: 16px;
}

.stat-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.stat-grid span {
  color: #9db3ff;
  font-weight: 900;
}

.stat-grid h3 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 56, 255, 0.35), transparent);
}

.steps article {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.steps span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--headline);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(0, 56, 255, 0.2);
}

.final-step {
  max-width: 620px;
  margin-top: 34px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  box-shadow: none;
}

.accordion-item button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 21px 56px 21px 22px;
  font-weight: 800;
  text-align: left;
}

.accordion-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 1.2rem;
}

.accordion-item button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  padding: 0 22px 22px;
}

.accordion-panel p {
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 56, 255, 0.4), transparent 30rem),
    linear-gradient(135deg, #05070d 0%, #101623 100%);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1fr);
  gap: 52px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-section h2,
.contact-section h3,
.contact-section p {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.75);
}

.trust-badges.dark span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.trust-badges.dark {
  margin: 22px 0 26px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.form-intro,
.contact-form .full {
  grid-column: 1 / -1;
}

.form-intro h3 {
  color: var(--black);
}

.form-intro p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26324c;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcff;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 56, 255, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 56, 255, 0.11);
}

.contact-form button.full {
  width: 100%;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-status {
  display: block;
  margin: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="pending"] {
  background: var(--soft-blue);
  color: var(--blue);
}

.form-status[data-state="success"] {
  background: #ebfff3;
  color: #087a37;
}

.form-status[data-state="error"] {
  background: #fff0f0;
  color: #bd1e1e;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.chat-launcher,
.chat-panel {
  pointer-events: auto;
}

.chat-launcher {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid rgba(0, 56, 255, 0.9);
  border-radius: 999px;
  background: var(--white);
  padding: 2px;
  box-shadow:
    0 0 0 6px rgba(0, 56, 255, 0.12),
    0 18px 46px rgba(0, 56, 255, 0.34);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 8px rgba(0, 56, 255, 0.16),
    0 24px 64px rgba(0, 56, 255, 0.42);
}

.chat-launcher::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 56, 255, 0.16);
}

.chat-launcher img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.chat-widget.is-open .chat-launcher {
  display: none;
}

.chat-panel {
  display: flex;
  width: min(420px, calc(100vw - 40px));
  max-height: min(76vh, 720px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(229, 233, 243, 0.95);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 85px rgba(5, 7, 13, 0.24);
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px 18px 14px;
}

.chat-kicker {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-header h2 {
  margin: 4px 0 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.chat-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcff;
  color: var(--muted);
  font-family: var(--headline);
  font-weight: 900;
  cursor: pointer;
}

.chat-close:hover,
.chat-close:focus-visible {
  border-color: rgba(0, 56, 255, 0.24);
  color: var(--blue);
}

.chat-messages {
  display: grid;
  flex: 1 1 auto;
  gap: 10px;
  min-height: 150px;
  max-height: 260px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 56, 255, 0.08), transparent 14rem),
    #f8faff;
  padding: 14px 16px;
}

.chat-message {
  display: grid;
  max-width: 88%;
  animation: chat-message-in 0.22s ease both;
}

.chat-message p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: #26324c;
  padding: 10px 12px;
  font-size: 0.88rem;
  line-height: 1.48;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.chat-message.user {
  justify-self: end;
}

.chat-message.user p {
  border-color: transparent;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 56, 255, 0.18);
}

.chat-message.assistant {
  justify-self: start;
}

@keyframes chat-message-in {
  from {
    opacity: 0;
    translate: 0 8px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.chat-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px 14px 0;
}

.chat-prompts button {
  border: 1px solid rgba(0, 56, 255, 0.14);
  border-radius: 999px;
  background: var(--soft-blue);
  color: #173069;
  padding: 9px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.chat-prompts button:hover,
.chat-prompts button:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.chat-prompts button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.chat-profile-form {
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding: 12px 14px 0;
}

.chat-profile-form[hidden] {
  display: none;
}

.chat-profile-form p {
  margin: 0;
  color: #26324c;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.chat-profile-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chat-profile-form label {
  display: grid;
  gap: 5px;
  color: #26324c;
  font-size: 0.72rem;
  font-weight: 900;
}

.chat-profile-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcff;
  color: var(--ink);
  outline: none;
  padding: 10px 11px;
  font-size: 0.82rem;
  line-height: 1.25;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.chat-profile-form input:focus {
  border-color: rgba(0, 56, 255, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 56, 255, 0.11);
}

.chat-profile-form button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.chat-profile-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.chat-widget.has-started .chat-prompts {
  display: none;
}

.chat-widget.is-collecting-profile .chat-form {
  display: none;
}

.chat-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfcff;
  color: var(--ink);
  outline: none;
  padding: 10px 11px;
  font-size: 0.86rem;
  line-height: 1.35;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.chat-form textarea {
  resize: none;
}

.chat-form textarea:focus {
  border-color: rgba(0, 56, 255, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 56, 255, 0.11);
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding: 12px 14px;
}

.chat-form textarea {
  min-height: 43px;
  max-height: 120px;
}

.chat-form button {
  align-self: end;
  min-height: 43px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 0 15px;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.chat-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.chat-status {
  margin: 0 14px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.chat-status:empty {
  display: none;
}

.chat-status[data-state="pending"] {
  color: var(--blue);
}

.chat-status[data-state="success"] {
  color: #087a37;
}

.chat-status[data-state="error"] {
  color: #bd1e1e;
}

.site-footer {
  background: #03050a;
  color: var(--white);
  padding: 46px 0 28px;
}

.site-footer .brand,
.site-footer p,
.site-footer a,
.site-footer small {
  color: var(--white);
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
}

.footer-grid p {
  max-width: 420px;
  margin: 16px 0 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
}

.footer-grid nav a {
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.js .reveal {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 0.7s ease,
    translate 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 1020px) {
  .section-pad {
    padding: 76px 0;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    position: fixed;
    top: 114px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-card);
  }

  .nav-links.is-open a {
    border-radius: 14px;
    padding: 12px 14px;
  }

  .nav-links.is-open a:hover {
    background: var(--soft-blue);
  }

  .hero-grid,
  .two-column,
  .support-grid,
  .impact-section .container,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

  .pricing-grid,
  .split-lists {
    grid-template-columns: 1fr;
  }

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

  .faq-intro,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, 1180px);
  }

  .announcement {
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
  }

  .section-pad {
    padding: 68px 0;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: clamp(2.15rem, 9.3vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.7rem);
  }

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

  .hero-actions .button {
    flex: 1 1 145px;
    width: auto;
  }

  .hero-actions .button-primary {
    flex: 1.3 1 170px;
  }

  .hero-actions .button-secondary {
    flex: 0.9 1 130px;
  }

  .trust-badges span,
  .price-badges span,
  .tag-list span {
    width: 100%;
    justify-content: center;
  }

  .hero .trust-badges span {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
  }

  .hero .trust-badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero .trust-badges::-webkit-scrollbar {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .dashboard-card,
  .pricing-card,
  .fit-card,
  .contact-form {
    padding: 20px;
    border-radius: 22px;
  }

  .dashboard-lower {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline {
    grid-template-columns: 1fr;
  }

  .pipeline article:last-child {
    grid-column: auto;
  }

  .leak-card:nth-child(2),
  .leak-card:nth-child(3),
  .leak-card.feature {
    margin-left: 0;
  }

  .bento-grid,
  .included-grid,
  .steps,
  .video-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .included-modal {
    width: min(100% - 28px, 680px);
  }

  .included-modal-card {
    border-radius: 22px;
    padding: 26px 20px 22px;
  }

  .included-modal-head {
    gap: 12px;
    padding-right: 42px;
  }

  .included-modal h3 {
    font-size: 1.55rem;
  }

  .bento-card.wide,
  .cta-card {
    grid-column: auto;
  }

  .steps::before {
    display: none;
  }

  .contact-grid {
    gap: 28px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .chat-launcher {
    justify-self: end;
    width: 54px;
    height: 54px;
  }

  .chat-panel {
    width: 100%;
    max-height: min(calc(100dvh - 28px), 700px);
    border-radius: 22px;
  }

  .chat-header {
    gap: 12px;
    padding: 13px 14px 10px;
  }

  .chat-kicker {
    font-size: 0.66rem;
  }

  .chat-header h2 {
    font-size: 1.02rem;
  }

  .chat-close {
    width: 30px;
    height: 30px;
  }

  .chat-messages {
    min-height: 118px;
    max-height: 150px;
    padding: 11px 12px;
  }

  .chat-message p {
    padding: 9px 10px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .chat-prompts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 9px 12px 0;
  }

  .chat-prompts button {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 0.7rem;
    line-height: 1.18;
  }

  .chat-profile-form {
    gap: 8px;
    padding: 10px 12px 0;
  }

  .chat-profile-form p {
    font-size: 0.76rem;
  }

  .chat-profile-fields {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .chat-profile-form input {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .chat-profile-form button {
    min-height: 38px;
    font-size: 0.78rem;
  }

  .chat-form {
    gap: 7px;
    padding: 10px 12px;
  }

  .chat-form textarea {
    min-height: 39px;
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .chat-form button {
    min-height: 39px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .chat-status {
    margin: 0 12px 10px;
    font-size: 0.72rem;
  }

}

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

  .js .reveal {
    opacity: 1;
    translate: 0 0;
  }
}
