/* Single-page AI-first homepage preview — /new */

:root {
  --navy: #003366;
  --deep: #070d18;
  --deep-2: #0b1220;
  --blue: #0052a3;
  --red: #cc0000;
  --text: #e8eef7;
  --muted: #8b9bb0;
  --line: rgba(148, 163, 184, 0.18);
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --sans: "Inter", system-ui, sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--deep);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 10% 0%, rgba(0, 82, 163, 0.3), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 18%, rgba(0, 51, 102, 0.42), transparent 50%),
    linear-gradient(180deg, #050a12 0%, var(--deep-2) 42%, #08101c 100%);
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 32px);
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-link:hover { text-decoration: none; }
.brand-icon { width: 36px; height: 36px; border-radius: 10px; }

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.region-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.region-menu-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.region-menu select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 4.5rem;
  padding: 8px 28px 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, transparent 50%, #93c5fd 50%) calc(100% - 14px) calc(50% - 2px) / 5px 5px no-repeat,
    linear-gradient(135deg, #93c5fd 50%, transparent 50%) calc(100% - 9px) calc(50% - 2px) / 5px 5px no-repeat,
    rgba(11, 18, 32, 0.85);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.region-menu select:hover,
.region-menu select:focus {
  border-color: rgba(0, 82, 163, 0.55);
}

.region-menu select:focus-visible {
  box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.25);
}

.preview-chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: #fde68a;
  border: 1px solid rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.btn-demo,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

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

.btn-demo:hover,
.btn-primary:hover {
  background: #004080;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #64748b;
  background: rgba(15, 23, 42, 0.55);
  text-decoration: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.explainer-lede {
  color: var(--muted);
  max-width: 52ch;
  margin: -6px 0 18px;
  line-height: 1.5;
}

.explainer-player {
  max-width: 920px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.explainer-player video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 32px) 40px;
}

.hero {
  padding: 28px 0 20px;
  animation: rise 0.8s ease both;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  max-width: 16ch;
  margin-bottom: 14px;
}

.lede {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.launch-flash {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2px;
  margin-bottom: 8px;
  padding: 0.35rem 0.15rem;
  color: #93c5fd;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 42rem;
}

.launch-flash:hover {
  color: #fff;
}

.launch-flash:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
  border-radius: 4px;
}

.launch-flash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.45);
  animation: flash-pulse 1.6s ease-out infinite;
}

.launch-flash-copy {
  letter-spacing: -0.01em;
}

.launch-flash-pointer {
  display: inline-flex;
  color: inherit;
  animation: flash-nudge 1.6s ease-in-out infinite;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pricing-flash-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.45);
  animation: flash-pulse 1.6s ease-out infinite;
}

@keyframes flash-pulse {
  0% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(204, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0); }
}

@keyframes flash-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .launch-flash-dot,
  .pricing-flash-dot,
  .launch-flash-pointer {
    animation: none;
  }
}

.agent-micro {
  margin-top: 12px;
  color: #93a4b8;
  font-size: 0.9rem;
}

.agent {
  padding: 12px 0 8px;
  animation: rise 0.8s ease 0.06s both;
}

.agent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.85fr);
  gap: 14px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 18, 32, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
}

.panel-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.panel-lead {
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 42ch;
}

.panel-status {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.panel-messages {
  min-height: 140px;
  max-height: 240px;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(5, 10, 18, 0.35);
  transition: max-height 0.25s ease;
}

.panel:has(.composer-dock.is-collapsed) .panel-messages {
  max-height: 420px;
  min-height: 220px;
}

.msg {
  max-width: 94%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.94rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.msg-aadi {
  align-self: flex-start;
  background: rgba(30, 41, 59, 0.85);
  color: #e2e8f0;
}

.msg-aadi.is-collapsible:not(.is-expanded) .msg-full {
  display: none;
}

.msg-aadi.is-collapsible.is-expanded .msg-preview {
  display: none;
}

.msg-toggle {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  border: none;
  background: none;
  color: #93c5fd;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.msg-toggle:hover {
  color: #fff;
  text-decoration: underline;
}

.msg-user {
  align-self: flex-end;
  background: rgba(0, 82, 163, 0.28);
  border: 1px solid rgba(0, 82, 163, 0.35);
}

.msg-thinking {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.prompt-chips,
.followups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.followups[hidden] { display: none; }

.chip {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.5);
  color: #cbd5e1;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip:hover,
.chip.is-active {
  border-color: rgba(0, 82, 163, 0.55);
  background: rgba(0, 82, 163, 0.18);
  color: #fff;
}

.panel-route {
  padding: 10px 16px 8px;
  border-bottom: 1px solid var(--line);
}

.route-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.panel .mode-selector {
  margin-top: 0;
}

.composer-dock {
  margin: 0 12px 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 82, 163, 0.45);
  background:
    linear-gradient(180deg, rgba(0, 82, 163, 0.16), rgba(11, 18, 32, 0.92));
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.visitor-gate {
  display: grid;
  gap: 0.65rem;
  padding: 0.15rem 0.1rem 0.35rem;
}

.visitor-gate[hidden] {
  display: none !important;
}

.composer-dock.is-gated .composer-toggle,
.composer-dock.is-gated .composer-body,
.composer-dock.is-gated .ask-form {
  display: none !important;
}

.visitor-gate-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}

.visitor-gate-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.visitor-gate-error {
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(127, 29, 29, 0.35);
  color: #fecaca;
  font-size: 0.85rem;
}

.visitor-gate-field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #94a3b8;
}

.visitor-gate-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  font: inherit;
}

.visitor-gate-field input:focus,
.visitor-phone-row select:focus {
  outline: 2px solid rgba(96, 165, 250, 0.55);
  outline-offset: 1px;
}

.visitor-phone-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr);
  gap: 0.5rem;
  align-items: stretch;
}

.visitor-cc-label {
  display: block;
  margin: 0;
}

.visitor-phone-row select {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.45rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  font: inherit;
  font-size: 0.85rem;
}

.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;
}

.visitor-gate-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visitor-gate-privacy {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #94a3b8;
}

.visitor-gate-privacy a {
  color: #93c5fd;
}

.visitor-gate-submit {
  width: 100%;
  margin-top: 0.2rem;
}

.composer-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.composer-toggle .composer-toggle-hint {
  margin-left: auto;
}

.composer-toggle:hover .composer-toggle-hint {
  color: #e2e8f0;
}

.composer-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
}

.composer-toggle-hint {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.composer-toggle::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid #93c5fd;
  border-bottom: 1.5px solid #93c5fd;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.composer-dock.is-collapsed .composer-toggle {
  margin-bottom: 10px;
}

.composer-dock.is-collapsed .composer-toggle::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.composer-body {
  overflow: hidden;
  max-height: 280px;
  opacity: 1;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.2s ease;
}

.composer-dock.is-collapsed .composer-body {
  max-height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}

.composer-dock .prompt-chips,
.composer-dock .followups {
  padding: 0 0 10px;
}

.composer-dock .voice-hint {
  margin: 0 0 10px;
}

.ask-form {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  border-top: none;
}

.ask-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(7, 13, 24, 0.95);
  color: var(--text);
  padding: 14px 14px;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ask-form input:focus {
  border-color: rgba(0, 82, 163, 0.85);
  box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.22);
}

.ask-form input::placeholder {
  color: #64748b;
}

.composer-dock:focus-within {
  border-color: rgba(0, 82, 163, 0.75);
  box-shadow:
    0 0 0 1px rgba(0, 82, 163, 0.35),
    0 14px 32px rgba(0, 0, 0, 0.32);
}

.voice-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.voice-btn:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.1);
}

.voice-btn.is-recording {
  color: #fecaca;
  border-color: rgba(204, 0, 0, 0.55);
  background: rgba(204, 0, 0, 0.18);
}

.voice-btn.is-processing {
  color: #6ee7b7;
  border-color: rgba(5, 150, 105, 0.5);
}

.voice-hint {
  padding: 8px 0 0;
  font-size: 0.68rem;
  color: var(--muted);
  font-family: var(--mono);
}

.panel-note {
  padding: 0 16px 14px;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.45;
}

.scan-cards {
  display: grid;
  gap: 10px;
}

.scan-card {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.55);
}

.scan-card h3 {
  font-size: 0.72rem;
  margin-bottom: 5px;
  color: #93c5fd;
  font-family: var(--mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scan-card p {
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 500;
}

.section {
  padding: 44px 0 8px;
  animation: rise 0.8s ease both;
}

.section h2,
.grow h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 22ch;
}

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

.proof {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.5);
}

.proof-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 8px;
}

.proof h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.proof p {
  color: var(--muted);
  font-size: 0.86rem;
}

.grow {
  padding: 40px 0 16px;
}

.grow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.grow-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.45);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 163, 0.25);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.grow-steps h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.grow-steps p {
  color: var(--muted);
  font-size: 0.86rem;
}

.grow-outcome {
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 8px;
  line-height: 1.45;
  max-width: 42ch;
}

.grow-line {
  color: #cbd5e1;
  font-size: 0.92rem;
  max-width: 62ch;
}

.pricing {
  padding: 40px 0 28px;
  animation: rise 0.8s ease both;
}

.pricing h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 28ch;
}

.pricing-lede {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 58ch;
  margin-bottom: 18px;
}

.pricing-detail {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 58ch;
  margin-bottom: 8px;
}

.pricing-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-right: 8px;
  vertical-align: baseline;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.foot {
  margin-top: auto;
  padding: 24px clamp(16px, 4vw, 32px) 20px;
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.foot-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.foot-navs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.foot-meta a { color: #93c5fd; }

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.foot-nav a {
  color: var(--muted);
  text-decoration: none;
}

.foot-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.foot-legal {
  max-width: 72ch;
  line-height: 1.5;
  color: #64748b;
  font-size: 0.72rem;
}

.legal-stubs {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto 36px;
  padding: 0 clamp(16px, 4vw, 32px);
  display: grid;
  gap: 14px;
}

.legal-stubs article {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.4);
}

.legal-stubs h2 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.legal-updated {
  color: #64748b;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.legal-stubs p {
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.legal-stubs p:last-child {
  margin-bottom: 0;
}

.legal-stubs a { color: #93c5fd; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .agent-grid,
  .proof-grid,
  .grow-steps {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
}

@media (max-width: 560px) {
  .ask-form { flex-direction: column; }
  .panel-head { flex-direction: column; }
}

/* Floating chat opener — restores bottom-right launcher from the classic home */
.aadi-chat-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border: none;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font: 600 0.9375rem/1 var(--sans);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 82, 163, 0.35);
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.aadi-chat-fab:hover {
  background: #004080;
}

.aadi-chat-fab:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.aadi-chat-fab-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.aadi-chat-fab-label .aadi-wordmark {
  font-weight: 700;
}

.aadi-chat-fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

@media (max-width: 560px) {
  .aadi-chat-fab {
    right: 14px;
    bottom: 14px;
    padding: 0.85rem;
  }

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