/* ADONIS TELECOM v2 — section 3 (why / compatibility / business / faq / cta / footer)
   mobile-first, all classes .t23- */

/* backdrop light drifts so the section headers never sit on dead space */
.t23-why__orb, .t23-biz__orb, .t23-faq__orb {
  animation: t23-drift 28s ease-in-out infinite alternate;
  will-change: transform;
}
.t23-biz__orb { animation-duration: 36s; animation-direction: alternate-reverse; }
@keyframes t23-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-42px, 36px, 0) scale(1.13); }
}
/* slow sheen across the accent display type */
.t23-why .t2-grad-text, .t23-biz .t2-grad-text, .t23-cta .t2-grad-text {
  background-size: 220% 100%;
  animation: t23-sheen 8s ease-in-out infinite;
}
@keyframes t23-sheen { 0%, 100% { background-position: 0 0; } 50% { background-position: 100% 0; } }

/* ---------- WHY ADONIS ---------- */
.t23-why { overflow: hidden; }
.t23-why__orb { width: 520px; height: 520px; top: -120px; right: -180px; }
.t23-why__inner { position: relative; z-index: 1; }
.t23-why__copy { max-width: 760px; }
.t23-benefits { list-style: none; margin-top: 46px; display: grid; gap: 18px; }
.t23-benefit {
  position: relative; overflow: hidden;
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px 26px 28px; border-radius: var(--radius-lg);
}
.t23-benefit::before { /* the edge lights when the card lifts */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0); transform-origin: center; pointer-events: none;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.t23-benefit:hover::before { transform: scaleX(1); }
.t23-benefit__icon {
  position: relative; flex: 0 0 auto; width: 52px; height: 52px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-50); border: 1px solid var(--line);
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .35s ease, background .35s ease;
}
.t23-benefit:hover .t23-benefit__icon {
  transform: translateY(-3px) scale(1.06);
  border-color: var(--red-200); background: var(--red-100);
}
/* the markup hard-codes stroke="#ffa700" on each icon; override it here so the
   glyphs follow the palette without touching the HTML */
.t23-benefit__icon svg { width: 26px; height: 26px; stroke: var(--red-600); }
.t23-benefit__title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.t23-benefit__text { color: var(--text-2); font-size: 15.5px; max-width: 46ch; }

/* ---------- COMPATIBILITY BANNER ---------- */
.t23-compat { padding-top: 0; }
.t23-compat__card {
  position: relative; overflow: hidden;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
.t23-compat__card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2) 45%, transparent);
  transform: scaleX(0); transform-origin: left center; pointer-events: none;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.t23-compat__card:hover::before { transform: scaleX(1); }
.t23-compat__title { font-size: clamp(20px, 3vw, 26px); margin-bottom: 8px; }
.t23-compat__note { color: var(--text-2); font-size: 15px; max-width: 62ch; }
.t23-compat__card .t2-btn { white-space: nowrap; }

/* ---------- BUSINESS ---------- */
.t23-biz { overflow: hidden; background: linear-gradient(180deg, var(--bg), var(--bg-2) 55%, var(--bg)); } /* == .t2-wash */
.t23-biz__orb { width: 560px; height: 560px; bottom: -200px; left: -220px; }
/* .t23-biz__grid paint + @keyframes t23-mesh now live in tokens-v2.css as .t2-mesh */
.t23-biz__inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.t23-biz__lead { margin: 0 auto; }
.t23-biz__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.t23-biz__badge {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 999px;
  /* 14px is small text, so the label steps down to --red-800 (6.30) rather than
     the 4.79 of --red-600 — and it sits on a tint, which costs a little more */
  border: 1px solid var(--red-200); color: var(--red-800);
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  background: var(--red-50);
}
.t23-biz__badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-glow); animation: t23-badge-ping 2.6s ease-out infinite;
}
@keyframes t23-badge-ping {
  0%   { box-shadow: 0 0 0 0 rgba(229, 9, 20, .45); }
  70%  { box-shadow: 0 0 0 9px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

/* ---------- FAQ ---------- */
.t23-faq { overflow: hidden; }
.t23-faq__orb { width: 480px; height: 480px; top: 40px; right: -220px; }
.t23-faq__inner { position: relative; z-index: 1; max-width: 1080px; }
.t23-faq__heading { position: relative; margin-bottom: 42px; padding-bottom: 20px; }
.t23-faq__heading::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 120px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent) 0 0 / 200% 100%;
  animation: t23-rule 3.6s linear infinite;
}
@keyframes t23-rule { to { background-position: -200% 0; } }
.t23-faq__list { display: grid; gap: 14px; }
/* Two columns on desktop; align-items:start so opening one accordion never
   stretches its row partner. */
@media (min-width: 900px) {
  .t23-faq__list { grid-template-columns: 1fr 1fr; gap: 16px 20px; align-items: start; }
}
.t23-faq__item { position: relative; overflow: hidden; }
.t23-faq__item:hover { transform: none; } /* keep accordions steady */
.t23-faq__item::before { /* leading edge answers hover and open state */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  transform: scaleY(0); transform-origin: top center; pointer-events: none;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.t23-faq__item:hover::before, .t23-faq__item[open]::before { transform: scaleY(1); }
.t23-faq__item[open] { background: var(--red-50); box-shadow: var(--shadow-sm); border-color: var(--red-200); }
.t23-faq__q {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; color: var(--text); font-weight: 700; font-size: 17px;
  transition: color .3s ease;
}
.t23-faq__q:hover { color: var(--gold-2); }
.t23-faq__q::-webkit-details-marker { display: none; }
.t23-faq__toggle { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.t23-faq__toggle::before, .t23-faq__toggle::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); border-radius: 2px;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.t23-faq__toggle::before { width: 18px; height: 2px; }
.t23-faq__toggle::after { width: 2px; height: 18px; }
.t23-faq__item[open] .t23-faq__toggle::before { transform: rotate(180deg); }
.t23-faq__item[open] .t23-faq__toggle::after { transform: rotate(90deg); } /* + becomes − */
/* --red-600 is 4.79 on white but only 4.36 on the --red-50 open surface, and a
   17px bold label is not "large text" — so the open question steps to --red-700 */
.t23-faq__item[open] .t23-faq__q { color: var(--red-700); }
.t23-faq__a { padding: 0 26px 24px; color: var(--text-2); font-size: 16px; max-width: 68ch; }
.t23-faq__item[open] .t23-faq__a { animation: t23-answer .45s cubic-bezier(.16,1,.3,1); }
@keyframes t23-answer { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- FINAL CTA ---------- */
/* The one solid-red moment on the page: white FAQ above, white support bar
   below, so the band reads as a deliberate stop rather than a colour clash. */
.t23-cta { overflow: hidden; padding: 150px 0; background: var(--red-600); }
.t23-cta__glow {
  position: absolute; left: 50%; top: 55%; transform: translate(-50%, -50%);
  width: 1100px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.16), rgba(255,255,255,.05) 45%, transparent 70%);
  animation: t23-cta-breathe 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes t23-cta-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
  50%      { transform: translate(-50%, -50%) scale(1.14); opacity: 1; }
}
.t23-cta__inner { position: relative; z-index: 1; text-align: center; }
.t23-cta__title { font-size: clamp(38px, 6vw, 68px); }
/* the accent span would be red-on-red here, so both it and the heading go white */
.t23-cta__title, .t23-cta .t2-grad-text { color: #FFFFFF; }
/* full white, not a faded one: white on --red-600 is 4.79 and 19px regular is
   normal text — dropping to .88 alpha would land at 3.90 and fail */
.t23-cta__sub { color: #FFFFFF; font-size: 19px; margin-bottom: 36px; }
/* white button on the red band — inverted from the page default */
.t23-cta .t2-btn--gold { background: #FFFFFF; color: var(--red-700); box-shadow: 0 0 0 0 rgba(255,255,255,.3); animation: t23-cta-pulse 3.2s ease-in-out infinite; }
.t23-cta .t2-btn--gold:hover { animation: none; background: #FFFFFF; color: var(--red-800); box-shadow: 0 12px 32px rgba(11, 18, 32, .22); }
.t23-cta .t2-btn:focus-visible { outline-color: #FFFFFF; } /* the global red outline is invisible on this band */
@keyframes t23-cta-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255,255,255,.20); }
  50%      { box-shadow: 0 10px 46px rgba(255,255,255,.42); }
}

/* ---------- FOOTER ---------- */
/* Stays dark on purpose: it anchors the light page and the registry strip was
   designed for it. Every colour below is measured against --ink-900, not white. */
.t23-footer {
  position: relative; background: var(--ink-900); padding: 70px 0 34px;
}
.t23-footer::before { /* accent hairline */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 30%, var(--gold) 50%, var(--line-gold) 70%, transparent);
}
.t23-footer__grid { display: grid; grid-template-columns: 1fr; gap: 42px; }
.t23-footer__lockup { display: inline-flex; align-items: center; gap: 12px; }
.t23-footer__wordmark { color: #FFFFFF; font-weight: 800; letter-spacing: .14em; font-size: 15px; }
/* --red-400 is decorative on white, but it is 5.8:1 here — the 3.25 figure is
   the white measurement and does not apply on ink */
.t23-footer__wordmark em { font-style: normal; color: var(--red-400); }
.t23-footer__blurb { margin-top: 14px; color: rgba(255, 255, 255, .66); font-size: 14.5px; max-width: 34ch; }
.t23-footer__col { display: grid; gap: 12px; align-content: start; }
.t23-footer__head {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red-400); font-weight: 700; margin-bottom: 6px;
}
.t23-footer__col a { color: rgba(255, 255, 255, .72); font-size: 15px; width: fit-content; }
.t23-footer__col a:hover { color: #FFFFFF; }
.t23-footer__social { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.t23-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .66);
  transition: all .18s ease;
}
.t23-footer__social svg { width: 16px; height: 16px; }
.t23-footer__social a:hover { border-color: var(--red-500); color: #FFFFFF; background: rgba(229, 9, 20, .18); }
.t23-footer__bottom {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid; gap: 14px; color: rgba(255, 255, 255, .62); font-size: 13px;
}
.t23-footer__division { font-size: 13.5px; }
.t23-footer__copy { color: rgba(255, 255, 255, .45); }
/* registry identifiers as quiet chips: label small-caps, value tabular */
.t23-footer__ids {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px;
  padding: 0; margin: 0;
}
.t23-footer__ids li {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .04);
  font-size: 12.5px; color: rgba(255, 255, 255, .78);
}
.t23-footer__ids li span {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.t23-footer__ids li b { font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- BREAKPOINTS ---------- */
@media (min-width: 640px) {
  .t23-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .t23-compat__card { flex-direction: row; align-items: center; justify-content: space-between; padding: 38px 42px; }
}
@media (min-width: 768px) {
  .t23-benefits { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .t23-benefit--wide { grid-column: 1 / -1; }
}

/* ===== Compat banner: two action buttons ===== */
.t23-compat__actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }
.t23-compat__dial { margin-top: 10px; color: var(--text); }

@media (min-width: 980px) {
  .t23-footer__grid { grid-template-columns: 1.6fr 1fr 1fr .9fr 1.3fr; gap: 32px; }
  .t23-footer__bottom { grid-template-columns: 1fr auto; align-items: baseline; }
  /* the chip row gets its own full row under division + copyright */
  .t23-footer__ids { grid-column: 1 / -1; grid-row: 2; }
}

/* ---------- RTL ---------- */
html[dir="rtl"] .t23-faq__heading::after { left: auto; right: 0; }
html[dir="rtl"] .t23-faq__item::before { left: auto; right: 0; }
html[dir="rtl"] .t23-compat__card::before { transform-origin: right center; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .t23-why__orb, .t23-biz__orb, .t23-faq__orb,
  .t23-why .t2-grad-text, .t23-biz .t2-grad-text, .t23-cta .t2-grad-text,
  .t23-biz__grid, .t23-biz__badge::before, .t23-faq__heading::after,
  .t23-faq__item[open] .t23-faq__a, .t23-cta__glow, .t23-cta .t2-btn--gold {
    animation: none !important;
  }
  .t23-cta__glow { transform: translate(-50%, -50%); }
  .t23-benefit::before, .t23-benefit__icon, .t23-compat__card::before,
  .t23-faq__item::before, .t23-faq__q, .t23-faq__toggle::before, .t23-faq__toggle::after {
    transition: none !important;
  }
}

/* ==================================================================
   ANA — AI support bar + chat popup (.t23-ana-)
   ================================================================== */

/* ---------- support bar ---------- */
/* No padding-top override: zeroing only the top pinned the bar to the red CTA
   above it and left the section's full 110px stranded underneath. It keeps
   .t2-section's symmetric padding, so the bar sits centred in its own band. */
.t23-ana-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 32px;
  padding: 34px 38px; box-shadow: var(--shadow-md);
}
.t23-ana-bar:hover { transform: none; } /* keep the glass glow, skip the lift */
.t23-ana-id { display: flex; align-items: center; gap: 16px; flex: 1.2 1 260px; }
.t23-ana-avatar { position: relative; flex: none; width: 64px; height: 64px; }
.t23-ana-avatar img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block;
  border: 2px solid var(--red-600); box-shadow: 0 0 0 3px var(--red-100);
  background: var(--bg-2);
}
/* Availability green, not brand — but #34d17b is only 2.0:1 on white, under the
   3:1 floor for a meaningful non-text mark, so it steps down to #16A34A (3.3). */
.t23-ana-online {
  position: absolute; inset-inline-end: 2px; bottom: 2px; width: 13px; height: 13px;
  border-radius: 50%; background: #16A34A; border: 2px solid var(--bg);
}
.t23-ana-name { color: var(--text); font-weight: 800; font-size: 18px; line-height: 1.25; }
.t23-ana-desc { color: var(--text-2); font-size: 14.5px; line-height: 1.5; margin-top: 3px; max-width: 32ch; }
.t23-ana-status { list-style: none; flex: 1 1 200px; display: grid; gap: 9px; align-content: center; }
.t23-ana-status li { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 15px; }
.t23-ana-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .16); flex: none;
}
.t23-ana-contact { flex: 1.4 1 300px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.t23-ana-help {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-3); font-weight: 700; margin-bottom: 2px;
}
.t23-ana-phone { display: inline-block; color: var(--text); font-weight: 800; font-size: 19px; white-space: nowrap; }
.t23-ana-phone:hover { color: var(--gold); }
.t23-ana-hours { color: var(--text-3); font-size: 13px; margin-top: 2px; }
.t23-ana-cta { padding: 14px 26px; font-size: 15px; white-space: nowrap; }
html[dir="rtl"] .t23-ana-help { letter-spacing: 0; }

@media (max-width: 860px) {
  .t23-ana-bar { flex-direction: column; text-align: center; gap: 22px; padding: 30px 24px; }
  .t23-ana-id { flex-direction: column; flex-basis: auto; }
  .t23-ana-status li { justify-content: center; }
  .t23-ana-contact { flex-direction: column; flex-basis: auto; gap: 16px; }
}

/* ---------- chat popup ---------- */
/* The card is white like the rest of the site; only the head strip stays ink,
   so the panel still has weight without being a foreign dark object floating on
   a light page. The dark scrim behind it does the separating. Every contrast
   note from here to .t23-ana-send is measured against white, not the old card. */
.t23-ana-chat {
  position: fixed; inset: 0; z-index: 1200; display: none;
  background: rgba(11, 18, 32, .45);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.t23-ana-chat.open { display: flex; align-items: center; justify-content: center; padding: 20px; }
.t23-ana-card {
  display: flex; flex-direction: column; overflow: hidden;
  width: 420px; max-width: calc(100vw - 32px); height: min(640px, calc(100vh - 48px));
  background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  /* deeper than a card shadow: this floats above a scrim, not on the page */
  box-shadow: 0 30px 80px rgba(11, 18, 32, .28), 0 2px 8px rgba(11, 18, 32, .06);
  animation: t23AnaIn .25s ease;
}
@keyframes t23AnaIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.t23-ana-head {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px;
  background: var(--ink-900); border-bottom: none;
}
.t23-ana-head__av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; border: 1px solid rgba(255, 255, 255, .22); }
.t23-ana-head__name { color: #FFFFFF; font-weight: 700; font-size: 16px; line-height: 1.2; }
.t23-ana-head__status { color: rgba(255, 255, 255, .62); font-size: 12.5px; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
/* the head is still ink, so the original green keeps its 5.9:1 */
.t23-ana-head__status i { width: 8px; height: 8px; border-radius: 50%; background: #34d17b; display: inline-block; }
.t23-ana-close {
  margin-inline-start: auto; width: 34px; height: 34px; flex: none;
  border: none; border-radius: 50%; background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .75);
  font-size: 20px; line-height: 1; cursor: pointer; font-family: inherit;
}
.t23-ana-close:hover { background: rgba(255, 255, 255, .16); color: #FFFFFF; }
.t23-ana-body {
  flex: 1; overflow-y: auto; overflow-x: hidden; padding: 18px 16px;
  display: flex; flex-direction: column; gap: 14px; overscroll-behavior: contain;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.t23-ana-msg { display: flex; gap: 10px; align-items: flex-end; max-width: 90%; }
.t23-ana-msg img { width: 30px; height: 30px; border-radius: 50%; flex: none; }
.t23-ana-bubble {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  padding: 12px 14px; border-radius: 14px; font-size: 15px; line-height: 1.7;
  white-space: pre-wrap; word-break: break-word;
}
/* on white the ranking flips: --red-600 is 4.79:1, --red-400 only 3.25 */
.t23-ana-caret { display: inline-block; width: 7px; margin-inline-start: 1px; color: var(--red-600); animation: t23AnaBlink 1s steps(1) infinite; }
@keyframes t23AnaBlink { 50% { opacity: 0; } }
.t23-ana-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.t23-ana-msg.user .t23-ana-bubble {
  background: linear-gradient(120deg, var(--red-600), var(--red-700));
  border-color: var(--red-600); color: #FFFFFF; font-weight: 600;
}
.t23-ana-typing span {
  display: inline-block; width: 6px; height: 6px; margin: 0 1px; border-radius: 50%;
  background: var(--text-3); animation: t23AnaDot 1.1s infinite;
}
.t23-ana-typing span:nth-child(2) { animation-delay: .15s; }
.t23-ana-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes t23AnaDot { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.t23-ana-link {
  display: inline-flex; align-items: center; margin-top: 10px;
  background: linear-gradient(120deg, var(--red-600), var(--red-700)); color: #FFFFFF;
  font-weight: 700; font-size: 13.5px; padding: 8px 16px; border-radius: 999px;
}
.t23-ana-link:hover { color: #FFFFFF; filter: brightness(1.06); }
.t23-ana-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 8px; }
.t23-ana-chip {
  background: #FFFFFF; border: 1px solid var(--red-200); color: var(--red-600);
  font-family: inherit; font-size: 13px; font-weight: 600; padding: 7px 13px;
  border-radius: 999px; cursor: pointer; transition: all .15s ease;
}
.t23-ana-chip:hover { background: var(--red-50); border-color: var(--red-600); color: var(--red-800); }
.t23-ana-foot { display: flex; gap: 10px; padding: 13px 14px; border-top: 1px solid var(--line); }
.t23-ana-foot input {
  flex: 1; min-width: 0; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 18px; color: var(--text); outline: none;
  font-size: 15px; font-family: inherit;
}
.t23-ana-foot input::placeholder { color: var(--text-3); }
.t23-ana-foot input:focus { border-color: var(--red-600); }
.t23-ana-send {
  flex: none; width: 48px; height: 48px; border: none; border-radius: 50%;
  background: linear-gradient(120deg, var(--red-600), var(--red-700)); color: #FFFFFF;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.t23-ana-send:hover { filter: brightness(1.06); }
html[dir="rtl"] .t23-ana-send svg { transform: scaleX(-1); }
@media (max-width: 600px) {
  .t23-ana-chat.open { padding: 0; }
  .t23-ana-card { width: 100%; height: 100%; max-width: 100vw; border-radius: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .t23-ana-card, .t23-ana-caret, .t23-ana-typing span { animation: none !important; }
}

