:root{
  --bg:#020406;
  --fg:#f7fbff;
  --muted:#9bb0c7;
  --text-body:#c7d3df;
  --text-soft:#97aabd;
  --brand:#89d9ff;
  --brand-2:#77f2c9;
  --glass:rgba(255,255,255,.035);
  --border:rgba(255,255,255,.12);
  --focus:#89d9ff;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --home-max:var(--scale-site-max);
  --home-shell-top:var(--scale-home-shell-top);
  --home-shell-bottom:var(--scale-home-shell-bottom);
  --home-hero-size:var(--scale-home-hero-size);
  --home-demo-height:var(--scale-demo-height-home);
}

.future-home-page{
  background:
    radial-gradient(circle at 18% 12%, rgba(119,242,201,.08), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(137,217,255,.08), transparent 24%),
    #020406;
}

.future-home-page #siteHeader{
  width:var(--home-max);
  padding:10px 0;
}

.future-home-shell{
  position:relative;
  z-index:1;
  max-width:var(--home-max);
  margin:0 auto;
  padding:var(--home-shell-top) 0 var(--home-shell-bottom);
  display:grid;
  gap:14px;
}

.future-duo-grid{
  display:grid;
  gap:14px;
}

.future-main-card{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.future-chatbot-card{
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:16px;
  align-items:start;
}

.future-chatbot-copy{
  display:grid;
  gap:10px;
  align-content:start;
  width:100%;
  min-height:100%;
  max-width:35rem;
}

.future-chatbot-card h1{
  margin:.16em 0 0;
  font-size:var(--home-hero-size);
  line-height:.98;
  letter-spacing:-.05em;
  text-wrap:balance;
}

.future-main-card .lead{
  max-width:34rem;
  font-size:clamp(.96rem, 1.2vw, 1rem);
  line-height:1.62;
}

.future-demo-wrap{
  position:relative;
  align-self:start;
  justify-self:stretch;
  width:100%;
  max-width:none;
  min-width:0;
  overflow:hidden;
  border-radius:20px;
  background:
    radial-gradient(circle at 22% 18%, rgba(119,242,201,.1), transparent 28%),
    radial-gradient(circle at 78% 10%, rgba(137,217,255,.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    #020406;
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}

.future-demo-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(137,217,255,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  opacity:1;
  transition:opacity .22s ease;
  pointer-events:none;
}

.future-demo-wrap.is-ready::before{
  opacity:0;
}

.future-demo-frame{
  display:block;
  width:100%;
  height:var(--home-demo-height);
  border:0;
  border-radius:20px;
  background:transparent;
  opacity:0;
  transition:opacity .22s ease;
}

.future-demo-wrap.is-ready .future-demo-frame{
  opacity:1;
}

.future-header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.future-header-link-group{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.future-mini-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--fg);
  text-decoration:none;
  font-size:.88rem;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.future-mini-link:hover,
.future-mini-link:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(137,217,255,.4);
  background:rgba(255,255,255,.06);
  outline:none;
}

.future-mobile-nav{
  display:none;
  width:100%;
}

.future-mobile-nav summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:44px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--fg);
  cursor:pointer;
  font-weight:700;
}

.future-mobile-nav summary::-webkit-details-marker{
  display:none;
}

.future-mobile-nav[open] summary{
  border-bottom-left-radius:18px;
  border-bottom-right-radius:18px;
}

.future-mobile-panel{
  display:grid;
  gap:10px;
  padding-top:10px;
}

.future-mobile-link-group{
  display:grid;
  gap:10px;
}

.future-chatbot-links{
  display:grid;
  gap:6px;
  grid-template-columns:1fr;
  margin-top:auto;
  width:100%;
  max-width:42rem;
}

.future-link-row{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  gap:8px 14px;
  align-items:center;
  min-height:0;
  padding:8px 0;
  border:0;
  border-radius:0;
  background:transparent;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}

.future-home-page .future-link-row:hover,
.future-home-page .future-link-row:focus-visible{
  transform:translateX(3px);
  outline:none;
}

.future-link-copy{
  display:grid;
  gap:2px;
  min-width:0;
  color:var(--text-body);
}

.future-link-copy strong{
  color:var(--fg);
  font-size:.98rem;
}

.future-link-index{
  color:rgba(137,217,255,.75);
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  padding-top:4px;
}

.future-link-row .offer-card-link-note,
.future-software-link .offer-card-link-note{
  color:var(--brand);
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.future-link-action{
  justify-self:end;
  white-space:nowrap;
}

.future-software-card{
  gap:14px;
  max-width:46rem;
}

.future-software-link{
  display:inline-flex;
  align-items:center;
  width:max-content;
}

.future-home-page footer{
  padding-top:8px;
  border-top:none;
}

@media (max-width: 720px){
  #siteHeader{
    align-items:stretch;
  }

  .future-home-shell{
    max-width:var(--scale-site-max-mobile);
    padding-top:14px;
  }

  .future-header-actions{
    display:none;
  }

  .future-mobile-nav{
    display:block;
  }

  .future-mobile-panel .future-mini-link{
    width:100%;
    justify-content:center;
  }

  .future-chatbot-card{
    grid-template-columns:minmax(0, 1fr);
  }

  .future-chatbot-card h1{
    font-size:clamp(1.9rem, 10vw, 2.45rem);
  }

  .future-chatbot-links{
    grid-template-columns:1fr;
  }

  .future-link-row{
    grid-template-columns:auto minmax(0, 1fr);
    justify-items:start;
    min-height:0;
  }

  .future-link-action{
    grid-column:2;
    justify-self:start;
  }

  .future-demo-frame{
    height:var(--scale-demo-height-home-mobile);
    max-width:none;
  }
}

@media (max-width: 520px){
  .future-demo-frame{
    height:var(--scale-demo-height-home-mobile-sm);
  }
}

@media (prefers-reduced-motion: reduce){
  .future-mini-link,
  .future-link-card,
  .future-demo-wrap::before,
  .future-demo-frame{
    transition:none;
  }
}
