:root{
  --bg:#0B0C10;
  --panel:#15171E;
  --line:#242832;
  --primary:#F57C00;
  --primaryHover:#E65100;
  --text:#ffffff;
  --muted:#8A8F9E;

  --ease:cubic-bezier(.2,.8,.2,1);
  /* slower so the transition is clearly visible */
  --dur:900ms;
  --dur2:1100ms;
  --delayHistory:1600ms;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  display:flex;
  flex-direction:column;
}

.container{
  width:100%;
  max-width:1600px;
  margin:0 auto;
  padding:0 24px;
}

.header{
  height:64px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.header__inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  text-decoration:none;
  color:var(--text);
  font-size:20px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:-0.02em;
}
.brand__dot{ color:var(--primary); }

.header__actions{
  display:flex;
  align-items:center;
  gap:12px;
}


/* After auth: hide elements in header */
body.is-authed #btnRequestDemo {
  opacity:0;
  transform: translateY(-6px);
  pointer-events:none;
}
#btnRequestDemo,
#btnLoginOpen {
  transition: opacity var(--dur2) var(--ease),
              transform var(--dur2) var(--ease);
}

.main{
  flex-grow:1;
  padding:16px;
  overflow-y:auto;
}

@media (min-width: 1024px) {
  body { height: 100vh; overflow: hidden; }
  .main { height: calc(100vh - 64px - 40px); overflow: hidden; padding:24px; }
}

/* ===== Layout (animated) ===== */
/* Mobile: stacked */
.main__grid{
  height:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Desktop: 3 columns with flex-basis that we animate */
@media (min-width:1024px){
  .main__grid{
    flex-direction:row;
    align-items:stretch;
  }

  .left, .chat, .right{
    min-width:0;
    height:100%;
    transition: flex-basis var(--dur2) var(--ease),
                max-width var(--dur2) var(--ease),
                opacity var(--dur2) var(--ease),
                transform var(--dur2) var(--ease);
  }

  /* default widths ~ original 5/4/3 */
  .left{ flex: 0 0 41.666%; max-width: 41.666%; display:flex; flex-direction:column; gap:16px; position:relative; }
  .chat{ flex: 0 0 33.333%; max-width: 33.333%; height:100%; }
  .right{ flex: 0 0 25%; max-width: 25%; display:flex; flex-direction:column; gap:16px; height:100%; }

  /* after auth: right collapses, chat expands */
  body.is-authed .right{
    flex-basis:0%;
    max-width:0%;
    opacity:0;
    transform: translateX(14px);
    pointer-events:none;
    overflow:hidden;
  }
  body.is-authed .chat{
    flex-basis:58.333%;
    max-width:58.333%;
  }
  body.is-authed .left{
    flex-basis:41.666%;
    max-width:41.666%;
  }

  /* once a chat is actually underway: left (History) also collapses,
     chat takes the full width freed up by both other columns */
  body.is-authed.is-chatting .left{
    flex-basis:0%;
    max-width:0%;
    opacity:0;
    transform: translateX(-14px);
    pointer-events:none;
    overflow:hidden;
  }
  body.is-authed.is-chatting .chat{
    flex-basis:100%;
    max-width:100%;
  }
}

/* ===== Panels ===== */
.panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
}

.panel--hero{
  padding:0;
  overflow:hidden;
}

/* hero stack = slogan (moves) + history (expands) */
.hero__stack{
  padding:32px;
  position:relative;
  min-height: 320px;
  display:flex;
  flex-direction:column;
}

@media (min-width:1024px){
  /* Keep LEFT main card equal to the column height (same as chat) */
  #heroPanel{
    height:100%;
    display:flex;
  }
  .hero__stack{
    height:100%;
    width:100%;
    display:flex;
    flex-direction:column;
    /* reserve space for the mini cards that we “dock” inside the same card */
    padding-bottom: 140px;
  }

  /* Dock the 3 mini cards inside the left card, so the card stays equal-height to chat */
  #leftMiniCards{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:0 32px 24px;
    margin:0;
  }
}

/* Slogan block: animate its position upward */
.hero__slogan{
  position:relative;
  /* Guest: keep it visually centered in the card */
  margin-top:auto;
  margin-bottom:auto;
  transform: translateY(0);
  opacity:1;
  transition: transform var(--dur2) var(--ease);
}

/* before auth it feels vertically centered because it’s pushed down */
@media (min-width:1024px){
  .hero__stack{ min-height: 460px; }
}

/* after auth: slogan snaps to top with motion */
body.is-authed .hero__slogan{
  margin-top:0;
  margin-bottom:0;
  transform: translateY(-10px);
}

.hero__title{
  margin:0;
  font-size:40px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-0.02em;
}
@media (min-width:768px){
  .hero__title{ font-size:60px; }
}
.text-primary{ color:var(--primary); }

.hero__subtitle{
  margin-top:24px;
  margin-bottom:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

/* history reveal */
.history{
  margin-top:22px;
  border-top:1px solid var(--line);
  padding-top:18px;

  max-height:0;
  opacity:0;
  transform: translateY(8px);
  overflow:hidden;

  transition: max-height var(--dur2) var(--ease),
              opacity var(--dur2) var(--ease),
              transform var(--dur2) var(--ease);
  transition-delay: 0ms;
}
body.is-authed .history{
  max-height: 520px;
  opacity:1;
  transform: translateY(0);
  margin-top:16px;
  transition-delay: var(--delayHistory);
}

.history__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.history__title{
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--primary);
}
.history__list{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height: 320px;
  overflow:auto;
  padding-right:6px;
}
.history__hint{
  margin-top:12px;
  font-size:10px;
  color:var(--muted);
  line-height:1.5;
}

.session{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:12px;
  border-radius:14px;
  background: var(--bg);
  border:1px solid var(--line);
  cursor:pointer;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}
.session:hover{
  border-color: rgba(245,124,0,.35);
  transform: translateY(-1px);
}
.session__main{ min-width:0; }
.session__title{
  font-size:12px;
  font-weight:800;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.session__meta{
  margin-top:6px;
  font-size:10px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.session__time{
  font-size:10px;
  color:var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

/* triple cards */
.triple{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  text-align:center;
}
.panel--mini{
  padding:20px;
  border-bottom:4px solid var(--primary);
}
.mini__kicker{
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:6px;
}
.mini__text{
  font-size:14px;
  font-weight:700;
}

/* Optional: after auth, make mini cards feel “secondary” */
body.is-authed #leftMiniCards{
  opacity:.88;
  transition: opacity var(--dur) var(--ease);
}

/* ===== Chat ===== */
.panel--chat{
  padding:24px;
  display:flex;
  flex-direction:column;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.chat__head{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:24px;
}
.chat__meta{ margin-left:auto; display:flex; align-items:center; gap:8px; }
.chat__pill {
  display:inline-flex;
  align-items:center;
  height:22px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  transition: all 0.2s ease;
}

.auth-pill--active {
  background: rgba(245, 124, 0, 0.15) !important;
  color: #fff !important;
  border-color: rgba(245, 124, 0, 0.4) !important;
}

.auth-pill--active:hover {
  background: var(--primary) !important;
  color: white !important;
  transform: translateY(-1px);
}

.chat__model-picker {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.chat__model-picker:hover {
  border-color: var(--primary);
  color: #fff;
}
.chat__model-picker option {
  background: #111;
  color: #fff;
}

.dot{
  width:8px; height:8px; border-radius:999px;
  background:var(--primary);
  display:inline-block;
}
.dot--pulse{
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:.45; transform:scale(.92); }
  50%{ opacity:1; transform:scale(1); }
}

.chat__messages{
  flex-grow:1;
  overflow-y:auto;
  padding-right:8px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* Hide scrollbars (but keep scrolling) */
.custom-scrollbar{
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge legacy */
}
.custom-scrollbar::-webkit-scrollbar{
  width: 0;
  height: 0;
}

/* Also hide scrollbar in history list */
.history__list{
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.history__list::-webkit-scrollbar{
  width: 0;
  height: 0;
}

/* === New chat feed style (no bubbles) === */
.msg{
  display:block;
  padding:12px 12px;
  background: transparent;
  flex-shrink:0;
}

.msg__text{
  font-size:12px;
  line-height:1.7;
  color: rgba(255,255,255,.92);
  white-space:pre-wrap;
  word-break: break-word;
}

.msg__label{
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--primary);
}

.msg--chart .msg__chart-holder{
  margin-top:8px;
}
.msg--chart .msg__chart-holder svg{
  width:100%;
  height:auto;
  display:block;
}

.msg--media .msg__media-holder{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.msg__media-frame{
  max-width:160px;
  height:auto;
  border-radius:4px;
  border:1px solid var(--line);
}
.msg__media-video{
  max-width:100%;
  width:320px;
  height:auto;
  border-radius:4px;
  background:#000;
  display:block;
}
.msg__media-video-link{
  display:inline-block;
  padding:6px 12px;
  border-radius:4px;
  background:var(--primary);
  color:var(--text);
  text-decoration:none;
  font-size:.9em;
}
.msg__media-video-link:hover{
  background:var(--primaryHover);
}

/* embossed separator between messages */
.msg + .msg{
  border-top: 1px solid rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(0,0,0,.35);
}


/* SYSTEM "thinking" fly-up inside chat (no card) */
.chat__messages{ position: relative; }

/* Allow last message to be scrolled to the very top with empty space below it */
.chat__messages::after{
  content:"";
  display:block;
  height: 65vh; /* creates the "empty chat area" under the pinned message */
  pointer-events:none;
  /* Without this, flexbox shrinks this spacer down to whatever's left over
     once real messages are laid out (observed: 65vh collapsing to ~128px),
     so there's rarely enough scroll room to actually pin the newest message
     to the top - the SYSTEM toast (anchored near the bottom of the visible
     viewport) then visually overlaps the still-bottom-hugging response text. */
  flex-shrink:0;
  flex-grow:0;
}


.sysfly{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  padding:10px 12px;
  pointer-events:none;
  z-index: 50;
  background: transparent;
  opacity:0;
  transform: translateY(10px);
  animation: sysFlyUp 5200ms ease-out forwards;
}
.sysfly::before{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  top:0;
  height:2px;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(0,0,0,.40));
  opacity:.85;
}
.sysfly__label{
  display:inline-block;
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(245,124,0,.95);
  margin-right: 8px;
}
.sysfly__text{
  display:inline;
  font-size:12px;
  line-height:1.5;
  color: rgba(255,255,255,.92);
  white-space:pre-wrap;
}
@keyframes sysFlyUp{
  0%   { opacity:0; transform: translateY(10px); }
  10%  { opacity:1; transform: translateY(0); }
  85%  { opacity:1; transform: translateY(-120px); }
  100% { opacity:0; transform: translateY(-160px); }
}
 
/* legacy (no longer used by chat.js, kept for safety) */
.chatcard{
  padding:0;
  border-radius:0;
  background: transparent;
  border: 0;
}

.chatcard__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-bottom:10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 1px 0 rgba(0,0,0,.30);
}
.chatcard__body{
  margin-top:0;
   font-size:12px;
   line-height:1.7;
   color: rgba(255,255,255,.92);
   white-space:pre-wrap;
 }
 
.chatcard__title{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color: var(--muted);
  min-width:0;
}
.chatcard__meta{
  font-size:10px;
  color: rgba(138,143,158,.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space:nowrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  height:20px;
  padding:0 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.85);
}
.chip--q{ border-color: rgba(245,124,0,.35); color: rgba(245,124,0,.95); }
.chip--r{ border-color: rgba(34,197,94,.30); color: rgba(187,247,208,.95); }
.chip--u{ border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }



/* question options */
.options{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.optbtn{
  appearance:none;
  border:1px solid rgba(245,124,0,.30);
  background: rgba(245,124,0,.06);
  color: rgba(255,255,255,.92);
  border-radius:999px;
  padding:8px 10px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition: transform .12s var(--ease), background .12s var(--ease), border-color .12s var(--ease);
}
.optbtn:hover{
  transform: translateY(-1px);
  background: rgba(245,124,0,.10);
  border-color: rgba(245,124,0,.45);
}

/* toast */
.toastHost{
/*  position: absolute;
  top: 50px;*/
  left: 12px;
  right: 12px;
  z-index: 999;
  display:flex;
  flex-direction:column;
  gap:10px;
  pointer-events:none;
}
.toast{
   pointer-events:none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius:12px;
  background: rgba(245,124,0,.10);
  border:1px solid rgba(245,124,0,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  padding:10px 12px;
   opacity:0;
  transform: translateY(-6px);
  animation: toastInTop 220ms var(--ease) forwards;
}
.toast__title{
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color: rgba(245,124,0,.95);
}
.toast__text{
  margin-top:6px;
  font-size:12px;
  line-height:1.5;
  color: rgba(255,255,255,.92);
  white-space:pre-wrap;
}
.toast--out{
  animation: toastFadeOut 420ms ease forwards;
}
@keyframes toastInTop{
  to{ opacity:1; transform: translateY(0); }
}
@keyframes toastFadeOut{
  0%   { opacity:1; transform: translateY(0); }
  100% { opacity:0; transform: translateY(-4px); }
}

.ai__label{
  display:block;
  color:var(--primary);
  font-weight:900;
  margin-bottom:4px;
}

.chat__composer{
  display:none;
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid var(--line);
}
body.is-authed .chat__composer{
  display:block;
}

.composer{
  position:relative;
  display:flex;
  align-items:center;
}
.composer__input{
  width:100%;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 46px 12px 18px;
  font-size:12px;
  color:#fff;
  outline:none;
}
.composer__input::placeholder{ color: rgba(138,143,158,.9); }
.composer__send{
  position:absolute;
  right:8px;
  width:36px;
  height:36px;
  border-radius:999px;
  background:var(--primary);
  border:0;
  cursor:pointer;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, background .15s ease;
}
.composer__send:hover{
  transform:scale(1.05);
  background:var(--primaryHover);
}
.composer__icon{ width:16px; height:16px; display:block; }

/* ===== Right ===== */
.panel--advantages{
  padding:24px;
  flex-grow:1;
}
.advantages__title{
  margin:0 0 20px 0;
  font-size:14px;
  font-weight:900;
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:-0.02em;
}
.advantages__list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.advantages__item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:12px;
  color:var(--muted);
}
.bullet{
  color:var(--primary);
  font-weight:900;
  line-height:1.1;
  margin-top:2px;
}

.panel--cta{
  background:var(--primary);
  border:0;
  padding:24px;
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  box-shadow: 0 18px 40px rgba(245,124,0,.10);
}
.cta__title{
  margin:0;
  font-size:20px;
  font-weight:900;
  line-height:1.15;
}
.cta__sub{
  margin:10px 0 0;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  opacity:.80;
}

/* Footer */
.footer{
  height:40px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  flex-shrink:0;
  padding:0 24px;
}
.footer__inner{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:10px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
.footer__links{ display:flex; gap:24px; }
.footer__link{
  color:var(--muted);
  text-decoration:none;
  transition: color .15s ease;
}
.footer__link:hover{ color:var(--primary); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 20px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
}
.btn--primary{ background:var(--primary); color:#fff; }
.btn--primary:hover{ background:var(--primaryHover); }
.btn--block{ width:100%; padding:12px 18px; }
.btn--ghost{
  background:transparent;
  border:1px solid var(--line);
  color:var(--muted);
}
.btn--ghost:hover{ border-color: rgba(245,124,0,.35); color:#fff; }
.btn--sm{ padding:8px 12px; font-size:10px; letter-spacing:.12em; }

.iconbtn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease;
}
.iconbtn:hover{
  background: rgba(255,255,255,.03);
  border-color: rgba(245,124,0,.35);
}
.iconbtn__icon{ width:18px; height:18px; display:block; }

button:disabled{ opacity:.65; cursor:not-allowed; }

/* Modal */
.modal{
  position:fixed;
  inset:0;
  z-index:50;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.70);
}
.modal__wrap{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.modal__card{
  width:100%;
  max-width: 520px;
  padding:0;
  overflow:hidden;
}
.modal__head{
  padding:22px 22px 16px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.modal__kicker{
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--primary);
}
.modal__title{
  margin:6px 0 0;
  font-size:20px;
  font-weight:900;
  letter-spacing:-0.02em;
}
.modal__subtitle{
  margin:10px 0 0;
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
}
.modal__body{ padding:18px 22px 20px; }

/* more vertical spacing between modal elements */
.modal__body--spaced{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.modal__body--spaced .fineprint{
  margin-top:0;
}
.modal__body--spaced .alert{
  margin-top:0;
}

.label{
  display:block;
  margin-bottom:8px;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
}
.input{
  width:100%;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--bg);
  color:var(--text);
  outline:none;
  font-size:14px;
}
.input:focus{
  border-color: rgba(245,124,0,.55);
  box-shadow: 0 0 0 3px rgba(245,124,0,.18);
}

.alert{
  margin-top:12px;
  border-radius:14px;
  padding:10px 12px;
  font-size:12px;
  line-height:1.4;
}
.alert--error{
  background: rgba(239,68,68,.10);
  border:1px solid rgba(239,68,68,.22);
  color: rgba(253,186,186,.95);
}
.alert--success{
  background: rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.22);
  color: rgba(187,247,208,.95);
}
.fineprint{
  margin:12px 0 0;
  font-size:10px;
  color:var(--muted);
  line-height:1.5;
}
.modal__foot{ padding: 0 22px 22px; }
.tip{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:10px;
  color:var(--muted);
}

.is-hidden{ display:none !important; }

.askform { padding: 8px 12px 12px; }
.askform__row { padding: 10px 0; position: relative; }
.askform__row + .askform__row::before{
  content:"";
  position:absolute; left:0; right:0; top:0; height:2px;
  background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(0,0,0,.35));
  opacity:.85;
}
.askform__label{ font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; opacity:.9; }
.askform__desc{ margin-top:4px; font-size:12px; opacity:.75; }
.askform__input{
  margin-top:8px;
  width:100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 10px;
  color: rgba(255,255,255,.92);
  outline: none;
}
.askform__actions{ padding-top: 10px; }
.askform__submit{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 10px 12px;
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
