.aidemo{
  --bg: #0c0b0e;
  --bg2: #141118;
  --panel: #181520;
  --panel2: #1f1b27;
  --ink: #f6f2ea;
  --mut: #bcb6ab;
  --steel: #9aa3ad;
  --ember: #ff6a1a;
  --ember2: #ff9d3a;
  --gold: #ffd24a;
  --line: #2c2836;
  --rad: 20px;
  --disp: "Unbounded", sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
  --green: #7fd18a;
  --green-glow: rgba(127, 209, 138, 0.4);
  --ember-glow: rgba(255, 106, 26, 0.3);
}
.aidemo *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.aidemo{
  scroll-behavior: smooth;
}
.aidemo{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.aidemo h1, .aidemo h2, .aidemo h3, .aidemo .disp{
  font-family: var(--disp);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.01em;
}
.aidemo a{
  color: inherit;
  text-decoration: none;
}
.aidemo .grain{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.aidemo .progress{
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  z-index: 1100;
  transition: width .1s;
}
.aidemo .wrap{
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 26px;
}
.aidemo .eyebrow{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember2);
  font-weight: 600;
}
.aidemo /* Scroll reveal class animations */
.rv{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.aidemo .rv.in{
  opacity: 1;
  transform: none;
}
.aidemo .rv.d1{ transition-delay: .1s; }
.aidemo .rv.d2{ transition-delay: .2s; }
.aidemo .rv.d3{ transition-delay: .3s; }
.aidemo section{
  padding: 84px 0;
}
.aidemo /* Hero Section (Adjusted without header) */
.hero{
  min-height: 95vh;
  display: grid;
  align-items: center;
  padding: 60px 0 80px;
  background: radial-gradient(ellipse at 78% -10%, rgba(255, 106, 26, 0.14), transparent 50%), 
              radial-gradient(ellipse at -8% 110%, rgba(255, 210, 74, 0.04), transparent 40%), 
              var(--bg);
}
.aidemo .hero-grid{
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
}
@media(max-width: 900px){.aidemo .hero-grid{
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
.aidemo .hero-grid > div:first-child{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}
.aidemo .hero h1{
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  margin: 18px 0 20px;
  line-height: 1.1;
  max-width: 20ch;
}
.aidemo .hero h1 em{
  font-style: normal;
  color: var(--ember2);
}
.aidemo .hero .lede{
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--mut);
  max-width: 48ch;
  margin-bottom: 8px;
}
.aidemo .hero .cta-row{
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.aidemo .hero .hint{
  font-size: 13px;
  color: var(--steel);
}
.aidemo .backlink{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--steel);
  font-size: 13px;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.aidemo .backlink:hover{
  color: var(--ember2);
}
.aidemo /* Phone and Switcher Wrapper */
.phone-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 395px;
  margin: 0 auto;
}
.aidemo /* Role Switcher tabs (Move above phone) */
.role-switcher{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
}
.aidemo .role-btn{
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--mut);
  padding: 10px 8px;
  border-radius: 12px;
  font-size: 12.5px;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.aidemo .role-btn:hover{
  color: var(--ink);
  border-color: var(--steel);
  background: var(--panel2);
}
.aidemo .role-btn.active{
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.12), rgba(255, 157, 58, 0.08));
  border-color: var(--ember);
  color: var(--ember2);
  box-shadow: 0 0 12px var(--ember-glow);
  font-weight: 600;
}
.aidemo /* Emulator Phone Container */
.phone{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 35px 80px -35px rgba(255, 106, 26, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.02);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.aidemo .phone-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 14px;
  border-bottom: 1px solid var(--line);
}
.aidemo .phone-header-left{
  display: flex;
  align-items: center;
  gap: 11px;
}
.aidemo .avatar{
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a0d04;
  font-weight: 700;
}
.aidemo .phone-top .nm{
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.aidemo .phone-top .st{
  font-size: 11.5px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.aidemo .phone-top .st:before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(127, 209, 138, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(127, 209, 138, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(127, 209, 138, 0); }
}
.aidemo /* App Integrations Status Icons */
.integrations-bar{
  display: flex;
  gap: 6px;
  align-items: center;
}
.aidemo .int-icon{
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--panel2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--steel);
  transition: all 0.3s;
  opacity: 0.4;
}
.aidemo .int-icon.active{
  opacity: 1;
  color: var(--ink);
  border-color: var(--ember2);
  box-shadow: 0 0 6px var(--ember-glow);
}
.aidemo /* Chat thread */
.thread{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 4px 6px;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
}
.aidemo .thread::-webkit-scrollbar{
  display: none;
}
.aidemo .bub{
  max-width: 86%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: slideInChat 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes slideInChat{
  to {
    opacity: 1;
    transform: none;
  }
}
.aidemo .bub.me{
  align-self: flex-end;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-bottom-right-radius: 4px;
  color: var(--ink);
}
.aidemo .bub.ai{
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.11), rgba(255, 157, 58, 0.06));
  border: 1px solid rgba(255, 106, 26, 0.22);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.aidemo .bub.ai b{
  color: var(--ember2);
}
.aidemo .bub .mini{
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 106, 26, 0.1);
  padding-top: 8px;
}
.aidemo .bub .row{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--mut);
}
.aidemo .bub .row .dot{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  margin-top: 7px;
  flex-shrink: 0;
}
.aidemo .bub .row.dim{
  color: var(--steel);
  opacity: .65;
}
.aidemo /* Chat Images */
.bub-img{
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 8px;
  border: 1px solid var(--line);
  display: block;
  animation: cardFadeIn 0.4s ease forwards;
}
.aidemo /* Chat interactive action buttons */
.chat-actions{
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.aidemo .chat-btn{
  background: rgba(255, 106, 26, 0.15);
  border: 1px solid rgba(255, 106, 26, 0.35);
  color: var(--ember2);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.aidemo .chat-btn:hover{
  background: var(--ember);
  color: #1a0d04;
  transform: translateY(-1px);
}
.aidemo .chat-btn.disabled{
  opacity: 0.5;
  pointer-events: none;
  border-color: var(--line);
  background: var(--panel2);
  color: var(--steel);
}
.aidemo /* Thinking Indicator animation */
.bub.thinking-indicator{
  align-self: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 75%;
}
.aidemo .thinking-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember2);
  opacity: 0.4;
  animation: bounce 1.4s infinite ease-in-out both;
}
.aidemo .thinking-dot:nth-child(1){ animation-delay: -0.32s; }
.aidemo .thinking-dot:nth-child(2){ animation-delay: -0.16s; }
@keyframes bounce{
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
.aidemo .bub.typing{
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 16px;
}
.aidemo .bub.typing span{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember2);
  opacity: .5;
  animation: blink 1.2s infinite;
}
.aidemo .bub.typing span:nth-child(2){ animation-delay: .2s; }
.aidemo .bub.typing span:nth-child(3){ animation-delay: .4s; }
@keyframes blink{
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.aidemo /* Problem Section */
.problem{
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}
.aidemo .problem-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}
@media(max-width: 900px){.aidemo .problem-grid{
    grid-template-columns: 1fr;
    gap: 48px;
  }

}
.aidemo .problem .lead{
  font-family: var(--disp);
  font-weight: 500;
  font-size: clamp(22px, 3.3vw, 36px);
  line-height: 1.28;
  max-width: 25ch;
  color: var(--ink);
}
.aidemo .problem .lead em{
  font-style: normal;
  color: var(--ember2);
}
.aidemo .problem .note{
  margin-top: 22px;
  color: var(--mut);
  font-size: 18px;
  max-width: 55ch;
}
.aidemo /* Animated Visual Section */
.problem-visual{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px 0;
  perspective: 1000px;
}
.aidemo .visual-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 680px;
  position: relative;
  height: 600px;
}
.aidemo /* Background connections SVG overlay */
.connections-overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.aidemo /* Floating Sources on the sides */
.floating-source{
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(24, 21, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 106, 26, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  animation: floatIcon 6s infinite ease-in-out;
}
.aidemo .floating-source svg{
  color: var(--mut);
  transition: color 0.3s, transform 0.3s;
}
.aidemo .floating-source:hover{
  border-color: var(--ember);
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 12px 28px rgba(255, 106, 26, 0.2), 0 0 20px var(--ember-glow);
}
.aidemo .floating-source:hover svg{
  color: var(--ink);
  transform: scale(1.05);
}
.aidemo /* Specific floating sources positions and animations */
.left-src-1{ left: 49px; top: 99px; animation-delay: 0s; }
.aidemo .left-src-2{ left: 19px; top: 219px; animation-delay: 1.5s; }
.aidemo .left-src-3{ left: 19px; top: 339px; animation-delay: 3.0s; }
.aidemo .left-src-4{ left: 49px; top: 459px; animation-delay: 4.5s; }
.aidemo .right-src-1{ right: 49px; top: 99px; animation-delay: 0.7s; }
.aidemo .right-src-2{ right: 19px; top: 219px; animation-delay: 2.2s; }
.aidemo .right-src-3{ right: 19px; top: 339px; animation-delay: 3.7s; }
.aidemo .right-src-4{ right: 49px; top: 459px; animation-delay: 5.2s; }
.aidemo /* Gmail */
.gmail-src{ border-color: rgba(234, 67, 53, 0.25); }
.aidemo .gmail-src:hover{ border-color: rgb(234, 67, 53); box-shadow: 0 12px 28px rgba(234, 67, 53, 0.2), 0 0 20px rgba(234, 67, 53, 0.15) !important; }
.aidemo /* Slack */
.slack-src{ border-color: rgba(54, 197, 240, 0.25); }
.aidemo .slack-src:hover{ border-color: rgb(54, 197, 240); box-shadow: 0 12px 28px rgba(54, 197, 240, 0.2), 0 0 20px rgba(54, 197, 240, 0.15) !important; }
.aidemo /* Telegram */
.telegram-src{ border-color: rgba(34, 158, 217, 0.25); }
.aidemo .telegram-src:hover{ border-color: rgb(34, 158, 217); box-shadow: 0 12px 28px rgba(34, 158, 217, 0.2), 0 0 20px rgba(34, 158, 217, 0.15) !important; }
.aidemo /* Google Drive */
.drive-src{ border-color: rgba(0, 102, 218, 0.25); }
.aidemo .drive-src:hover{ border-color: rgb(0, 102, 218); box-shadow: 0 12px 28px rgba(0, 102, 218, 0.2), 0 0 20px rgba(0, 102, 218, 0.15) !important; }
.aidemo /* Notion */
.notion-src{ border-color: rgba(255, 255, 255, 0.2); }
.aidemo .notion-src:hover{ border-color: rgb(255, 255, 255); box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.15) !important; }
.aidemo /* Pinterest */
.pinterest-src{ border-color: rgba(189, 8, 28, 0.25); }
.aidemo .pinterest-src:hover{ border-color: rgb(189, 8, 28); box-shadow: 0 12px 28px rgba(189, 8, 28, 0.2), 0 0 20px rgba(189, 8, 28, 0.15) !important; }
.aidemo /* Monobank */
.monobank-src{ border-color: rgba(255, 106, 26, 0.25); }
.aidemo .monobank-src:hover{ border-color: rgb(255, 106, 26); box-shadow: 0 12px 28px rgba(255, 106, 26, 0.2), 0 0 20px rgba(255, 106, 26, 0.15) !important; }
.aidemo /* Instagram */
.instagram-src{ border-color: rgba(225, 48, 108, 0.25); }
.aidemo .instagram-src:hover{ border-color: rgb(225, 48, 108); box-shadow: 0 12px 28px rgba(225, 48, 108, 0.2), 0 0 20px rgba(225, 48, 108, 0.15) !important; }
@keyframes floatIcon{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.aidemo /* Central Phone (iPhone 17 Pro style Mockup) */
.central-phone.aether-phone{
  width: 290px;
  height: 580px;
  background: #000;
  border: 4px solid #1c1924;
  border-radius: 42px;
  position: relative;
  z-index: 4;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
              0 0 50px rgba(255, 106, 26, 0.08);
  display: flex;
  overflow: visible;
  padding: 3px;
  transition: transform 0.3s ease;
}
.aidemo /* Background warm glow behind phone */
.visual-container::before{
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.15) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  animation: pulseGlow 8s infinite ease-in-out;
}
@keyframes pulseGlow{
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1.2; transform: scale(1.1); }
}
.aidemo .phone-notch{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 100;
}
.aidemo .phone-screen-content{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0d0b11;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  padding-top: 28px; /* Space for notch */
}
.aidemo /* Overlapping Glass Pills */
.glass-pill{
  position: absolute;
  background: rgba(20, 17, 26, 0.78);
  backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 
              0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.3s ease;
  animation: floatPill 5s infinite ease-in-out;
}
.aidemo .glass-pill.left-pill{
  left: -54px;
  top: 108px;
}
.aidemo .glass-pill.right-pill{
  right: -64px;
  top: 220px;
  animation-delay: 2.5s;
}
.aidemo .glass-pill .p-icon{
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.aidemo .glass-pill .p-icon svg{
  display: block;
}
.aidemo .glass-pill .mini-notion-icon{
  background: #fff;
  color: #000;
  font-family: sans-serif;
  font-weight: 800;
  font-size: 10px;
}
.aidemo .glass-pill:hover{
  transform: scale(1.05) translateY(-2px);
}
@keyframes floatPill{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.aidemo /* Fade out pills when other tabs active */
.central-phone.hide-pills .glass-pill{
  opacity: 0;
  pointer-events: none;
}
.aidemo /* Header inside Phone */
.aether-screen-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line);
  height: 48px;
  background: #13111a;
  z-index: 10;
}
.aidemo .circle-avatar{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #1a0d04;
  font-weight: 700;
}
.aidemo .aether-logo-text{
  font-family: var(--disp);
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  color: var(--ink);
}
.aidemo .aether-logo-text small{
  font-size: 7px;
  color: var(--steel);
  letter-spacing: 0.12em;
}
.aidemo .header-icon{
  font-size: 13px;
  color: var(--steel);
  cursor: pointer;
}
.aidemo /* Screens Container & Screen Switcher styling */
.aether-screens-container{
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0d0b11;
}
.aidemo .aether-screen{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(12px);
  padding: 12px;
  overflow-y: auto;
  scrollbar-width: none;
}
.aidemo .aether-screen::-webkit-scrollbar{
  display: none;
}
.aidemo .aether-screen.active{
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.aidemo /* Mini Chat Screen inside Phone */
.mini-chat-thread{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
}
.aidemo .mini-bub{
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 14px;
  line-height: 1.4;
}
.aidemo .mini-bub.bot{
  align-self: flex-start;
  background: #131118;
  border-bottom-left-radius: 3px;
  color: var(--ink);
}
.aidemo .mini-bub.bot.border-orange{
  border: 1px solid rgba(255, 106, 26, 0.28);
}
.aidemo .mini-bub.user{
  align-self: flex-end;
  background: #1d1a24;
  border-bottom-right-radius: 3px;
  color: var(--ink);
}
.aidemo .mini-bub.user.border-grey{
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.aidemo .mini-btn-row{
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.aidemo .mini-act-btn{
  font-size: 9.5px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.aidemo .mini-act-btn.border-btn{
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--mut);
}
.aidemo .mini-act-btn.border-btn:hover{
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}
.aidemo .mini-act-btn.approve-btn{
  background: var(--ember);
  color: #1a0d04;
  border: 1px solid var(--ember);
}
.aidemo .mini-act-btn.approve-btn:hover{
  background: var(--ember2);
  border-color: var(--ember2);
  transform: translateY(-1px);
}
.aidemo /* Analytics Screen inside Phone */
.analytics-content{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aidemo .stat-title{
  font-size: 10px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aidemo .stat-value{
  font-family: var(--disp);
  font-size: 18px;
  color: var(--ember2);
  font-weight: 600;
  margin: 2px 0;
}
.aidemo .stat-value small{
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mut);
}
.aidemo .chart-container{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  margin: 6px 0;
}
.aidemo .chart-bar{
  width: 22px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.aidemo .chart-bar.highlight{
  background: linear-gradient(180deg, var(--ember2), var(--ember));
  border-color: var(--ember);
}
.aidemo .chart-bar::after{
  content: attr(data-label);
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8.5px;
  color: var(--steel);
}
.aidemo .stat-desc{
  font-size: 10px;
  color: var(--mut);
  text-align: center;
  margin-top: 14px;
}
.aidemo /* Calendar Screen inside Phone */
.calendar-content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aidemo .cal-title{
  font-size: 10px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aidemo .cal-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aidemo .cal-item{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-left: 2.5px solid var(--line);
  border-radius: 0 8px 8px 0;
  padding: 6px 8px;
  font-size: 11px;
}
.aidemo .cal-item.highlight{
  border-left-color: var(--ember);
  background: rgba(255, 106, 26, 0.05);
}
.aidemo .cal-item .time{
  font-size: 9px;
  color: var(--ember2);
  font-weight: 700;
  margin-bottom: 2px;
}
.aidemo .cal-item .desc{
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aidemo /* Notes Screen inside Phone */
.notes-content{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aidemo .notes-title{
  font-size: 10px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aidemo .notes-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aidemo .note-item{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
}
.aidemo .note-item .n-title{
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.aidemo .note-item .n-desc{
  font-size: 10px;
  color: var(--mut);
}
.aidemo /* Bottom navigation bar inside Phone */
.aether-phone-tabs{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: var(--panel);
  height: 44px;
  align-items: center;
}
.aidemo .aether-tab-btn{
  background: none;
  border: none;
  color: var(--steel);
  font-size: 8.5px;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
  outline: none;
}
.aidemo .aether-tab-btn:hover{
  color: var(--ink);
}
.aidemo .aether-tab-btn.active{
  color: var(--ember2);
}
.aidemo /* Case study section */
.kase{
  background: linear-gradient(180deg, var(--bg2), var(--bg));
}
.aidemo .kase-grid{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
  margin-top: 18px;
}
@media(max-width: 900px){.aidemo .kase-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }

}
.aidemo .kase p.note{
  color: var(--mut);
  font-size: 17px;
  margin-top: 16px;
  max-width: 48ch;
}
.aidemo .kase ul{
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.aidemo .kase li{
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 15.5px;
}
.aidemo .kase li:before{
  content: "";
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M22 11.08V12a10 10 0 1 1-5.93-9.14M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M22 11.08V12a10 10 0 1 1-5.93-9.14M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.aidemo /* Board Mockup */
.board{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}
.aidemo .board .bh{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.aidemo .pcards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media(max-width: 480px){.aidemo .pcards{
    grid-template-columns: 1fr;
  }

}
.aidemo .pcard{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  opacity: 0;
  transform: scale(0.95);
  animation: cardFadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes cardFadeIn{
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.aidemo .pcard:nth-child(1){ animation-delay: 0.05s; }
.aidemo .pcard:nth-child(2){ animation-delay: 0.1s; }
.aidemo .pcard:nth-child(3){ animation-delay: 0.15s; }
.aidemo .pcard:nth-child(4){ animation-delay: 0.2s; }
.aidemo .pcard .pt{
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.aidemo .pcard .pm{
  font-size: 12px;
  color: var(--mut);
}
.aidemo .pcard .ptag{
  display: inline-block;
  margin-top: 8px;
  font-size: 10.5px;
  color: var(--ember2);
  border: 1px solid rgba(255, 106, 26, 0.35);
  border-radius: 6px;
  padding: 1px 7px;
}
.aidemo .ideas{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.aidemo .chip{
  font-size: 11.5px;
  color: var(--mut);
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: cardFadeIn 0.3s ease forwards;
}
.aidemo .chip .indicator-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.aidemo .chip .service-custom{ color: var(--gold); }
.aidemo .chip .service-mono{ color: var(--green); }
.aidemo .chip .service-notion{ color: #000000; background: white; border-radius: 1px; }
.aidemo /* Showcase Tiles */
.show{
  background: var(--bg2);
}
.aidemo .sec-h{
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  margin-bottom: 26px;
  max-width: 25ch;
}
.aidemo .sec-h em{
  font-style: normal;
  color: var(--ember2);
}
.aidemo .tiles{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
@media(max-width: 820px){.aidemo .tiles{
    grid-template-columns: 1fr;
  }

}
.aidemo .tile{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aidemo .tile .cap{
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.aidemo .tile .sub{
  font-size: 14px;
  color: var(--mut);
  margin-top: -6px;
}
.aidemo .mock{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.aidemo .mline{
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--mut);
}
.aidemo .mline .b{
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--line);
  flex-shrink: 0;
}
.aidemo .mline.hot{
  color: var(--ink);
}
.aidemo .mline.hot .b{
  background: var(--ember);
}
.aidemo .mline.dim{
  color: var(--steel);
  opacity: .5;
}
.aidemo .mtag{
  font-size: 11px;
  color: var(--ember2);
  border: 1px solid rgba(255, 106, 26, 0.4);
  border-radius: 6px;
  padding: 1px 7px;
  margin-left: auto;
}
.aidemo .rcard{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  border-radius: 0 11px 11px 0;
  padding: 10px 13px;
  font-size: 13.5px;
  color: var(--ink);
}
.aidemo .rcard .when{
  font-size: 11.5px;
  color: var(--ember2);
  font-weight: 600;
  margin-bottom: 3px;
}
.aidemo .src{
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px 13px;
  font-size: 13px;
  color: var(--mut);
}
.aidemo .src .top{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.aidemo .src .ch{
  font-size: 11px;
  color: var(--steel);
}
.aidemo .src .toplan{
  font-size: 11px;
  color: var(--gold);
  margin-left: auto;
}
.aidemo .src .it{
  color: var(--ink);
}
.aidemo /* How Section - Steps */
.how{
  background: var(--bg2);
}
.aidemo .steps{
  max-width: 760px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.aidemo .step{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.aidemo .step .num{
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 600;
  color: var(--ember);
}
.aidemo .step h3{
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 3px;
}
.aidemo .step p{
  color: var(--mut);
  font-size: 15.5px;
}
.aidemo .scale-note{
  margin-top: 30px;
  color: var(--mut);
  font-size: 16.5px;
  max-width: 60ch;
}
.aidemo .scale-note b{
  color: var(--gold);
}
.aidemo /* CTA Section */
.cta{
  text-align: center;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}
.aidemo .cta h2{
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  max-width: 25ch;
  margin: 0 auto 18px;
}
.aidemo .cta p{
  color: var(--mut);
  max-width: 50ch;
  margin: 0 auto 32px;
  font-size: 18px;
}
.aidemo /* Buttons */
.btn{
  display: inline-block;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  color: #1a0d04;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 40px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
}
.aidemo .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 106, 26, 0.3);
}
.aidemo .btn.sm{
  padding: 13px 26px;
  font-size: 15px;
}
.aidemo .btn.ghost{
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
}
.aidemo .btn.ghost:hover{
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--steel);
  transform: translateY(-2px);
  box-shadow: none;
}
.aidemo /* Footer */
footer{
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.aidemo .foot{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.aidemo .foot .brand{
  font-family: var(--disp);
  font-size: 19px;
  font-weight: 600;
  color: var(--ember);
}
.aidemo .foot p{
  font-size: 13px;
  color: var(--steel);
  max-width: 42ch;
  margin-top: 6px;
}
.aidemo .foot a{
  color: var(--mut);
  font-size: 13px;
  transition: color 0.2s;
}
.aidemo .foot a:hover{
  color: var(--ink);
}
@media(prefers-reduced-motion: reduce){.aidemo .rv{
    opacity: 1;
    transform: none;
    transition: none;
  }
.aidemo .bub.pop{
    animation: none;
  }

}


/* ===== IMPROVEMENTS: phone + tabs + floating icons ===== */
/* Premium iPhone frame: metallic edge, deep shadow */
.aidemo .central-phone.aether-phone{
  width:300px;height:612px;border:none;padding:5px;border-radius:50px;
  background:linear-gradient(150deg,#46424e 0%,#1b1922 32%,#0a0910 100%);
  box-shadow:0 55px 110px -35px rgba(0,0,0,.92),0 0 0 1px rgba(255,255,255,.05),
    0 0 70px rgba(255,106,26,.10),inset 0 1px 1px rgba(255,255,255,.10);
}
.aidemo .phone-screen-content{border-radius:45px;}
/* right power button */
.aidemo .central-phone.aether-phone::after{
  content:"";position:absolute;right:-3px;top:158px;width:3px;height:64px;
  border-radius:0 2px 2px 0;background:linear-gradient(180deg,#34303b,#17151d);
}
/* left volume buttons */
.aidemo .central-phone.aether-phone::before{
  content:"";position:absolute;left:-3px;top:130px;width:3px;height:44px;
  border-radius:2px 0 0 2px;background:linear-gradient(180deg,#34303b,#17151d);
}
/* Dynamic Island: cleaner pill + camera dot */
.aidemo .phone-notch{
  width:96px;height:27px;top:12px;border-radius:15px;background:#000;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);
  display:flex;align-items:center;justify-content:flex-end;padding-right:10px;
}
.aidemo .phone-notch::after{
  content:"";width:7px;height:7px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%,#3a4a5a,#0a0e14);
  box-shadow:0 0 0 1px rgba(255,255,255,.06);
}
/* Bottom tabs: bigger, clearer, distinct active pill */
.aidemo .aether-phone-tabs{
  height:58px;padding:6px;gap:3px;
  background:linear-gradient(180deg,#17141d,#100e16);
  border-top:1px solid rgba(255,255,255,.06);
}
.aidemo .aether-tab-btn{
  font-weight:600;gap:3px;border-radius:13px;padding:5px 0;justify-content:center;
  transition:all .22s cubic-bezier(.2,.8,.2,1);
}
.aidemo .aether-tab-btn .ti{font-size:18px;line-height:1;filter:grayscale(.4) opacity(.65);transition:all .22s;}
.aidemo .aether-tab-btn .tl{font-size:9px;letter-spacing:.01em;}
.aidemo .aether-tab-btn:hover .ti{filter:none;}
.aidemo .aether-tab-btn.active{color:var(--ember2);
  background:linear-gradient(180deg,rgba(255,106,26,.16),rgba(255,106,26,.05));}
.aidemo .aether-tab-btn.active .ti{filter:none;transform:translateY(-1px) scale(1.08);}
/* Floating integration icons: larger, refined */
.aidemo .floating-source{
  width:48px;height:48px;
  background:radial-gradient(circle at 50% 35%,rgba(30,27,38,.95),rgba(16,14,20,.95));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 30px rgba(0,0,0,.55),0 0 18px rgba(255,106,26,.06);
}
.aidemo .floating-source svg{width:21px;height:21px;}
.aidemo .left-src-1{left:42px;top:92px;} .aidemo .left-src-2{left:14px;top:216px;}
.aidemo .left-src-3{left:14px;top:340px;} .aidemo .left-src-4{left:42px;top:464px;}
.aidemo .right-src-1{right:42px;top:92px;} .aidemo .right-src-2{right:14px;top:216px;}
.aidemo .right-src-3{right:14px;top:340px;} .aidemo .right-src-4{right:42px;top:464px;}
/* Status-bar icons in hero phone: a touch larger */
.aidemo .int-icon{width:22px;height:22px;font-size:10.5px;font-weight:700;border-radius:6px;}

/* ===== v2: realistic iPhone frame + input bar + scattered icons ===== */
.aidemo .visual-container{height:700px;}
/* Thick realistic iPhone body; screen sits inside a real bezel */
.aidemo .central-phone.aether-phone{
  width:298px;height:600px;padding:0;border:none;border-radius:56px;
  background:linear-gradient(155deg,#3c3942 0%,#100f15 30%,#050507 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,.10),
    0 0 0 1px #000,
    0 60px 120px -30px rgba(0,0,0,.95),
    0 0 80px rgba(255,106,26,.08);
  overflow:visible;
}
.aidemo .phone-screen-content{
  position:absolute;inset:11px;width:auto;height:auto;
  border-radius:46px;background:#0c0a10;overflow:hidden;padding-top:34px;
}
/* Dynamic Island */
.aidemo .phone-notch{
  top:20px;left:50%;transform:translateX(-50%);
  width:98px;height:28px;border-radius:16px;background:#000;z-index:100;
  display:flex;align-items:center;justify-content:flex-end;padding-right:11px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}
.aidemo .phone-notch::after{
  content:"";width:8px;height:8px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%,#3a4a5a,#0a0e14);
  box-shadow:0 0 0 1px rgba(255,255,255,.07);
}
/* side buttons */
.aidemo .central-phone.aether-phone::after{
  content:"";position:absolute;right:-2px;top:172px;width:3px;height:66px;
  border-radius:0 2px 2px 0;background:linear-gradient(180deg,#43404a,#1a1820);
}
.aidemo .central-phone.aether-phone::before{
  content:"";position:absolute;left:-2px;top:150px;width:3px;height:46px;
  border-radius:2px 0 0 2px;background:linear-gradient(180deg,#43404a,#1a1820);
  box-shadow:0 64px 0 0 #2a2730, 0 64px 0 0 transparent;
}

/* Input bar (under tabs) */
.aidemo .aether-input-bar{
  display:flex;align-items:center;gap:9px;
  margin:0 9px 10px;padding:7px 8px 7px 12px;
  background:#16131d;border:1px solid rgba(255,255,255,.07);border-radius:22px;
}
.aidemo .ai-plus{color:var(--steel);font-size:17px;line-height:1;font-weight:300;}
.aidemo .ai-field{flex:1;color:var(--steel);font-size:11px;}
.aidemo .ai-mic{color:var(--steel);display:flex;align-items:center;}
.aidemo .ai-send{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--ember),var(--ember2));
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(255,106,26,.35);
}
/* tabs slightly tighter to make room for input */
.aidemo .aether-phone-tabs{height:50px;}

/* Integration icons scattered around the phone (not packed pills) */
.aidemo .floating-source{width:46px;height:46px;}
.aidemo .floating-source svg{width:20px;height:20px;}
.aidemo .left-src-1{left:74px;top:118px;}
.aidemo .left-src-2{left:30px;top:272px;}
.aidemo .left-src-3{left:58px;top:430px;}
.aidemo .left-src-4{left:120px;top:580px;}
.aidemo .right-src-1{right:74px;top:104px;}
.aidemo .right-src-2{right:26px;top:258px;}
.aidemo .right-src-3{right:56px;top:412px;}
.aidemo .right-src-4{right:116px;top:566px;}

/* ===== v3: real brand icons as app-chips + clean messenger input ===== */
.aidemo .visual-container{height:720px;}
.aidemo .central-phone.aether-phone{height:640px;}
/* Floating icons: light app-chip so real logos read on dark bg */
.aidemo .floating-source{
  width:48px;height:48px;border-radius:14px;
  background:#fbfbfd;border:1px solid rgba(255,255,255,.14);
  box-shadow:0 12px 28px rgba(0,0,0,.55),0 0 0 1px rgba(0,0,0,.25);
  animation:floatIcon 6s infinite ease-in-out;
}
.aidemo .floating-source img{width:27px;height:27px;object-fit:contain;display:block;pointer-events:none;}
.aidemo .floating-source:hover{transform:translateY(-5px) scale(1.08)!important;border-color:rgba(255,255,255,.5);box-shadow:0 16px 34px rgba(0,0,0,.6),0 0 22px rgba(255,106,26,.18);}
/* re-scatter on the taller container */
.aidemo .left-src-1{left:78px;top:120px;} .aidemo .left-src-2{left:32px;top:286px;}
.aidemo .left-src-3{left:60px;top:452px;} .aidemo .left-src-4{left:126px;top:608px;}
.aidemo .right-src-1{right:78px;top:104px;} .aidemo .right-src-2{right:28px;top:270px;}
.aidemo .right-src-3{right:58px;top:436px;} .aidemo .right-src-4{right:120px;top:596px;}
/* Status-bar icons in hero phone: small white app chips */
.aidemo .int-icon{
  width:21px;height:21px;border-radius:6px;padding:3px;
  background:#fbfbfd;border:1px solid rgba(255,255,255,.1);opacity:.88;
}
.aidemo .int-icon img{width:100%;height:100%;object-fit:contain;display:block;}
.aidemo .int-icon.active{opacity:1;box-shadow:0 0 9px var(--ember-glow);border-color:var(--ember2);}
/* Clean messenger-style input bar */
.aidemo .aether-input-bar{
  display:flex;align-items:center;gap:7px;
  margin:6px 9px 11px;padding:0;background:none;border:none;
}
.aidemo .ai-plus{
  width:28px;height:28px;flex-shrink:0;display:flex;align-items:center;justify-content:center;
  color:var(--steel);font-size:20px;font-weight:300;line-height:1;
}
.aidemo .ai-field{
  flex:1;color:var(--steel);font-size:11.5px;text-align:left;
  background:#1b1822;border:1px solid rgba(255,255,255,.07);
  border-radius:18px;padding:9px 14px;
}
.aidemo .ai-mic{
  width:26px;height:26px;flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--steel);
}
.aidemo .ai-send{
  width:34px;height:34px;flex-shrink:0;border-radius:50%;
  background:linear-gradient(135deg,var(--ember),var(--ember2));
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 13px rgba(255,106,26,.42);
}
