.inline-link { color: #c9d4ff; font-weight: 600; text-decoration: none; }
.inline-link:hover { color: #fff; text-decoration: underline; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; font-weight: 800; text-decoration: none; }
.btn-primary { background: var(--brand-grad); color: #fff; }
.btn-lg { padding: 14px 22px; border-radius: 14px; font-size: 1.02rem; }

.back-to-top { position: fixed; right: 18px; bottom: 18px; padding: 12px 18px; border-radius: 999px; font-weight: 800; color: #fff; background: var(--brand-grad); box-shadow: 0 10px 30px rgba(0,0,0,.35); border: 0; cursor: pointer; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .25s ease, transform .25s ease, filter .2s ease; z-index: 2000; }
.back-to-top:hover { filter: saturate(115%); }
.back-to-top.show { opacity: .9; transform: translateY(0); pointer-events: auto; }

.hero { min-height: 70vh; display: grid; align-items: center; padding: 86px 22px 26px; background: linear-gradient(155deg,#071635 0%, #0b1f45 38%, #0f2a63 68%, #0a3d92 100%); }
@media (max-width:980px){ .hero{ min-height:60vh; padding:86px 18px 22px; } }
@media (max-width:620px){ .hero{ min-height:52vh; padding:82px 16px 18px; } }
.hero .wrap.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  align-items: center;
}
@media (max-width: 980px){
  .hero .wrap.hero-grid{ grid-template-columns: 1fr; }
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,.35)); }
.brand h1 { margin: 0; font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif; font-weight: 800; letter-spacing: .02em; }
.lead { color: #e6eeff; max-width: 62ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.hero-copy { display: grid; gap: 12px; }


.device { position: relative; border: 1px solid rgba(124,200,255,.18); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); box-shadow: 0 24px 70px rgba(0,0,0,.45); overflow: hidden; }
.slider { position: relative; }
.slider-viewport { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: transparent; border-radius: inherit; }
@media (max-width:820px){ .slider-viewport{ aspect-ratio: 16/12; } }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  margin: 0;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slide img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: left center; border: 0; }
.slide.cover-bleed img { transform: scale(1.08); transform-origin: left center; }
@media (max-width:820px){ .slide.cover-bleed img{ transform: scale(1.03); transform-origin: left center; } }
.slider-caption { padding: 10px 12px; border-top: 1px solid rgba(124,200,255,.16); background: rgba(255,255,255,.02); font-size: .95rem; color: #e6eeff; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(124,200,255,.28); background: rgba(5,18,41,.5); color: #e6eeff; cursor: pointer; z-index: 2; }
.slider-arrow:hover { border-color: rgba(124,200,255,.5); }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px auto 12px;
}

.slider-dots .card-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,212,255,.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.slider-dots .card-dot[aria-selected="true"],
.slider-dots .card-dot[aria-current="true"]{
  background: var(--brand-grad);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(124,200,255,.22);
}

.spotlight-head { display: grid; gap: 8px; margin-bottom: 6px; }
#spotlight .spotlight-head .lead { max-width: none; }
.spotlight-list { display: grid; gap: 18px; }
.spotlight-item { display: grid; grid-template-columns: 1.05fr 1fr; gap: 18px; align-items: center; border: 1px solid rgba(124,200,255,.22); border-radius: 14px; padding: 14px; background: rgba(255,255,255,.03); position: relative; transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease; }
.spotlight-item.alt { grid-template-columns: 1.05fr 1fr; }
.spotlight-item:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.45); border-color: rgba(124,200,255,.36); }
.spotlight-item .shot { margin: 0; overflow: hidden; border-radius: 12px; cursor: default; }
.spotlight-item img { display: block; width: 100%; height: auto; border-radius: 10px; border: 1px solid rgba(124,200,255,.18); box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.spotlight-item .shot img { aspect-ratio: 16/10; object-fit: cover; }
.spotlight-item .copy { display: grid; gap: 8px; }
.spotlight-item h3 { margin: 0; font-size: 1.15rem; font-weight: 800; font-family: Montserrat,Inter,sans-serif; }
.spotlight-item .bullets { list-style: none; padding: 0; margin: 4px 0 0 0; display: grid; gap: 6px; color: #dce6ff; }
.spotlight-item .bullets li { position: relative; padding-left: 22px; }
.spotlight-item .bullets li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(135deg,#7cc8ff,#4a8bfd 55%,#2b59ff); box-shadow: 0 0 0 2px rgba(255,255,255,.12); }
@media (max-width:980px){ .spotlight-item,.spotlight-item.alt{ grid-template-columns:1fr; } .spotlight-item.alt .shot{ order:-1; } }


.spotlight-group { display: grid; gap: 8px; margin: 4px 0 0; padding-top: 4px; }
.spotlight-group .group-head { display: flex; align-items: center; gap: 10px; }
.spotlight-group .group-head .eyebrow { margin: 0; }
.spotlight-group .group-head h3{ margin: 0; font-size: 1.05rem; font-weight: 800; font-family: Montserrat,Inter,sans-serif; letter-spacing: .06em; text-transform: uppercase; color: #c9d4ff; }
.spotlight-group .spotlight-list { display: grid; gap: 10px; }
.spotlight-group + .spotlight-group { margin-top: 2px; }
.eyebrow { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #c9d4ff; font-weight: 800; display: inline-block; margin-bottom: 2px; }

.lightbox { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: none; }
.lightbox.open { opacity: 1; visibility: visible; transition: none; }
.lightbox .backdrop{
  position: fixed;
  inset: 0;
  background: rgba(5,18,41,.55);
  opacity: 0;
  backdrop-filter: blur(10px) saturate(140%);
  transition: none;
}
.lightbox.open .backdrop { opacity: 1; }
.lightbox .content { position: relative; z-index: 1; max-width: min(92vw,1100px); max-height: min(90vh,900px); display: grid; gap: 10px; transform: none; opacity: 1; transition: none; }
.lightbox figure { margin: 0; display: block; position: relative; }
.lightbox img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.lightbox figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; border-radius: 10px; background: rgba(5,18,41,.72); border: 1px solid rgba(124,200,255,.28); color: #eaf2ff; font-weight: 700; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.lightbox .close {
  position: absolute;
  top: -38px;
  right: -2px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  line-height: 1;
  color: var(--brand-mid, #7cc8ff);
  cursor: pointer;
  z-index: 1001;
}
.lightbox .close:hover { border-color: rgba(124,200,255,.5); }


.two-col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
@media (max-width:980px){ .two-col{ grid-template-columns: 1fr; } }
.panel { border: 1px solid rgba(124,200,255,.22); border-radius: 12px; padding: 16px; background: rgba(255,255,255,.03); }

.table-wrap { overflow: auto; border: 1px solid rgba(124,200,255,.22); border-radius: 12px; }
.compare-modern { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 720px; overflow: hidden; border-radius: 14px; }
.compare-modern thead th { position: sticky; top: 0; background: linear-gradient(180deg,#0b2148,#0a1b3a); color: #eaf2ff; font-weight: 800; border-bottom: 1px solid rgba(124,200,255,.22); }
.compare-modern th, .compare-modern td { padding: 14px 16px; border-bottom: 1px solid rgba(124,200,255,.14); text-align: left; }
.compare-modern tbody tr { background: rgba(255,255,255,.03); }
.compare-modern tbody tr:nth-child(even) { background: rgba(255,255,255,.05); }
.compare-modern tbody tr:hover { background: rgba(124,200,255,.08); }
.compare-modern th, .compare-modern td { word-break: break-word; overflow-wrap: anywhere; }
.compare-modern thead th:nth-child(2){ color:#ffd7d7; }
.compare-modern thead th:nth-child(3){ color:#d9f1ff; }
.compare-modern tbody td:nth-child(2){ border-left: 4px solid rgba(255,120,120,.25); }
.compare-modern tbody td:nth-child(3){ border-left: 4px solid rgba(124,200,255,.35); background: linear-gradient(90deg,rgba(124,200,255,.06),transparent 50%); }
.compare-modern tbody td:first-child{ font-weight: 800; color: #eaf2ff; width: 18%; white-space: nowrap; }
.compare-modern thead th:first-child{ border-top-left-radius: 14px; }
.compare-modern thead th:last-child{ border-top-right-radius: 14px; }
.compare-modern tbody tr:last-child td:first-child{ border-bottom-left-radius: 14px; }
.compare-modern tbody tr:last-child td:last-child{ border-bottom-right-radius: 14px; }

@media (max-width:820px){
  .table-wrap{ border: 0; }
  .compare-modern{ min-width: 0; border-radius: 12px; }
  .compare-modern thead{ display: none; }
  .compare-modern tbody{ display: block; }
  .compare-modern tbody tr{ display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "title title" "left right"; gap: 10px; margin: 0 0 12px; border: 1px solid rgba(124,200,255,.22); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.03); }
  .compare-modern tbody td{ border: 0; border-bottom: 0; padding: 12px 14px; position: static; background: transparent; display: block; }
  .compare-modern tbody td::before{ content: none; }
  .compare-modern tbody td:first-child{ grid-area: title; font-weight: 800; color: #eaf2ff; background: linear-gradient(180deg,#0b2148,#0a1b3a); border-bottom: 1px solid rgba(124,200,255,.22); border-radius: 12px 12px 0 0; width: auto; white-space: normal; justify-self: stretch; }
  .compare-modern tbody tr{ grid-auto-flow: row; }
  .compare-modern tbody td:nth-child(2){ grid-area: left; }
  .compare-modern tbody td:nth-child(3){ grid-area: right; background: rgba(255,255,255,.04); }
  .compare-modern tbody td:nth-child(2)::before{ content: "Spreadsheets & email"; display: block; font-weight: 800; color: #cfe2ff; margin: 0 0 6px; }
  .compare-modern tbody td:nth-child(3)::before{ content: "Sintegrum with Evalion"; display: block; font-weight: 800; color: #d9f1ff; margin: 0 0 6px; }
}
@media (max-width:520px){ .compare-modern tbody tr{ grid-template-columns:1fr; grid-template-areas:"title" "left" "right"; } }
@media (max-width:520px){ .compare-modern tbody td{ padding:12px 14px; } .compare-modern tbody td::before{ position: static; display: block; margin: 0 0 6px; white-space: normal; line-height: 1.2; } }

.cta-band{
  background:
    radial-gradient(140% 200% at 100% 0, rgba(124,200,255,.16), transparent 55%),
    linear-gradient(180deg, rgba(6,21,46,0.97), rgba(6,21,46,1));
  border-top: 1px solid rgba(124,200,255,.14);
  border-bottom: 1px solid rgba(124,200,255,.10);
}
.cta-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr auto; gap: 18px; align-items: center; padding: 24px 22px; }
@media (max-width:820px){ .cta-inner{ grid-template-columns: 1fr; } }
.proof-strip { background: rgba(255,255,255,.02); padding: 40px 22px; }
.proof-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align: center; }
@media (max-width:980px){ .proof-inner{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px){ .proof-inner{ grid-template-columns: 1fr; } }

.pricing-band{
  border-bottom: 1px solid rgba(124,200,255,.10);
  padding: 24px 22px 26px;
}
.pricing-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 22px 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 18px;
  align-items: start;
}
.pricing-copy h2{
  margin: 0 0 8px;
}
.pricing-copy p{
  margin: 0 0 10px;
  color: #cfe2ff;
  font-size: .96rem;
}
.pricing-copy .muted{
  margin-top: 4px;
}
.pricing-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 18px;
}
.pricing-tier{
  position: relative;
  border-radius: 14px;
  padding: 18px 22px 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(6,21,46,0.98), rgba(6,21,46,0.94)) padding-box,
    linear-gradient(135deg, rgba(124,200,255,.85), rgba(74,139,253,.8), rgba(43,89,255,.9)) border-box;
  box-shadow: 0 14px 34px rgba(0,0,0,.55);
  display: grid;
  gap: 8px;
}
.pricing-tier.pricing-estimator {
  margin-top: -6px;
  padding: 20px 22px 20px;
}

.pricing-estimator .pricing-slider-block{
  display: grid;
  gap: 4px;
  margin-top: 0;
}
.pricing-slider-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .88rem;
  color: #cfe2ff;
  margin-bottom: 10px;
}
.price-meta-label{
  opacity: .9;
}
.price-meta-value{
  font-weight: 700;
}
.pricing-estimator input[type="range"]{
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(201,212,255,.25);
  outline: none;
  cursor: pointer;
  touch-action: none;
}
.pricing-estimator input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-mid, #7cc8ff);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(124,200,255,.25);
  transition: transform .16s ease, box-shadow .16s ease;
}

.pricing-estimator input[type="range"]:active::-webkit-slider-thumb{
  transform: scale(1.06);
  box-shadow: 0 0 0 6px rgba(124,200,255,.32);
}
.pricing-estimator input[type="range"]::-moz-range-thumb{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-mid, #7cc8ff);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(124,200,255,.25);
  transition: transform .16s ease, box-shadow .16s ease;
}

.pricing-estimator input[type="range"]:active::-moz-range-thumb{
  transform: scale(1.06);
  box-shadow: 0 0 0 6px rgba(124,200,255,.32);
}
.pricing-estimator input[type="range"]::-moz-range-track{
  height: 4px;
  border-radius: 999px;
  background: rgba(201,212,255,.25);
}
.pricing-slider-scale{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  font-size: .8rem;
  color: #9fb3e6;
  gap: 0;
  width: calc(100% + 20px);
  margin-left: -10px;
}

.pricing-slider-scale span{
  text-align: center;
}
.pricing-slider-scale span::before{
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201,212,255,.55);
  margin: 2px auto 4px;
}
.pricing-estimate-output{
  margin-top: 10px;
  display: grid;
  gap: 4px;
}
.pricing-tier h3{
  margin: 0;
  font-family: Montserrat,Inter,sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: #ffffff;
}
.price-range{
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: #eaf2ff;
}
.price-note{
  margin: 0;
  font-size: .9rem;
  color: #cfe2ff;
}
.price-meta{
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: .88rem;
  color: #d5e4ff;
}
@media (max-width: 980px){
  .pricing-inner{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}
.proof-item { border: 1px solid rgba(124,200,255,.22); border-radius: 12px; padding: 18px; background: rgba(255,255,255,.03); display: grid; gap: 8px; }
.proof-item h3 { margin: 0; font-size: 1.05rem; font-weight: 800; font-family: Montserrat,Inter,sans-serif; color: #fff; }
.proof-item p { margin: 0; color: #cfe2ff; font-size: .95rem; }
.proof-note { max-width: var(--maxw); margin: 8px auto 0; text-align: center; color: #cfe2ff; font-size: .9rem; }
.proof-note a { color: #c9d4ff; text-decoration: underline; }
.proof-note a:hover { color: #fff; }

.stats-band{
  background: rgba(6,21,46,0.96);
  border-top: 1px solid rgba(124,200,255,.18);
  border-bottom: 1px solid rgba(124,200,255,.18);
  padding: 24px 22px;
}
.stats-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.stat-item{
  position: relative;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(9,26,60,0.98), rgba(9,26,60,0.9)) padding-box,
    linear-gradient(135deg, rgba(124,200,255,.8), rgba(74,139,253,.8), rgba(43,89,255,.85)) border-box;
  box-shadow: 0 14px 36px rgba(0,0,0,.5);
  display: grid;
  gap: 6px;
}
.stat-number{
  margin: 0;
  font-family: Montserrat,Inter,sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #ffffff;
}
.stat-label{
  margin: 0;
  font-size: .95rem;
  color: #d5e4ff;
}
@media (max-width: 820px){
  .stats-inner{
    grid-template-columns: 1fr;
  }
}

#faq .wrap { display: grid; gap: 12px; }
#faq h2 { margin-bottom: 8px; }
.faq-columns { display: grid; gap: 12px; }
@media (min-width:980px){ .faq-columns{ grid-template-columns: 1fr 1fr; } }
.faq-col { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(124,200,255,.22); border-radius: 12px; background: rgba(255,255,255,.03); transition: border-color .2s ease, box-shadow .2s ease, transform .16s ease; position: relative; }
.faq-item:hover { transform: translateY(-1px); box-shadow: 0 14px 40px rgba(0,0,0,.35); border-color: rgba(124,200,255,.36); }
.faq-item::before { content: ""; position: absolute; left: 10px; top: 10px; bottom: 10px; width: 4px; border-radius: 4px; background: linear-gradient(180deg,rgba(124,200,255,.95),rgba(74,139,253,.95) 55%,rgba(43,89,255,.95)); box-shadow: 0 0 0 2px rgba(255,255,255,.10); pointer-events: none; }
.faq-item:hover::before, .faq-item[aria-expanded="true"]::before{ background: linear-gradient(180deg,rgba(160,220,255,1),rgba(102,164,255,1) 55%,rgba(70,110,255,1)); box-shadow: 0 0 0 2px rgba(255,255,255,.14), 0 6px 18px rgba(43,89,255,.35); }
.faq-q { appearance: none; -webkit-appearance: none; background: none; border: 0; width: 100%; text-align: left; padding: 16px 46px 16px 18px; cursor: pointer; color: #eaf2ff; font-weight: 800; font-family: Montserrat,Inter,sans-serif; position: relative; }
.faq-q:focus { outline: none; }
.faq-q:focus-visible { outline: none; text-decoration: underline; }
.faq-q .chev { position: absolute; right: 14px; top: 50%; width: 12px; height: 12px; border-right: 2px solid #c9d4ff; border-bottom: 2px solid #c9d4ff; transform: translateY(-50%) rotate(0deg); transition: transform .18s ease; }
.faq-item[aria-expanded="true"] .faq-q .chev { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 18px 0 18px; color: #dce6ff; }
.faq-a-inner { padding-bottom: 16px; }
.faq-a-clip { overflow: hidden; max-height: 0; opacity: 0; transform: translateY(-2px); transition: max-height .28s ease, opacity .22s ease, transform .22s ease; will-change: max-height,opacity,transform; }
.faq-item[aria-expanded="true"] .faq-a-clip { opacity: 1; transform: none; }
.ov-label { margin: 0 0 8px; font-size: 1.02rem; font-weight: 800; font-family: Montserrat,Inter,sans-serif; }

.site-header.hidden { transform: translateY(-100%); transition: transform .3s ease, background .35s ease, box-shadow .35s ease, padding .25s ease; pointer-events: none; }

.page-index .hero{
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 90px 24px 0;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  text-align: center;
  isolation: isolate;
}
.page-index .hero::after{ content:""; position:absolute; left:0; right:0; bottom:-1px; height:2px; background: var(--base); }
.stack{ display: grid; gap: 18px; justify-items: center; }
.logo-container{ display: inline-block; }
.logo-wrap{ height: clamp(150px, 22vw, 200px); width: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,.45)); }
.brand-name{ font-family: Montserrat, Inter, sans-serif; font-weight:800; letter-spacing:.18em; text-transform:uppercase; font-size: clamp(26px, 4.8vw, 54px); line-height:1.05; margin-top:2px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.tagline{
  max-width: 820px;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--muted);
  margin-top: -6px;
}
.scroll-cue{ position:absolute; left:50%; bottom:22px; transform: translateX(-50%); z-index:60; transition: opacity .25s ease; font-size:.95rem; color: var(--muted); display:grid; justify-items:center; gap:6px; user-select:none; }
.scroll-cue.hidden{ opacity:0; pointer-events:none; }
.arrow{ width:18px; height:28px; border:2px solid var(--muted); border-radius:12px; position:relative; }
.arrow::after{
  content:"";
  position:absolute;
  left:50%;
  top:6px;
  width:6px;
  height:6px;
  border-left:2px solid var(--muted);
  border-bottom:2px solid var(--muted);
  transform: translateX(-50%) rotate(-45deg);
}

.section-title{
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.1;
  margin: 0 0 28px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
  background-image: linear-gradient(135deg,#7cc8ff,#4a8bfd 55%,#2b59ff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 4px;
  padding-bottom: 10px;
}
@media (min-width: 981px){ .section-title{ position: static; top: auto; z-index: auto; padding: 0; } }

.shot{ border:1px solid rgba(124,200,255,.22); border-radius:10px; overflow:hidden; background:#0b1f45; position:relative; }
.shot img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/10;
  object-fit:cover;
  filter:none;
  transition:none;
}
.shot, .shot img{ cursor:default; }
.shot:hover img{ transform:none; filter:none; }
.shot figcaption{ padding:10px 12px; color:#e6eeff; font-size:.95rem; border-top:1px solid rgba(124,200,255,.16); background: rgba(255,255,255,.02); }

#what-you-get .shot,
#what-you-get .shot img{
  cursor: pointer;
}

#card-lightbox .shot,
#card-lightbox .shot img{
  cursor: default;
}

.learn-more{
  display:flex;
  justify-content:flex-start;
  margin-top:0;
}

.learn-more a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  text-decoration:none;
  color:#e6eeff;
  border:1px solid rgba(124,200,255,.55);
  background: radial-gradient(circle at 0 0, rgba(124,200,255,.22), transparent 55%),
              rgba(6,21,46,.75);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.learn-more a:hover{
  color:#ffffff;
  border-color:rgba(160,220,255,.9);
  background: radial-gradient(circle at 0 0, rgba(160,220,255,.3), transparent 55%),
              rgba(6,21,46,.95);
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}

.learn-more a:link,
.learn-more a:visited,
.learn-more a:active{
  color:#e6eeff;
}

.learn-more--mobile{
  display: none;
}

.how-copy{ position: static; top:auto; border:1px solid rgba(124,200,255,.22); border-radius:10px; padding:16px 16px 8px; background: rgba(255,255,255,.03); box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.how-copy h3{ margin:0 0 8px; font-family: Montserrat, Inter, sans-serif; font-weight:800; letter-spacing:.02em; font-size: clamp(18px, 2.2vw, 22px); }
.how-copy p{ margin:6px 0 10px; color:#dce6ff; }
.how-points{ margin:10px 0 0; padding-left:18px; color:#e6eeff; display:grid; gap:6px; }

.problem-list{ display:flex; flex-wrap:wrap; gap:22px; align-items:flex-start; }
.problem-list > .problem-item{ flex:1 1 calc(33.333% - 14.67px); max-width: calc(33.333% - 14.67px); }
@media (max-width:980px){ .problem-list{ gap:16px; } .problem-list > .problem-item{ flex: 1 1 100%; max-width: 100%; } }
.problem-item{ position:relative; padding:22px 20px 20px; border-radius:14px; border:1px solid transparent; background:
  linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)) padding-box,
  linear-gradient(135deg, rgba(124,200,255,.32), rgba(74,139,253,.22), rgba(43,89,255,.18)) border-box;
  box-shadow: 0 8px 22px rgba(0,0,0,.28), 0 0 0 rgba(88,161,255,0);
  transition: transform .22s ease, box-shadow .25s ease, filter .25s ease;
  overflow:hidden; z-index:0; will-change: transform, box-shadow, filter; cursor: pointer;
}
.problem-item:focus-visible{ outline: 2px solid rgba(124,200,255,.5); outline-offset: 4px; }
.problem-details{ max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .3s ease; margin-top: 8px; border-top: 1px solid rgba(124,200,255,.12); padding-top: 8px; }
.problem-item.open .problem-details{ opacity:1; max-height: 600px; }
.problem-details ul{ margin:6px 0 0; padding-left:18px; color:#e6eeff; display:grid; gap:4px; font-size:.96rem; }
.problem-item::before{ content:""; position:absolute; inset:-8px; border-radius:inherit; background:
  radial-gradient(120% 120% at var(--glow-x, 50%) var(--glow-y, 50%), rgba(124,200,255,.50), rgba(74,139,253,.34) 45%, rgba(43,89,255,.24) 70%, transparent 78%);
  opacity:0; filter: blur(24px); transition: opacity .25s ease, filter .25s ease, background-position .05s linear; z-index:-1; will-change: opacity, filter, background; }
.problem-item:hover{ transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.36), 0 0 36px rgba(88,161,255,.28); filter: saturate(118%); }
.problem-item:hover::before{ opacity: 1; filter: blur(30px); }
.problem-icon{ height:40px; width:40px; border-radius:10px; display:grid; place-items:center; background: var(--brand-grad); color:#06152e; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)); margin-bottom:12px; }
.problem-item h3{ font-family: Montserrat, Inter, sans-serif; font-weight:800; letter-spacing:.02em; font-size: clamp(18px, 2vw, 22px); margin:0 0 8px; }
.problem-item p{ margin:0; color:#dce6ff; line-height:1.55; font-size:.98rem; }
.problem-item .chev{
  position: absolute;
  right: 20px;
  top: 26px;
  width: 32px;
  height: 32px;
  border-right: 2px solid rgba(124,200,255,.95);
  border-bottom: 2px solid rgba(124,200,255,.95);
  transform: rotate(0deg);
  transition: transform .18s ease, border-color .18s ease, opacity .18s ease;
  opacity: .95;
}
.problem-item:hover .chev{ border-color:#ffffff; }
.problem-item.open .chev, .problem-item[aria-expanded="true"] .chev{ transform: rotate(45deg); }

#contact {
  background: linear-gradient(180deg, rgba(6,21,46,0.99), rgba(6,21,46,1));
  border-top: 1px solid rgba(124,200,255,.10);
  border-bottom: 1px solid rgba(124,200,255,.08);
}
.contact-card{ position:relative; padding:18px 18px 16px; border-radius:14px; border:1px solid rgba(124,200,255,.26); background:
  linear-gradient(rgba(255,255,255,.04), rgba(255,255,255,.035)) padding-box,
  linear-gradient(135deg, rgba(124,200,255,.36), rgba(74,139,253,.22), rgba(43,89,255,.18)) border-box;
  box-shadow: 0 8px 22px rgba(0,0,0,.30), 0 0 0 rgba(88,161,255,0); z-index:0; overflow:hidden; }
.contact-card::after{ content:""; position:absolute; left:0; top:0; bottom:0; width:6px; background: var(--brand-grad); opacity:.9; }
.contact-name{ margin:0 0 4px; font-family: Montserrat, Inter, sans-serif; font-weight:800; letter-spacing:.02em; font-size:1.05rem; }
.contact-role{ margin:0 0 10px; color:#c9d4ff; font-weight:600; font-size:.95rem; }
.contact-meta{ display:flex; gap:16px; flex-wrap:wrap; font-size:.96rem; }
.contact-meta a{ color:#e6eeff; text-decoration:none; border-bottom:1px dotted rgba(230,238,255,.35); }
.contact-meta a:visited, .contact-meta a:active{ color:#e6eeff; }
.contact-meta a:hover{ color:#fff; border-bottom-color: rgba(230,238,255,.75); }

#card-lightbox .content{
  max-width: min(95vw, 1500px);
  width: auto;
  max-height: 92vh;
  display: block;
  margin: 0 auto;
}
#card-lightbox .content > #card-slot{
  position: relative;
  padding: 0;
}

@media (max-width: 820px){
  #card-lightbox .content > #card-slot{
    transition: height .22s ease;
  }
}

#card-lightbox .spotlight-item.panel{
  position: relative;
  padding: 18px 48px 18px 28px;
  background: rgba(6,21,46,0.92);
  backdrop-filter: blur(18px) saturate(160%);
  border-radius: 12px;
  border: 1px solid rgba(124,200,255,.38);
  height: auto;
  max-height: 92vh;
  overflow-y: auto;
}

#card-lightbox .spotlight-item.panel.card-ghost{
  position: absolute;
  inset: 0;
}

#card-lightbox #card-title{
  font-size: 1.35rem;
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 6px;
  background-image: linear-gradient(135deg,#7cc8ff,#4a8bfd 55%,#2b59ff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 2px;
}

#card-lightbox .spotlight-item.panel .copy{
  gap: 12px;
}
#card-lightbox .spotlight-item.panel .copy p{
  font-size: 1rem;
  line-height: 1.65;
}

#card-lightbox .card-foot{
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(124,200,255,.24);
  font-size: .86rem;
  color: #cfe2ff;
}

#card-lightbox .card-foot p{
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
}

#card-lightbox .card-foot em{
  opacity: .9;
}

#card-lightbox .card-foot-link{
  font-weight: 600;
  text-decoration: none;
  color: #c9d4ff;
  border-bottom: 1px dotted rgba(201,212,255,.45);
}

#card-lightbox .card-foot-link:hover{
  color: #ffffff;
  border-bottom-color: rgba(230,238,255,.8);
}

@media (min-width: 821px){
  #card-lightbox .spotlight-item.panel{
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    grid-template-rows: auto auto 1fr auto;
    column-gap: 24px;
    row-gap: 12px;
    align-items: start;
  }
  #card-lightbox .spotlight-item.panel .eyebrow{
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-bottom: 2px;
  }
  #card-lightbox #card-title{
    grid-column: 2;
    grid-row: 2;
  }
  #card-lightbox .spotlight-item.panel .shot{
    grid-column: 1;
    grid-row: 1 / 5;
    margin-left: 12px;
    margin-top: 0;
    height: auto;
  }
  #card-lightbox .spotlight-item.panel .shot img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  #card-lightbox .spotlight-item.panel .copy{
    grid-column: 2;
    grid-row: 3;
    align-self: start;
  }
  #card-lightbox .card-foot{
    grid-column: 2;
    grid-row: 4;
  }
}

@media (max-width: 820px){
  #card-lightbox .spotlight-item.panel{
    padding: 16px 32px 14px;
    min-height: 0;
  }
  #card-lightbox .spotlight-item.panel .shot{
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 820px){
  #what-you-get .how-left .learn-more,
  #how-it-works .wyget-left .learn-more{
    display: none;
  }

  #what-you-get .learn-more--mobile,
  #how-it-works .learn-more--mobile{
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (max-width: 820px){
  #what-you-get .how-demo{
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #what-you-get .how-left{
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  #what-you-get .how-left .how-copy{
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

#card-lightbox .spotlight-item.panel .card-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 70%;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  color: #eaf2ff;
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
#card-lightbox .spotlight-item.panel .card-nav.prev{ left: 0; }
#card-lightbox .spotlight-item.panel .card-nav.next{ right: 0; }
#card-lightbox .spotlight-item.panel .card-nav:hover{ color: #ffffff; }


#card-lightbox .spotlight-item.panel .card-nav.next:not([disabled]){
  color: var(--brand-mid, #7cc8ff);
}

#card-lightbox .spotlight-item.panel .card-nav.prev:not([disabled]){
  color: var(--brand-mid, #7cc8ff);
}

#card-lightbox .spotlight-item.panel .card-nav[disabled]{
  opacity: .4;
  cursor: not-allowed;
  color: #7f8da6;
  pointer-events: none;
}

@media (max-width: 820px){
  #card-lightbox .spotlight-item.panel .card-nav{
    height: auto;
    font-size: 54px;
  }
}

#card-lightbox .card-dots{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

#card-lightbox .card-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,212,255,.6);
  background: transparent;
  padding: 0;
  cursor: default;
}


#card-lightbox .card-dot.is-active{
  background: var(--brand-grad);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(124,200,255,.22);
}

#card-lightbox .spotlight-item.panel #card-cap{
  display: block;
  margin-top: 8px;
  font-size: .88rem;
  line-height: 1.4;
  color: #cfe2ff;
}

#card-lightbox .spotlight-item.panel.card--hero-image{
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  min-height: auto;
}

#card-lightbox .spotlight-item.panel.card--hero-image .shot{
  margin: 0;
  flex: 0 0 auto;
}

#card-lightbox .spotlight-item.panel.card--hero-image .shot img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

#card-lightbox .spotlight-item.panel.card--hero-image #card-cap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 18px 6px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.5;
  color: #cfe2ff;
  border-top: none;
  background: rgba(6,21,46,0.96);
  text-align: center;
}

#card-lightbox .spotlight-item.panel.card--hero-image #card-title,
#card-lightbox .spotlight-item.panel.card--hero-image .copy,
#card-lightbox .spotlight-item.panel.card--hero-image .card-foot{
  display: none !important;
}

@media (max-width: 820px){
  #card-lightbox .spotlight-item.panel.card--hero-image{
    min-height: auto;
  }
}

@media (min-width: 980px){
  #card-lightbox .spotlight-item.panel.card--hero-image{
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  #card-lightbox .spotlight-item.panel.card--hero-image .shot img{
    max-height: 78vh;
    margin-inline: auto;
  }
}
