/* =====================================================
ARI DESIGN SYSTEM V1 — HOME
===================================================== */

.ari-v1-home {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 10px 14px 100px;
  background:
    radial-gradient(circle at 50% 6%, rgba(34, 211, 238, 0.20), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(59, 130, 246, 0.14), transparent 32%),
    linear-gradient(180deg, #06111f 0%, #07182b 46%, #040b18 100%);
  color: #f4f8ff;
  position: relative;
  overflow-x: hidden;
}

.ari-v1-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(34,211,238,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* Header */

.ari-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
}

.ari-header .menu-btn,
.ari-header .profile-btn {
  margin: 0;
  height: 46px;
  min-width: 54px;
  border-radius: 18px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  background: rgba(8, 18, 37, 0.72);
  color: white;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.14);
}

.ari-header .profile-btn {
  min-width: 88px;
  font-size: 14px;
}

.ari-brand-center {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ari-wordmark {
  color: #22d3ee;
  text-decoration: none;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 0.95;
  text-shadow:
    0 0 12px rgba(34, 211, 238, 0.45),
    0 0 28px rgba(34, 211, 238, 0.20);
}

.ari-engine-line {
  margin: 4px 0 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.32em;
  color: rgba(244, 248, 255, 0.82);
  white-space: nowrap;
}

.ari-engine-line span {
  color: #22d3ee;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.55);
}

/* Header avatar hidden at first */

.ari-header-avatar-shell {
  display: none;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.65);
  background: rgba(8, 18, 37, 0.8);
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.14);
  overflow: hidden;
}

.ari-header-avatar-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversation-mode .ari-header-avatar-shell {
  display: block;
  animation: avatarArrive 0.55s ease both;
}

/* Welcome mode */

.ari-welcome {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 82px;
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.ari-hero-img {
  width: 330px;
  max-width: 92vw;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 34px rgba(0,0,0,0.45))
    drop-shadow(0 0 18px rgba(34,211,238,0.18));
  animation: ariHeroBreathe 4.6s ease-in-out infinite;
}

.ari-welcome-question {
  margin: 12px 0 0;
  font-size: 23px;
  line-height: 1.15;
  text-align: center;
  color: rgba(244, 248, 255, 0.82);
  font-weight: 850;
  transition: color 0.2s ease;
}

.ari-v1-home:focus-within .ari-welcome-question {
  color: rgba(244, 248, 255, 1);
}

/* Conversation shell */

.ari-conversation-shell {
  position: relative;
  z-index: 5;
  display: none;
  padding: 12px 0 24px;
}

.conversation-mode .ari-welcome {
  opacity: 0;
  transform: translateY(-36px) scale(0.86);
  pointer-events: none;
  position: absolute;
  inset: 72px 0 auto;
}

.conversation-mode .ari-conversation-shell {
  display: block;
  min-height: calc(100vh - 180px);
  padding-bottom: 110px;
  animation: conversationFadeIn 0.45s ease both;
}

.ari-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 8px 2px 24px;
  background: transparent !important;
  border: none !important;
  max-height: none !important;
  overflow: visible !important;
}

.ari-message {
  max-width: 86%;
  padding: 13px 15px;
  border-radius: 20px;
  line-height: 1.45;
}

.ari-message p {
  margin: 4px 0 0;
  color: #f4f8ff;
  font-size: 15px;
  font-weight: 700;
  white-space: pre-wrap;
}

.ari-label {
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.ari-ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(125, 211, 252, 0.14);
}

.ari-ai .ari-label {
  color: #67e8f9;
}

.ari-user {
  align-self: flex-end;
  text-align: right;
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.ari-user .ari-label {
  color: rgba(244,248,255,0.72);
}

/* Bottom input */

.ari-bottom-input {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 430px;
  transform: translateX(-50%);
  z-index: 60;
  padding: 12px 14px 18px;
  background:
    linear-gradient(180deg, rgba(4, 11, 24, 0), rgba(4, 11, 24, 0.94) 34%, #040b18 100%);
}

.ari-input-shell {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 30px;
  background: rgba(8, 18, 37, 0.94);
  border: 1px solid rgba(125, 211, 252, 0.48);
  box-shadow:
    0 0 28px rgba(34, 211, 238, 0.16),
    0 20px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ari-v1-home #ariInput {
  flex: 1;
  min-height: 44px;
  max-height: 180px;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  padding: 9px 0;
}

.ari-v1-home #ariInput::placeholder {
  color: rgba(226, 232, 240, 0.54);
}

.ari-send-btn {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2563eb, #22d3ee);
  color: white;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.34);
  cursor: pointer;
}

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

/* Pending action */

.ari-v1-home .pending-action-bar {
  display: none;
  margin-top: 14px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.32);
}

.ari-v1-home .pending-action-bar.show {
  display: block;
}

.ari-v1-home .pending-action-bar p {
  margin: 0 0 10px;
  color: white;
  font-weight: 900;
}

.ari-v1-home .pending-action-buttons {
  display: flex;
  gap: 8px;
}

.ari-v1-home .pending-action-buttons button {
  flex: 1;
  border: none;
  border-radius: 14px;
  padding: 10px;
  font-weight: 950;
}

/* Thinking ring */

.ari-thinking-mode .ari-header-avatar-shell {
  animation:
    avatarArrive 0.55s ease both,
    avatarThinkingRing 1.2s ease-in-out infinite;
}

/* Side menu preserved */

.ari-side-menu {
  left: -100vw !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh !important;
  padding: 92px 24px 32px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.18), transparent 34%),
    linear-gradient(180deg, #06111f 0%, #07182b 50%, #040b18 100%) !important;
  border-right: none !important;
  overflow-y: auto !important;
  z-index: 9999;
}

.ari-side-menu.open {
  left: 0 !important;
}

.ari-side-menu a {
  font-size: 22px !important;
  padding: 16px 0 !important;
  color: white !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  text-decoration: none;
}

.ari-side-menu .close-menu {
  top: 28px !important;
  right: 30px !important;
  font-size: 34px !important;
  color: white !important;
}

.menu-overlay {
  z-index: 9998;
}

/* Nav dashboard */

.nav-dashboard-card {
  margin: 8px 0 26px;
  padding: 24px 18px 22px;
  border-radius: 32px;
  background: rgba(8, 18, 37, 0.82);
  border: 1px solid rgba(34, 211, 238, 0.38);
  box-shadow:
    0 0 34px rgba(34, 211, 238, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.nav-dashboard-label {
  margin: 0 0 12px;
  text-align: center;
  color: #67e8f9;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.28em;
}

.nav-meter-wrap {
  position: relative;
  height: 210px;
}

.nav-meter {
  width: 100%;
  height: auto;
  overflow: visible;
}

.nav-meter-bg,
.nav-meter-fill {
  fill: none;
  stroke-width: 22;
  stroke-linecap: round;
}

.nav-meter-bg {
  stroke: rgba(148, 163, 184, 0.24);
}

.nav-meter-fill {
  stroke: #22d3ee;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  filter:
    drop-shadow(0 8px 12px rgba(34,211,238,0.25))
    drop-shadow(0 0 18px rgba(34,211,238,0.38));
  transition: stroke-dashoffset 0.9s ease, stroke 0.35s ease;
}

.nav-meter-fill.nav-meter-yellow {
  stroke: #f59e0b;
}

.nav-meter-fill.nav-meter-red {
  stroke: #ef4444;
}

.nav-meter-text {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.nav-meter-text h2 {
  margin: 0;
  color: white;
  font-size: 64px;
  line-height: 1;
  font-weight: 950;
}

.nav-meter-text span {
  display: block;
  margin-top: 10px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 20px;
  font-weight: 850;
}

.nav-dashboard-link {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: #67e8f9 !important;
  font-size: 16px !important;
  padding: 12px !important;
  border-radius: 18px;
  background: rgba(34, 211, 238, 0.10);
  border-bottom: none !important;
}

/* Animations */

@keyframes ariHeroBreathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.012);
  }
}

@keyframes avatarArrive {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.82);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes avatarThinkingRing {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(34, 211, 238, 0.24),
      inset 0 1px 0 rgba(255,255,255,0.14);
  }

  50% {
    box-shadow:
      0 0 26px rgba(34, 211, 238, 0.58),
      inset 0 1px 0 rgba(255,255,255,0.20);
  }
}

@keyframes conversationFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small phones */

@media (max-width: 390px) {
  .ari-wordmark {
    font-size: 34px;
  }

  .ari-engine-line {
    font-size: 8px;
  }

  .ari-hero-img {
    width: 300px;
  }

  .ari-welcome-question {
    font-size: 21px;
  }

  .ari-message {
    max-width: 90%;
  }
}

/* =====================================================
ARI V1 NAV FIX — keep side menu out of page flow
===================================================== */

.ari-v1-home .ari-side-menu,
.ari-v1-home .side-menu {
  position: fixed !important;
  top: 0 !important;
  left: -100vw !important;
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  transform: none !important;
}

.ari-v1-home .ari-side-menu.open,
.ari-v1-home .side-menu.open {
  left: 0 !important;
}

.ari-v1-home #menuOverlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
}
/* =====================================================
ARI V1 SIDE MENU FINAL FIX
===================================================== */

.ari-v1-home .side-menu,
.ari-v1-home .ari-side-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  max-width: none !important;
  transform: translateX(-105%) !important;
  transition: transform 0.28s ease !important;
  z-index: 9999 !important;
}

.ari-v1-home .side-menu.open,
.ari-v1-home .ari-side-menu.open {
  transform: translateX(0) !important;
}

.ari-v1-home #menuOverlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
}
/* =====================================================
ARI V1 MOBILE VIEWPORT + HERO POSITION FIX
===================================================== */

html,
body {
  background: #040b18 !important;
}

.ari-v1-home {
  width: 100vw !important;
  max-width: 430px !important;
  min-height: 100dvh !important;
  padding-top: env(safe-area-inset-top) !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  padding-bottom: 120px !important;
}

.ari-header {
  height: 82px !important;
}

.ari-welcome {
  min-height: calc(100dvh - 210px) !important;
  justify-content: flex-start !important;
  padding-top: 120px !important;
  padding-bottom: 0 !important;
}

.ari-hero-img {
  width: 360px !important;
  max-width: 92vw !important;
}

.ari-welcome-question {
  margin-top: 8px !important;
}

.ari-bottom-input {
  bottom: env(safe-area-inset-bottom) !important;
  padding-bottom: 18px !important;
}
/* =====================================================
ARI V1 HORIZONTAL OVERFLOW FIX
===================================================== */

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  background: #040b18 !important;
}

.ari-v1-home {
  width: 100% !important;
  max-width: 430px !important;
  margin: 0 auto !important;
  overflow-x: hidden !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.ari-header {
  width: 100% !important;
  overflow: visible !important;
}

.ari-brand-center {
  max-width: 180px !important;
}

.ari-wordmark {
  font-size: 34px !important;
}

.ari-engine-line {
  font-size: 8px !important;
  letter-spacing: 0.24em !important;
}

.ari-header .profile-btn {
  min-width: 82px !important;
  max-width: 82px !important;
  font-size: 13px !important;
  padding: 0 10px !important;
}

.ari-bottom-input {
  width: 100% !important;
  max-width: 430px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.ari-input-shell {
  max-width: 100% !important;
}


/* =====================================================
ARI V1 HARD CENTER + HEADER FIX
===================================================== */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  background: #040b18 !important;
}

body {
  display: flex !important;
  justify-content: center !important;
}

main#ariApp.ari-v1-home {
  box-sizing: border-box !important;
  width: min(100vw, 430px) !important;
  max-width: 430px !important;
  margin: 0 auto !important;
  padding: env(safe-area-inset-top) 14px 120px !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

/* Header layout */
main#ariApp .ari-header {
  width: 100% !important;
  height: 82px !important;
  display: grid !important;
  grid-template-columns: 64px 1fr 92px !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
}

/* Bigger hamburger */
main#ariApp .menu-btn {
  width: 58px !important;
  min-width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

/* Keep logo centered in grid, not absolute */
main#ariApp .ari-brand-center {
  position: static !important;
  transform: none !important;
  max-width: none !important;
  justify-self: center !important;
}

/* Sign in fully inside screen */
main#ariApp .profile-btn {
  width: 88px !important;
  min-width: 88px !important;
  max-width: 88px !important;
  height: 58px !important;
  padding: 0 !important;
  font-size: 14px !important;
  justify-self: end !important;
}

/* Input fully inside screen */
main#ariApp .ari-bottom-input {
  box-sizing: border-box !important;
  width: min(100vw, 430px) !important;
  max-width: 430px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}

main#ariApp .ari-input-shell {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* =====================================================
ARI V1 BRAND FONT UPGRADE — AUDIOWIDE + ORBITRON
===================================================== */

main#ariApp .ari-wordmark {
  font-family: "Audiowide", sans-serif !important;
  font-weight: 400 !important;
  font-size: 42px !important;
  letter-spacing: 0.16em !important;
  color: #22d3ee !important;
  text-decoration: none !important;
  line-height: 0.95 !important;

  text-shadow:
    0 0 6px rgba(34,211,238,0.95),
    0 0 14px rgba(34,211,238,0.78),
    0 0 30px rgba(34,211,238,0.48),
    0 0 52px rgba(34,211,238,0.24) !important;
}

main#ariApp .ari-wordmark::first-letter {
  color: #f8fdff !important;
  text-shadow:
    0 0 6px rgba(255,255,255,0.72),
    0 0 16px rgba(34,211,238,0.58),
    0 0 32px rgba(34,211,238,0.35) !important;
}

main#ariApp .ari-engine-line {
  font-family: "Orbitron", sans-serif !important;
  font-weight: 800 !important;
  margin-top: 7px !important;
  font-size: 9.5px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: #c8ffff !important;

  text-shadow:
    0 0 4px rgba(200,255,255,0.65),
    0 0 10px rgba(200,255,255,0.42),
    0 0 20px rgba(34,211,238,0.26) !important;
}

main#ariApp .ari-engine-line span {
  color: #c8ffff !important;
  text-shadow:
    0 0 4px rgba(200,255,255,0.75),
    0 0 10px rgba(200,255,255,0.48),
    0 0 22px rgba(34,211,238,0.30) !important;
}
/* =====================================================
ARI V1 — RAISE ARI + GLASS COMPOSER UPGRADE
===================================================== */

/* Raise Ari + prompt */
main#ariApp .ari-welcome {
  min-height: calc(100dvh - 175px) !important;
  justify-content: flex-start !important;
  padding-top: 68px !important;
  padding-bottom: 0 !important;
}

main#ariApp .ari-hero-img {
  width: 385px !important;
  max-width: 96vw !important;
  transform: translateY(-115px) !important;
}

main#ariApp .ari-welcome-prompt {
  margin-top: -24px !important;
}

/* Softer, inviting prompt */
main#ariApp .ari-prompt-kicker {
  margin: 0 0 7px !important;
  font-family: "Orbitron", sans-serif !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(103, 232, 249, 0.72) !important;
}

main#ariApp .ari-welcome-question {
  margin: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 25px !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  letter-spacing: -0.035em !important;
  color: rgba(244, 248, 255, 0.92) !important;
  text-shadow:
    0 0 18px rgba(34, 211, 238, 0.12),
    0 1px 0 rgba(255,255,255,0.12) !important;
}

/* Glass composer dock */
main#ariApp .ari-bottom-input {
  bottom: env(safe-area-inset-bottom) !important;
  padding: 10px 14px 20px !important;
  background:
    linear-gradient(
      180deg,
      rgba(4, 11, 24, 0),
      rgba(4, 11, 24, 0.72) 38%,
      rgba(4, 11, 24, 0.96) 100%
    ) !important;
}

main#ariApp .ari-input-shell {
  position: relative !important;
  min-height: 78px !important;
  padding: 13px 14px 13px 22px !important;
  border-radius: 34px !important;

  background:
    linear-gradient(145deg, rgba(10, 22, 42, 0.72), rgba(5, 12, 28, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(125, 211, 252, 0.16), transparent 34%) !important;

  border: 1px solid rgba(103, 232, 249, 0.56) !important;

  box-shadow:
    0 0 22px rgba(34, 211, 238, 0.18),
    0 0 46px rgba(34, 211, 238, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 34px rgba(0, 0, 0, 0.28) !important;

  backdrop-filter: blur(22px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(150%) !important;

  overflow: hidden !important;
  animation: ariComposerBreath 7s ease-in-out infinite;
}

/* LED strip */
main#ariApp .ari-input-shell::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 86px;
  top: 9px;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(103, 232, 249, 0.35),
      rgba(34, 211, 238, 0.95),
      rgba(103, 232, 249, 0.35),
      transparent
    );
  box-shadow:
    0 0 8px rgba(34, 211, 238, 0.75),
    0 0 18px rgba(34, 211, 238, 0.38);
  opacity: 0.78;
  pointer-events: none;
}

/* Glass reflection */
main#ariApp .ari-input-shell::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 50%;
  border-radius: 34px 34px 24px 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.015),
      transparent
    );
  pointer-events: none;
}

/* Input text */
main#ariApp #ariInput {
  position: relative !important;
  z-index: 2 !important;
  min-height: 48px !important;
  padding: 12px 0 8px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: rgba(244, 248, 255, 0.96) !important;
}

main#ariApp #ariInput::placeholder {
  color: rgba(226, 232, 240, 0.56) !important;
  font-weight: 800 !important;
}

/* Send button integrated into glass */
main#ariApp .ari-send-btn {
  position: relative !important;
  z-index: 3 !important;

  width: 58px !important;
  min-width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;

  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.34), transparent 24%),
    linear-gradient(135deg, #2563eb 0%, #22d3ee 100%) !important;

  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.55),
    0 0 44px rgba(34, 211, 238, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.34) !important;

  transform: translateY(-1px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

main#ariApp .ari-send-btn:active {
  transform: translateY(0) scale(0.94);
  filter: brightness(1.15);
}

/* Composer focus state */
main#ariApp .ari-input-shell:focus-within {
  border-color: rgba(103, 232, 249, 0.86) !important;
  box-shadow:
    0 0 26px rgba(34, 211, 238, 0.30),
    0 0 62px rgba(34, 211, 238, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -18px 34px rgba(0, 0, 0, 0.28) !important;
}

/* Breathing glow */
@keyframes ariComposerBreath {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(34, 211, 238, 0.16),
      0 0 42px rgba(34, 211, 238, 0.07),
      0 24px 60px rgba(0, 0, 0, 0.46),
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 0 -18px 34px rgba(0, 0, 0, 0.28);
  }

  50% {
    box-shadow:
      0 0 28px rgba(34, 211, 238, 0.25),
      0 0 58px rgba(34, 211, 238, 0.11),
      0 24px 60px rgba(0, 0, 0, 0.46),
      inset 0 1px 0 rgba(255, 255, 255, 0.19),
      inset 0 -18px 34px rgba(0, 0, 0, 0.28);
  }
}

/* =====================================================
ARI V1 — PROMPT ABOVE COMPOSER + COMPOSER LIFT
===================================================== */

/* Keep Ari high */
main#ariApp .ari-hero-img {
  width: 385px !important;
  max-width: 96vw !important;
  transform: translateY(-115px) !important;
}

/* Move prompt out from behind composer */
main#ariApp .ari-welcome-prompt {
  position: fixed !important;
  left: 50% !important;
  bottom: 137px !important;
  transform: translateX(-50%) !important;
  width: min(92vw, 390px) !important;
  z-index: 55 !important;
  text-align: center !important;
  pointer-events: none !important;
}

main#ariApp .ari-welcome-question {
  margin: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 24px !important;
  line-height: 1.22 !important;
  font-weight: 750 !important;
  letter-spacing: -0.035em !important;
  color: rgba(244, 248, 255, 0.92) !important;
  text-shadow:
    0 0 18px rgba(34, 211, 238, 0.12),
    0 1px 0 rgba(255,255,255,0.12) !important;
}

/* Lift composer */
main#ariApp .ari-bottom-input {
  bottom: calc(env(safe-area-inset-bottom) + 28px) !important;
  padding: 10px 14px 14px !important;
}

/* Make room so page does not feel cramped */
main#ariApp.ari-v1-home {
  padding-bottom: 170px !important;
}
/* =====================================================
ARI V1 — FIX COMPOSER TAP BLOCKED BY MENU OVERLAY
===================================================== */

main#ariApp #menuOverlay,
.ari-v1-home #menuOverlay,
#menuOverlay {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

main#ariApp #menuOverlay.show,
.ari-v1-home #menuOverlay.show,
#menuOverlay.show,
main#ariApp #menuOverlay.open,
.ari-v1-home #menuOverlay.open,
#menuOverlay.open {
  display: block !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}
main#ariApp .ari-bottom-input {
  z-index: 200 !important;
}

main#ariApp .ari-input-shell,
main#ariApp #ariInput,
main#ariApp .ari-send-btn {
  pointer-events: auto !important;
}

.ari-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 20px;
  padding: 4px 2px;
}

.ari-typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow:
    0 0 8px rgba(103, 232, 249, 0.9),
    0 0 18px rgba(34, 211, 238, 0.45);
  animation: ariTypingPulse 1.15s ease-in-out infinite;
}

.ari-typing-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.ari-typing-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.ari-stop-btn {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.28), transparent 24%),
    linear-gradient(135deg, #ef4444 0%, #fb7185 100%) !important;

  box-shadow:
    0 0 18px rgba(248, 113, 113, 0.55),
    0 0 38px rgba(239, 68, 68, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

@keyframes ariTypingPulse {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: translateY(0) scale(0.88);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px) scale(1.08);
  }
}
main#ariApp.ari-keyboard-mode .ari-welcome-prompt {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

main#ariApp.ari-keyboard-mode .ari-bottom-input {
  bottom: calc(env(safe-area-inset-bottom) + 8px) !important;
}

main#ariApp.ari-keyboard-mode .ari-hero-img {
  width: 385px !important;
  max-width: 96vw !important;
  transform: translateY(-115px) !important;
}

/* =====================================================
ARI V1 — iOS KEYBOARD / NO PAGE SCROLL FIX
===================================================== */

html,
body {
  height: 100% !important;
  overflow: hidden !important;
}

body {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
}

main#ariApp.ari-v1-home {
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: env(safe-area-inset-top) 14px 0 !important;
}

main#ariApp .ari-header {
  flex-shrink: 0 !important;
}

main#ariApp .ari-welcome {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding-bottom: 120px !important;
}

main#ariApp .ari-conversation-shell {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-bottom: 120px !important;
}

main#ariApp .ari-thread {
  overflow: visible !important;
}

main#ariApp .ari-bottom-input {
  position: sticky !important;
  left: auto !important;
  right: auto !important;
  bottom: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 430px !important;
  flex-shrink: 0 !important;
  z-index: 200 !important;
  padding: 10px 0 calc(env(safe-area-inset-bottom) + 12px) !important;
}
/* =====================================================
ARI V1 — LIVING BACKGROUND + THINKING LED
===================================================== */

main#ariApp.ari-v1-home::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.34;
  background:
    radial-gradient(circle at 50% 31%, rgba(34, 211, 238, 0.18), transparent 23%),
    radial-gradient(circle at 20% 42%, rgba(59, 130, 246, 0.10), transparent 20%),
    radial-gradient(circle at 80% 58%, rgba(34, 211, 238, 0.08), transparent 22%),
    repeating-radial-gradient(circle at 50% 38%, rgba(34, 211, 238, 0.12) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  animation: ariAmbientPulse 10s ease-in-out infinite;
}

main#ariApp .ari-welcome::before {
  content: "";
  position: absolute;
  inset: -40px -20px 90px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(30deg, rgba(34,211,238,0.10) 1px, transparent 1px),
    linear-gradient(150deg, rgba(34,211,238,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 44%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 44%, black 0%, transparent 72%);
  animation: ariGridDrift 18s linear infinite;
}

main#ariApp .ari-input-shell::before {
  animation: ariLedIdle 5.5s ease-in-out infinite;
}

main#ariApp.ari-thinking-mode .ari-input-shell::before,
main#ariApp:has(#ariInput:disabled) .ari-input-shell::before {
  height: 3px;
  opacity: 1;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(103, 232, 249, 0.20) 18%,
      rgba(34, 211, 238, 1) 48%,
      rgba(147, 197, 253, 1) 52%,
      rgba(34, 211, 238, 1) 56%,
      rgba(103, 232, 249, 0.20) 82%,
      transparent 100%
    );
  background-size: 220% 100%;
  animation: ariLedThinking 1.15s linear infinite;
  box-shadow:
    0 0 10px rgba(34, 211, 238, 0.95),
    0 0 22px rgba(34, 211, 238, 0.62),
    0 0 42px rgba(59, 130, 246, 0.32);
}

main#ariApp.ari-thinking-mode::after,
main#ariApp:has(#ariInput:disabled)::after {
  opacity: 0.48;
  animation: ariThinkingField 2.2s ease-in-out infinite;
}

@keyframes ariAmbientPulse {
  0%, 100% {
    opacity: 0.26;
    transform: scale(1);
    filter: brightness(0.95);
  }

  50% {
    opacity: 0.42;
    transform: scale(1.018);
    filter: brightness(1.12);
  }
}

@keyframes ariGridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 46px 46px, -46px 46px;
  }
}

@keyframes ariLedIdle {
  0%, 100% {
    opacity: 0.42;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.88;
    filter: brightness(1.25);
  }
}

@keyframes ariLedThinking {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -120% 0;
  }
}

@keyframes ariThinkingField {
  0%, 100% {
    opacity: 0.34;
    filter: brightness(1);
  }

  50% {
    opacity: 0.58;
    filter: brightness(1.28);
  }
}

/* =====================================================
ARI V1 — FINAL COMPOSER QUESTION CLEANUP
===================================================== */

main#ariApp .ari-welcome-prompt,
main#ariApp .ari-welcome-question {
  display: none !important;
}

main#ariApp #ariInput::placeholder {
  color: rgba(226, 232, 240, 0.62) !important;
  font-weight: 850 !important;
}

/* =====================================================
ARI V1 — PREMIUM COMPOSER + HALO FINAL TWEAK
===================================================== */

/* stronger soft halo behind Ari */
main#ariApp .ari-welcome::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 37%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 62%);
  filter: blur(18px);
  animation: ariHeroHaloPulse 8s ease-in-out infinite;
}

/* taller premium composer */
main#ariApp .ari-input-shell {
  min-height: 98px !important;
  padding: 18px 16px 16px 24px !important;
  border-radius: 40px !important;
}

/* vertically center placeholder/input better */
main#ariApp #ariInput {
  min-height: 62px !important;
  padding: 18px 0 8px !important;
  font-size: 19px !important;
  line-height: 1.35 !important;
}

/* bigger integrated send button */
main#ariApp .ari-send-btn {
  width: 64px !important;
  min-width: 64px !important;
  height: 64px !important;
  margin-bottom: 1px !important;
}

/* LED position for taller composer */
main#ariApp .ari-input-shell::before {
  top: 12px !important;
  left: 32px !important;
  right: 92px !important;
}

/* tighten dead space slightly */
main#ariApp .ari-welcome {
  padding-bottom: 86px !important;
}

@keyframes ariHeroHaloPulse {
  0%, 100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
/* =====================================================
ARI V2 COMMAND CONSOLE
===================================================== */

main#ariApp .ari-bottom-input{
    bottom:calc(env(safe-area-inset-bottom) + 12px)!important;
    padding:12px 14px 18px!important;
}

main#ariApp .ari-input-shell{

    min-height:138px!important;
    border-radius:38px!important;

    padding:22px 18px 18px 22px!important;

    display:flex!important;
    align-items:center!important;

    overflow:hidden!important;

    background:
      linear-gradient(160deg,
      rgba(13,27,48,.82),
      rgba(6,14,29,.95))!important;

    border:1px solid rgba(103,232,249,.45)!important;

    box-shadow:
      0 0 18px rgba(34,211,238,.18),
      0 0 60px rgba(34,211,238,.10),
      inset 0 1px 0 rgba(255,255,255,.15),
      inset 0 -24px 42px rgba(0,0,0,.32)!important;
}

main#ariApp #ariInput{

    min-height:92px!important;
    max-height:92px!important;

    padding-top:18px!important;

    font-size:21px!important;
    line-height:1.35!important;
    font-weight:800!important;

    display:flex!important;
    align-items:center!important;
}

main#ariApp #ariInput::placeholder{

    font-size:20px!important;
    line-height:1.35!important;
    font-weight:750!important;

    color:rgba(240,248,255,.70)!important;
}

main#ariApp .ari-send-btn{

    width:72px!important;
    height:72px!important;
    min-width:72px!important;

    border-radius:50%!important;

    margin-left:14px!important;

    font-size:28px!important;

    box-shadow:
      0 0 22px rgba(34,211,238,.45),
      0 0 54px rgba(34,211,238,.24),
      inset 0 1px 0 rgba(255,255,255,.32)!important;
}
/* =====================================================
ARI V2 — AI REACTOR SEND BUTTON
===================================================== */

main#ariApp .ari-send-btn{

    position:relative!important;

    width:60px!important;
    height:60px!important;
    min-width:60px!important;

    margin-left:12px!important;

    display:flex!important;
    align-items:center!important;
    justify-content:center!important;

    border:none!important;
    border-radius:50%!important;

    color:#ffffff!important;
    font-size:22px!important;
    font-weight:900!important;

    cursor:pointer!important;

    background:
      radial-gradient(circle at 32% 28%,
        rgba(255,255,255,.30),
        transparent 22%),
      radial-gradient(circle,
        #45d8ff 0%,
        #1da9ff 48%,
        #0b3e77 100%)!important;

    box-shadow:
      0 0 18px rgba(34,211,238,.45),
      0 0 42px rgba(34,211,238,.22),
      inset 0 1px 0 rgba(255,255,255,.28)!important;

    transition:
      transform .18s ease,
      box-shadow .25s ease;
}

/* rotating reactor ring */

main#ariApp .ari-send-btn::before{

    content:"";

    position:absolute;
    inset:-6px;

    border-radius:50%;

    border:2px solid rgba(103,232,249,.32);

    border-top-color:#67e8f9;
    border-right-color:#22d3ee;

    animation:ariReactorRotate 8s linear infinite;
}

/* glowing energy core */

main#ariApp .ari-send-btn::after{

    content:"";

    position:absolute;
    inset:10px;

    border-radius:50%;

    background:
      radial-gradient(circle,
      rgba(255,255,255,.30),
      transparent 72%);

    pointer-events:none;

    animation:ariCorePulse 4.5s ease-in-out infinite;
}

/* hover / tap */

main#ariApp .ari-send-btn:hover{
    transform:scale(1.05);
}

main#ariApp .ari-send-btn:active{
    transform:scale(.93);
}

/* Thinking mode */

main#ariApp.ari-thinking-mode .ari-send-btn::before{

    animation:
      ariReactorRotate 1s linear infinite;

    border-color:rgba(103,232,249,.55);
    border-top-color:#ffffff;
    border-right-color:#67e8f9;

    box-shadow:
      0 0 14px rgba(34,211,238,.8);
}

main#ariApp.ari-thinking-mode .ari-send-btn{

    box-shadow:
      0 0 26px rgba(34,211,238,.65),
      0 0 60px rgba(34,211,238,.34),
      inset 0 1px 0 rgba(255,255,255,.32)!important;
}

/* Animations */

@keyframes ariReactorRotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes ariCorePulse{

    0%,100%{
        opacity:.45;
        transform:scale(.94);
    }

    50%{
        opacity:1;
        transform:scale(1.06);
    }
}

/* =====================================================
ARI V2 — TRANSPARENT GLASS REACTOR SEND BUTTON
===================================================== */

main#ariApp .ari-send-btn {
  position: relative !important;

  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  margin-left: 12px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 50% !important;
  border: 1px solid rgba(180, 255, 255, 0.35) !important;

  color: rgba(200, 255, 255, 0.94) !important;
  font-size: 22px !important;
  font-weight: 950 !important;
  text-shadow:
    0 0 6px rgba(200, 255, 255, 0.85),
    0 0 14px rgba(34, 211, 238, 0.55) !important;

  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.30), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(103,232,249,0.30), transparent 42%),
    linear-gradient(145deg, rgba(180,255,255,0.14), rgba(4,11,24,0.44)) !important;

  backdrop-filter: blur(12px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(170%) !important;

  box-shadow:
    0 0 0 5px rgba(34,211,238,0.08),
    0 0 0 10px rgba(34,211,238,0.035),
    0 0 24px rgba(34,211,238,0.42),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -10px 22px rgba(4,11,24,0.38) !important;

  overflow: visible !important;
}

/* segmented reactor ring */
main#ariApp .ari-send-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;

  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(200,255,255,0.95) 24deg,
      transparent 48deg,
      transparent 110deg,
      rgba(34,211,238,0.85) 146deg,
      transparent 184deg,
      transparent 250deg,
      rgba(147,197,253,0.70) 286deg,
      transparent 330deg
    );

  mask: radial-gradient(circle, transparent 59%, black 62%, black 70%, transparent 73%);
  -webkit-mask: radial-gradient(circle, transparent 59%, black 62%, black 70%, transparent 73%);

  animation: ariReactorRotate 7s linear infinite;
  opacity: 0.9;
}

/* dotted outer halo */
main#ariApp .ari-send-btn::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;

  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(200,255,255,0.62) 0deg 3deg,
      transparent 3deg 10deg
    );

  mask: radial-gradient(circle, transparent 73%, black 75%, black 78%, transparent 80%);
  -webkit-mask: radial-gradient(circle, transparent 73%, black 75%, black 78%, transparent 80%);

  animation: ariReactorRotateReverse 14s linear infinite;
  opacity: 0.42;
}

/* thinking state */
main#ariApp.ari-thinking-mode .ari-send-btn::before {
  animation-duration: 0.9s;
  opacity: 1;
}

main#ariApp.ari-thinking-mode .ari-send-btn::after {
  animation-duration: 2s;
  opacity: 0.75;
}

main#ariApp.ari-thinking-mode .ari-send-btn {
  box-shadow:
    0 0 0 5px rgba(34,211,238,0.13),
    0 0 0 10px rgba(34,211,238,0.06),
    0 0 30px rgba(34,211,238,0.62),
    0 0 62px rgba(34,211,238,0.28),
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -10px 22px rgba(4,11,24,0.38) !important;
}

@keyframes ariReactorRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ariReactorRotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
ARI V2 — LED ENGINE LETTERS
===================================================== */

main#ariApp .ari-engine-line {
  position: relative !important;
  font-family: "Orbitron", sans-serif !important;
  color: rgba(200, 255, 255, 0.92) !important;
  text-shadow:
    0 0 4px rgba(200,255,255,.95),
    0 0 10px rgba(34,211,238,.80),
    0 0 22px rgba(34,211,238,.42),
    0 0 38px rgba(34,211,238,.22) !important;

  animation: ariLedTextPulse 4.8s ease-in-out infinite;
}

main#ariApp .ari-engine-line span {
  color: #e8ffff !important;
  text-shadow:
    0 0 5px rgba(232,255,255,1),
    0 0 12px rgba(34,211,238,.9),
    0 0 26px rgba(34,211,238,.48) !important;
}

main#ariApp .ari-engine-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(103,232,249,.35),
    rgba(200,255,255,.95),
    rgba(103,232,249,.35),
    transparent
  );
  box-shadow:
    0 0 8px rgba(34,211,238,.8),
    0 0 18px rgba(34,211,238,.45);
  opacity: .75;
}

@keyframes ariLedTextPulse {
  0%, 100% {
    opacity: .82;
    filter: brightness(.92);
  }

  50% {
    opacity: 1;
    filter: brightness(1.35);
  }
}
/* =====================================================
ARI V2 — NEON R BOOT FLICKER
===================================================== */

main#ariApp .ari-r {
  display: inline-block;
  color: #f8ffff !important;
  text-shadow:
    0 0 5px rgba(255,255,255,.95),
    0 0 12px rgba(34,211,238,.95),
    0 0 26px rgba(34,211,238,.65),
    0 0 48px rgba(34,211,238,.36) !important;
  animation:
    ariRBootFlicker 1.9s ease-in-out 1,
    ariRIdleFlicker 32s linear infinite 4s;
}

main#ariApp.ari-thinking-mode .ari-r {
  animation: none !important;
  opacity: 1 !important;
  filter: brightness(1.25) !important;
}

@keyframes ariRBootFlicker {
  0% { opacity: 0; filter: brightness(.15); }
  8% { opacity: 1; filter: brightness(1.4); }
  14% { opacity: .12; filter: brightness(.2); }
  22% { opacity: 1; filter: brightness(1.2); }
  31% { opacity: .28; filter: brightness(.3); }
  42% { opacity: 1; filter: brightness(1.35); }
  52% { opacity: .08; filter: brightness(.15); }
  64% { opacity: .95; filter: brightness(1.1); }
  72% { opacity: .22; filter: brightness(.25); }
  84% { opacity: 1; filter: brightness(1.45); }
  100% { opacity: 1; filter: brightness(1); }
}

@keyframes ariRIdleFlicker {
  0%, 96%, 100% {
    opacity: 1;
    filter: brightness(1);
  }

  96.3% {
    opacity: .25;
    filter: brightness(.25);
  }

  96.8% {
    opacity: 1;
    filter: brightness(1.35);
  }

  97.2% {
    opacity: .18;
    filter: brightness(.22);
  }

  97.7% {
    opacity: 1;
    filter: brightness(1.15);
  }

  98.1% {
    opacity: .35;
    filter: brightness(.35);
  }

  98.6% {
    opacity: 1;
    filter: brightness(1);
  }
}
/* =====================================================
ARI V2 — MATCH I WITH NEON LOGO COLOR
===================================================== */

main#ariApp .ari-i {
  display: inline-block;
  color: #f8ffff !important;
  text-shadow:
    0 0 5px rgba(255,255,255,.95),
    0 0 12px rgba(34,211,238,.95),
    0 0 26px rgba(34,211,238,.65),
    0 0 48px rgba(34,211,238,.36) !important;
}