:root{
  --bg0:#070a16;
  --bg1:#0b1022;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --blue:#5b7cfa;
  --blue2:#3b82f6;
  --green:#50d87f;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(91,124,250,.18), transparent 60%),
    radial-gradient(1100px 700px at 50% 85%, rgba(80,216,127,.10), transparent 65%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
}

.site-top{ user-select:none; }
.brand-logo{ height:44px; opacity:.95; }
.brand-text{ font-weight:700; letter-spacing:.12em; }

.hero{
  padding:38px 0 60px;
}
.hero-inner{ max-width: 980px; }
.hero-pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.82);
  font-size:12px;
  margin-top:10px;
}
.hero-pill i{ color:var(--blue2); }

.hero-title{
  margin:18px 0 10px;
  font-weight:800;
  letter-spacing:-.02em;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height:1.05;
}
.t-blue{ color:var(--blue); }
.t-green{ color:var(--green); }

.hero-lead{
  color:var(--muted);
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 14.5px;
}

.video-card{
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding:14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.video-step{
  text-align:center;
  font-weight:600;
  letter-spacing:.02em;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  margin-bottom: 12px;
}
.video-frame{
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow:hidden;
  aspect-ratio: 16/9;
}
.video-frame iframe{
  width:100%;
  height:100%;
  display:block;
}
.video-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  color: rgba(255,255,255,.75);
}
.play-circle{
  width:64px;
  height:64px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(91,124,250,.22);
  border:1px solid rgba(91,124,250,.35);
}
.play-circle i{
  font-size: 34px;
  color: rgba(255,255,255,.92);
  margin-left: 4px;
}
.play-text{ font-size: 12px; opacity:.9; }
.play-text code{ color: rgba(255,255,255,.85); }

.hero-cta{ margin-top: 18px; }
.btn-cta{
  background: linear-gradient(90deg, var(--blue2), #6b78ff);
  border:none;
  color:white;
  font-weight:700;
  padding:10px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(59,130,246,.18);
}
.btn-cta:hover{ opacity:.95; color:white; }
.small-link{ margin-top:8px; font-size: 12px; }
.small-link a{ color: rgba(255,255,255,.70); text-decoration: underline; }

.section-mid{ padding: 58px 0; }
.section-dark{ padding: 64px 0; background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.04); }

.panel-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px;
}
.panel-title{ font-weight:800; font-size: 14px; letter-spacing:.02em; }
.panel-sub{ color: rgba(255,255,255,.60); font-size: 12px; margin-top: 3px; }

.check-list{
  margin: 12px 0 0;
  padding: 0;
  list-style:none;
}
.check-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 7px 0;
  color: rgba(255,255,255,.84);
  font-size: 12.8px;
}
.check-list i{ color: var(--blue); margin-top: 2px; }
.check-list.green i{ color: var(--green); }

.trio-card{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 22px;
}
.trio-item{ padding: 8px 10px; }
.trio-img{
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  margin-bottom: 10px;
}
.trio-img.placeholder{
  background: rgba(255,255,255,.06);
}
.trio-title{ font-weight:800; font-size: 13px; }
.trio-text{ color: rgba(255,255,255,.66); font-size: 12px; }
.trio-paragraph{
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 12.5px;
  text-align:center;
}

.cta-strip{
  padding: 54px 0;
  background: rgba(255,255,255,.02);
}
.cta-title{ font-weight:800; margin-bottom: 8px; }
.cta-sub{ color: rgba(255,255,255,.70); font-size: 13px; max-width: 820px; margin: 0 auto; }

.section-title{
  font-weight:900;
  letter-spacing:-.02em;
  font-size: clamp(26px, 3.2vw, 38px);
}
.section-sub{
  color: rgba(255,255,255,.70);
  font-size: 13px;
  max-width: 820px;
  margin: 10px auto 0;
}

.benefit-tile{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px 14px;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
}
.benefit-icon{
  width:42px; height:42px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(91,124,250,.18);
  border:1px solid rgba(91,124,250,.25);
}
.benefit-icon i{ font-size: 20px; color: rgba(255,255,255,.92); }
.benefit-text{ font-weight:700; font-size: 12.5px; }

.why-img{
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.why-img.placeholder{ height: 320px; background: rgba(255,255,255,.06); }

.why-list{ display:flex; flex-direction:column; gap:14px; }
.why-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 10px 0;
}
.why-ico{
  width:32px; height:32px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
}
.why-ico i{ color: rgba(255,255,255,.92); }
.why-title{ font-weight:900; font-size: 13px; }
.why-text{ color: rgba(255,255,255,.66); font-size: 12.5px; margin-top: 2px; }

.apply-card{
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 22px;
}
.apply-title{ font-weight:900; font-size: 22px; }
.apply-sub{ color: rgba(255,255,255,.70); font-size: 13px; margin-top: 4px; }

.tf-overlay{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(34,197,94,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(16,185,129,.15), transparent 60%),
    rgba(6,10,12,.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
  backdrop-filter: blur(8px);
  animation: tfOverlayGlow 12s ease-in-out infinite;
}
.tf-overlay.is-open{
  display: flex;
}
.tf-overlay.is-submitting .tf-close{
  opacity: .4;
  pointer-events: none;
}
.tf-overlay.is-submitting{
  cursor: progress;
}
.tf-overlay-inner{
  width: 100%;
  max-width: 980px;
  position: relative;
}
.tf-close{
  position: absolute;
  top: -12px;
  right: -12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(16,21,20,.9);
  color: rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.tf-close:hover{ background: rgba(16,21,20,1); }
.tf-card{
  background: rgba(20,26,24,.88);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.tf-form{
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.tf-progress{
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.tf-progress-track{
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.tf-progress-bar{
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
  transition: width .35s ease;
}
.tf-steps{
  min-height: 200px;
  position: relative;
}
.tf-step{
  display:none;
  animation: tfFade .25s ease;
}
.tf-step.is-active{
  display:block;
}
.tf-question{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}
.tf-thankyou .tf-question{
  font-size: 24px;
}
.tf-thankyou .tf-hint{
  font-size: 13px;
}
.tf-continue{
  margin-top: 16px;
  padding: 10px 20px;
}
.tf-fab{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  background: #22c55e;
  color: #0b1b12;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.tf-fab.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tf-input{
  font-size: 18px;
  padding: 14px 16px;
  border-radius: 10px;
}
.tf-textarea{
  min-height: 120px;
  resize: vertical;
}
.tf-choice-group{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}
.tf-choice{
  display: block;
  cursor: pointer;
  position: relative;
}
.tf-choice input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tf-choice span{
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.tf-choice input:checked + span{
  border-color: rgba(34,197,94,.9);
  background: rgba(34,197,94,.18);
}
.tf-choice input:focus-visible + span{
  outline: 2px solid rgba(34,197,94,.6);
  outline-offset: 2px;
}
.tf-choice:hover span{
  transform: translateY(-1px);
}
.tf-hint{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.tf-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content: space-between;
}
.tf-btn{
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}
.tf-back{
  padding: 10px 16px;
}
.tf-next,
.tf-submit{
  padding: 10px 20px;
  margin-left: auto;
}
.tf-submit{
  display:none;
}

.form-control{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
}
.form-control::placeholder{ color: rgba(255,255,255,.55) !important; }

.form-msg{ font-size: 13px; color: rgba(255,255,255,.80); }
.form-msg.ok,
.form-msg.success{ color: rgba(80,216,127,.95); }
.form-msg.err,
.form-msg.error{ color: rgba(248,113,113,.95); }
.small-note{ font-size: 12px; color: rgba(255,255,255,.55); }

/* HERO LOGO (large, centered) */
.hero-logo {
  width: 120px;
  height: auto;
  max-width: 40vw;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-logo {
    width: 100px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-logo {
    width: 82px;
  }
}
/* --- FIX: top logo sizing + spacing --- */
.top-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding:26px 0 6px;
}
.logo-top{
  width:110px;      /* increase logo visual size */
  height:auto;
  max-width:160px;  /* prevents it from exploding */
}

/* --- FIX: trio alignment --- */
.trio-card{ 
  max-width: 980px;
  margin: 0 auto;
}
.trio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items:start;
  justify-items:center;     /* centers each grid item */
  text-align:center;        /* centers text */
}
.trio-item{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;       /* centers image + text */
}
.trio-img{
  width:78px;
  height:78px;
  border-radius:999px;
  object-fit:cover;
  display:block;
  margin:0 auto 10px;
}

/* Mobile */
@media (max-width: 820px){
  .trio-grid{ grid-template-columns:1fr; }
  .logo-top{ width:96px; }
}

@media (max-width: 640px){
  .tf-overlay{
    padding: 16px;
    align-items: stretch;
  }
  .tf-overlay-inner{
    height: 100%;
    max-width: 100%;
  }
  .tf-card{
    height: 100%;
    overflow: auto;
  }
  .tf-close{
    top: 6px;
    right: 6px;
  }
  .tf-question{ font-size: 18px; }
  .tf-input{ font-size: 16px; }
  .tf-actions{
    flex-direction: row;
    align-items: center;
  }
}

@keyframes tfFade{
  from{ opacity: 0; transform: translateY(6px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes tfOverlayGlow{
  0%, 100%{
    background-position: 0% 0%, 100% 0%, 0 0;
  }
  50%{
    background-position: 10% 20%, 90% 30%, 0 0;
  }
}
