:root{
  /* Theme tokens — change these to differentiate your look */
  --bg: #FDFCE8;
  --surface: #0f1833;
  --surface-2: #0b142c;
  --text: #000000;
  --muted: rgba(238,242,255,.75);
  --line: rgba(238,242,255,.12);

  /* Brand gradient inspired by modern SaaS patterns (not a copy of anyone’s brand) */
  --brand-1: #2b74ff;
  --brand-2: #00b3ff;

  --good: #21c55d;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 20px;
  --radius-sm: 14px;

  --container: 1120px;
  --font: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 700px at 30% -10%, rgba(43,116,255,.35), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(0,179,255,.25), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
ul{ margin: 0; padding-left: 1.1rem; }
li{ margin: .35rem 0; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 1rem;
  background: rgba(255,255,255,.95);
  color: #0b1020;
  padding: .6rem .9rem;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 1rem; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.03); text-decoration: none; }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  color: white;
}
.btn-ghost{
  background: rgba(238,242,255,.08);
  border-color: rgba(238,242,255,.16);
  color: white;
}

.section{
  padding: 4.25rem 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}

.section-head{
  max-width: 740px;
  margin-bottom: 1.75rem;
}
.section-head h2{
  margin: 0 0 .45rem 0;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  letter-spacing: -.02em;
}
.section-head p{
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.62);
  border-bottom: 1px solid rgba(238,242,255,.10);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1rem;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.brand-mark{
  
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 12px 30px rgba(43,116,255,.25);
}
.brand-text{ font-size: 1.45rem; 
    color:white;
}

.brand-text:hover{ font-size: 1.45rem; 
    color:var(--brand-2);
}
.brand-mark img{
    width: 55px;
    height: 55px;
    border-radius: 25%;
}

.nav{
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-list{
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-item{ position: relative; }

.nav-link{
  background: transparent;
  border: 0;
  color: white;
  font: inherit;
  font-weight: 700;
  padding: .6rem .8rem;
  border-radius: 999px;
  text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  cursor: pointer;
}
.nav-link:hover{
  background: rgba(238,242,255,.08);
  color: var(--brand-2);
}
.chev{
  display: inline-block;
  width: .6rem; height: .6rem;
  margin-left: .35rem;
  border-right: 2px solid rgba(238,242,255,.7);
  border-bottom: 2px solid rgba(238,242,255,.7);
  transform: rotate(45deg) translateY(-1px);
}

.nav-cta{
  display: flex;
  color: white;
  gap: .6rem;
}

.has-dropdown .dropdown{
  position: absolute;
  top: calc(100% + .7rem);
  left: 0;
  width: min(680px, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(15,24,51,.96);
  border: 1px solid rgba(238,242,255,.12);
  box-shadow: var(--shadow);
  display: none;
}
.has-dropdown.is-open .dropdown{ display: block; }

.dropdown-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.dropdown-card{
  display: block;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.dropdown-card h3{
  margin: 0 0 .25rem 0;
  font-size: 1rem;
}
.dropdown-card p{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.nav-toggle{
  display: none;
  border: 1px solid rgba(238,242,255,.16);
  background: rgba(238,242,255,.06);
  border-radius: 12px;
  padding: .55rem .6rem;
  cursor: pointer;
}
.nav-toggle__lines{
  display: block;
  width: 22px; height: 14px;
  background:
    linear-gradient(var(--text), var(--text)) 0 0 / 100% 2px,
    linear-gradient(var(--text), var(--text)) 0 6px / 100% 2px,
    linear-gradient(var(--text), var(--text)) 0 12px / 100% 2px;
  background-repeat: no-repeat;
  opacity: .9;
}

.hero{
  padding: 4.25rem 0 3rem 0;
  position:relative;
  overflow: hidden;
}

.bg-video{
  position: absolute;
  inset: 0; 
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  opacity: 0.95;
  transition: opacity .35s ease;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.kicker{
   
  font-weight: 700;
  letter-spacing: .02em;
}
.hero h1{
  margin: .6rem 0 .8rem 0;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.subhead{
  margin: 0 0 1.25rem 0;
  color: var(--text);
  font-size: 1.1rem;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.trustbar{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.trust-pill{
  font-weight: 700;
  font-size: 1.5rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(238,242,255,.14);
  background: rgba(238,242,255,.06);
}

.hero-panel{
  position: relative ;
  min-height: 450px;
 overflow: hidden; /* ensure video is clipped to panel */
}

.hero .hero-copy{
  position: relative;
  z-index: 1; /* place text above video */
}

.mock-card{
  border-radius: var(--radius);
  background: var(--brand-1);
  border: 1px solid rgba(238,242,255,.12);
  box-shadow: var(--brand-2);
  padding: 1rem;
}
.mock-card.small{
  position: relative;
  z-index: 1;
}
.mock-title{
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.mock-chart{
  height: 140px;
  border-radius: 14px;
  background:
    radial-gradient(220px 120px at 20% 30%, rgba(43,116,255,.35), transparent 60%),
    radial-gradient(220px 140px at 70% 40%, rgba(0,179,255,.25), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}
.mock-meta{
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 700;
  margin-top: .55rem;
  font-size: .92rem;
}

.strip{
  border-top: 1px solid rgba(238,242,255,.10);
  border-bottom: 1px solid rgba(238,242,255,.10);
  background: rgba(255,255,255,.03);
}
.strip-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  gap: 1rem;
}
.strip-text{ margin: 0; font-weight: 800; letter-spacing: -.01em; }
.strip-link{ var(--brand-2); font-weight: 800; text-decoration: underline; }

.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(238,242,255,.10);
  padding: 1.05rem;
  outline: 2px solid #000;
  outline-offset: 2px;

  /* added for smooth hover and proper pseudo-element stacking */
  position: relative;
  z-index: 0;
  transition: transform .18s cubic-bezier(.2,.9,.2,1), box-shadow .18s cubic-bezier(.2,.9,.2,1);
  box-shadow: none; /* ensure no inner shadow */
}

/* bottom border shadow */
.card::after{
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -10px;
  height: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.22);
  filter: blur(10px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s cubic-bezier(.2,.9,.2,1), filter .18s ease;
  pointer-events: none;
  z-index: -1; /* place shadow behind the card */
}

/* hover: slight lift + visible bottom border shadow */
.card:hover{
  transform: translateY(-4px);
  box-shadow: none; /* keep inner area clean */
}
.card:hover::after{
  opacity: 1;
  transform: translateY(0);
  filter: blur(14px);
}

.card h3{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(238,242,255,.10);
  margin: 0 0 .35rem 0;
  font-size: 1.15rem;
}
.card p{
  margin: 0 0 .65rem 0;
  color: var(--text);
}
.mini{
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.industry-tools{
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field{
  display: grid;
  gap: .35rem;
  width: 100%;
  max-width: 520px;
}
.field-label{ font-weight: 800; color: var(--text); }
input, textarea{
  border-radius: 14px;
  border: 1px solid rgba(238,242,255,.14);
  background: rgba(0, 0, 0, 0.65);
  color: var(--muted);
  padding: .8rem .85rem;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(0,179,255,.65);
  box-shadow: 0 0 0 4px rgba(0,179,255,.12);
}

.industry-grid{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.chip{
  border: 1px solid rgba(238,242,255,.14);
  background: rgba(238,242,255,.06);
  color: var(--text);
  padding: .55rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.chip[hidden]{ display: none !important; }

.callout{
  margin-top: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(238,242,255,.12);
  background: linear-gradient(90deg, rgba(43,116,255,.18), rgba(0,179,255,.10));
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.callout h3{ margin: 0 0 .25rem 0; }
.callout p{ margin: 0; color: var(--text); max-width: 52ch; }

.billing-toggle{
  display: inline-flex;
  color: var(--text);
  gap: .35rem;
  padding: .35rem;
  border-radius: 999px;
  border: 1px solid rgba(238,242,255,.12);
  background: rgba(255,255,255,.03);
  margin: .25rem 0 1.1rem 0;
}
.toggle-btn{
  border: 0;
  background: transparent;
  color: var(--brand-2);
  font-weight: 900;
  padding: .65rem .9rem;
  border-radius: 999px;
  cursor: pointer;
}
.toggle-btn.is-active{
  background: rgba(238,242,255,.10);
  color: var(--brand-1);
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.price-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(238,242,255,.10);
  padding: 1.1rem;
  position: relative;
}
.price-card.featured{
  border-color: rgba(0,179,255,.45);
  box-shadow: 0 18px 60px rgba(0,179,255,.10);
}
.badge{
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(0,179,255,.18);
  border: 1px solid rgba(0,179,255,.35);
}
.price{
  margin: .25rem 0 .25rem 0;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -.03em;
}
.muted{ 
  color: var(--muted); 
text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}
.fineprint{
  margin-top: 1rem;
  color: var(--text);
  font-weight: 650;
}

.review-carousel{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
}
.carousel-btn{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(238,242,255,.14);
  background: rgba(238,242,255,.06);
  color: rgba(238,242,255,.95);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
}
.review{
  border-radius: var(--radius);
  border: 1px solid rgba(238,242,255,.10);
  background: rgba(255,255,255,.03);
  padding: 1.15rem;
}
.stars{ letter-spacing: .12em; }
.review-text{
    color:var(--text);
  margin: .6rem 0;
  font-size: 1.08rem;
  font-weight: 650;
}
.review-meta{ margin: 0; color: var(--text); font-weight: 800; }

.about-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-bottom: 1rem;
}
.about-card{
  border-radius: var(--radius);
  border: 1px solid rgba(238,242,255,.10);
  background: rgba(255,255,255,.03);
  padding: 1.05rem;
}

.faq{
  border-radius: var(--radius);
  border: 2px solid rgba(238,242,255,.10);
  background: rgba(255,255,255,.03);
  padding: .9rem 1rem;
  margin: .65rem 0;
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
}
.faq p{ margin: .55rem 0 0 0; color: var(--text); }

.form{
  border-radius: var(--radius);
  border: 1px solid rgba(238,242,255,.10);
  background: rgba(255,255,255,.03);
  padding: 1.15rem;
}
.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: .85rem;
}
.field.full{ grid-column: 1 / -1; }

.site-footer{
  border-top: 1px solid rgba(238,242,255,.10);
  padding: 2.4rem 0 1.5rem 0;
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1.2rem;
  align-items: start;
}
.footer-brand{
  font-weight: 950;
  font-size: 1.2rem;
}
.footer-head{
  margin: 0 0 .5rem 0;
  font-size: 1.05rem;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .35rem;
}
.footer-links a{
   color: rgba(238,242,255,.85); font-weight: 800;
   text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}
.footer-bottom{
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(238,242,255,.10);
  color: rgba(238,242,255,.65);
}

/* Modal */
.modal[hidden]{ display: none; }
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
}
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}
.modal-panel{
  position: relative;
  width: min(860px, calc(100% - 2rem));
  margin: 8vh auto;
  border-radius: var(--radius);
  background: rgba(15,24,51,.96);
  border: 1px solid rgba(238,242,255,.12);
  box-shadow: var(--shadow);
}
.modal-close{
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(238,242,255,.14);
  background: rgba(238,242,255,.06);
  color: rgba(238,242,255,.95);
  font-size: 1.3rem;
  cursor: pointer;
}
.modal-body{ padding: 1.1rem; }
.video-shell{
  border-radius: 16px;
  border: 1px dashed rgba(238,242,255,.20);
  background: rgba(255,255,255,.03);
  padding: 2rem;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-panel{ min-height: 260px; }
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .nav{
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: rgba(11,16,32,.96);
    border-bottom: 1px solid rgba(238,242,255,.10);
    padding: 1rem 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .nav.is-open{ display: flex; }
  .nav-list{
    flex-direction: column;
    align-items: stretch;
  }
  .nav-cta{
    padding: 0 1rem;
  }
  .nav-link{ width: calc(100% - 2rem); margin: 0 1rem; text-align: left; }
  .has-dropdown .dropdown{
    position: static;
    width: auto;
    margin: 0 1rem;
  }
  .dropdown-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .mock-card.small{ position: static; width: auto; margin-top: .85rem; }
}
