:root {
  --bg: #f7f9ff;
  --card: #ffffff;
  --text: #0b1220;
  --muted: #5b6b84;
  --line: rgba(11, 18, 32, .10);
  --shadow: 0 16px 50px rgba(11, 18, 32, .10);

  --neo1: #2b6cff;
  --neo2: #7c3aed;
  --soft: #eef2ff;
  --pill: #f1f5ff;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial
}

body {
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(43, 108, 255, .16), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(124, 58, 237, .14), transparent 55%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto
}

.muted {
  color: var(--muted)
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 255, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px
}

/* BRAND / LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  height: 54px;
  /* ideal for header */
  width: auto;
  display: block;
}

@media (max-width: 520px) {
  .brand__logo {
    height: 38px;
    /* smaller on mobile */
  }
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 950;
  letter-spacing: .2px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}


.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap
}

.nav a {
  font-size: 14px;
  color: var(--muted)
}

.nav a:hover {
  color: var(--text)
}

@media (max-width: 920px) {
  .nav {
    display: none
  }
}

.hero {
  padding: 34px 0 24px
}

.hero__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.05fr .95fr;
  align-items: start
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neo1), var(--neo2));
  box-shadow: 0 0 0 4px rgba(43, 108, 255, .10);
}

.hero__copy h1 {
  margin: 12px 0 10px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -.5px;
}

@media (max-width: 520px) {
  .hero__copy h1 {
    font-size: 34px
  }
}

.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch
}

.points {
  display: grid;
  gap: 8px;
  margin-top: 14px
}

.point {
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--muted);
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 10px
}

.micro {
  font-size: 12px;
  color: var(--muted)
}

.micro--in {
  margin-top: 10px
}

.card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.formcard {
  padding: 18px;
  position: relative;
  overflow: hidden
}

.formcard__head h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 950
}

.formcard__head p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px
}

label {
  display: block;
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 700
}

input,
select,
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(43, 108, 255, .55);
  box-shadow: 0 0 0 4px rgba(43, 108, 255, .10);
}

textarea {
  resize: vertical
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
  background: #fff;
}

.btn--primary {
  color: #fff;
  border-color: rgba(43, 108, 255, .25);
  background: linear-gradient(135deg, var(--neo1), var(--neo2));
  box-shadow: 0 14px 34px rgba(43, 108, 255, .16);
}

.btn--ghost {
  background: #fff
}

.btn--sm {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px
}

.w100 {
  width: 100%
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px
}

.steps {
  margin: 10px 0 0
}

.steps__bar {
  height: 10px;
  background: rgba(11, 18, 32, .06);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.steps__bar span {
  display: block;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--neo1), #60a5fa, var(--neo2))
}

.steps__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted)
}

.steps__label.is-active {
  color: var(--text);
  font-weight: 950
}

.step {
  display: none
}

.step.is-active {
  display: block
}

.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden
}

.fineprint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px
}

.alert {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px
}

.section {
  padding: 34px 0
}

.section--soft {
  background: rgba(238, 242, 255, .80);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section__head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.3px
}

.section__head p {
  margin: 0;
  line-height: 1.65;
  max-width: 85ch
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px
}

@media (max-width: 900px) {

  .grid2,
  .grid3 {
    grid-template-columns: 1fr
  }
}

.mini {
  padding: 16px
}

.mini h3 {
  margin: 0 0 8px
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7
}

.strip {
  margin-top: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid rgba(43, 108, 255, .18);
}

.strip__title {
  font-weight: 950
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px
}

@media (max-width: 900px) {
  .flow {
    grid-template-columns: 1fr
  }
}

.flow__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.flow__num {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--neo1), var(--neo2));
}

.flow__title {
  font-weight: 950;
  margin-bottom: 4px
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 950
}

.faq p {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0 0
}

.disclaimer {
  padding: 16px
}

.disclaimer__title {
  font-weight: 950;
  margin-bottom: 6px
}

.footer {
  padding: 18px 0
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.footer__links a {
  color: var(--muted);
  font-size: 14px
}

.footer__links a:hover {
  color: var(--text)
}

/* overall vertical rhythm */
.hero {
  padding: 54px 0 44px;
}

/* was tighter */
.section {
  padding: 54px 0;
}

/* more breathing room */
.section--soft {
  padding: 54px 0;
}

/* keep consistent */
.footer {
  padding: 26px 0;
}

/* hero layout spacing */
.hero__grid {
  gap: 34px;
}

/* more gap between left/right */
.hero__copy h1 {
  margin: 16px 0 16px;
}

/* more separation */
.lead {
  margin: 0 0 18px;
}

/* pill, bullets, cta spacing */
.pill {
  margin-bottom: 14px;
}

.points {
  margin-top: 18px;
  gap: 12px;
}

/* more space between points */
.point {
  padding: 14px 14px;
}

/* larger touch/visual spacing */
.cta {
  margin: 22px 0 14px;
  gap: 12px;
}

/* more air around buttons */
.micro {
  margin-top: 12px;
  line-height: 1.7;
}

/* less cramped */

/* cards */
.formcard {
  padding: 24px;
}

/* more padding inside form card */
.formcard__head {
  margin-bottom: 18px;
}

.formcard__head p {
  margin-top: 6px;
}

.card.mini {
  padding: 22px;
}

/* more padding in content cards */

/* form spacing */
label {
  margin: 16px 0 8px;
}

/* more space around labels */
input,
select,
textarea {
  padding: 14px 14px;
}

/* more comfortable inputs */
.row {
  margin-top: 16px;
  gap: 12px;
}

.fineprint {
  margin-top: 14px;
  line-height: 1.7;
}

.alert {
  margin-top: 14px;
}

/* section headings */
.section__head h2 {
  margin: 0 0 12px;
}

.section__head p {
  margin: 0;
  line-height: 1.75;
}

/* grids spacing */
.grid2,
.grid3 {
  margin-top: 18px;
  gap: 18px;
}

/* more space between cards */
.flow {
  margin-top: 18px;
  gap: 18px;
}

/* more space between step items */
.flow__item {
  padding: 18px 18px;
}

/* bigger boxes */

/* lists */
.list {
  margin-top: 10px;
}

.list li {
  margin: 8px 0;
}

/* more separation */

/* FAQ */
.faq {
  margin-top: 18px;
}

.faq details {
  padding: 16px 16px;
  margin-bottom: 14px;
}

.faq p {
  line-height: 1.75;
}

/* strip/callout */
.strip {
  padding: 18px 18px;
  margin-top: 18px;
  gap: 14px;
}

/* footer links */
.footer__inner {
  padding-top: 20px;
}

.footer__links {
  gap: 16px;
}

/* FAQ (modern accordion look) */
.faqHead {
  text-align: center;
  margin-bottom: 22px;
}

.faqPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43, 108, 255, .10);
  color: var(--neo1);
  border: 1px solid rgba(43, 108, 255, .18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}

.faqIcon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--neo1), var(--neo2));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(43, 108, 255, .18);
}

.faqWrap {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faqItem {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqItem summary:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(11, 18, 32, .55);
  border-bottom: 2px solid rgba(11, 18, 32, .55);
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-left: auto;
}

.faqItem[open] {
  border-color: rgba(43, 108, 255, .22);
  box-shadow: 0 22px 70px rgba(11, 18, 32, .12);
}

.faqItem[open] summary:after {
  transform: rotate(-135deg);
}

.faqBody {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.75;
}

.faqBody p {
  margin: 0;
}

.faqFooter {
  text-align: center;
  margin-top: 18px;
}

.link {
  color: var(--neo1);
  font-weight: 900;
}

.link:hover {
  text-decoration: underline;
}

.prefTitle{
  margin:0 0 8px;
  font-size:18px;
  font-weight:950;
  line-height:1.2;
}
.prefSub{
  font-size:14px;
  font-weight:700;
  color:var(--neo1);
  line-height:1.2;
}

.prefGrid{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.prefNext{
  margin-top:16px;
  padding:14px 12px;
  font-size:16px;
  font-weight:900;
}

.prefProof{
  margin-top:12px;
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:var(--neo1);
}
.prefProof span{
  font-weight:950;
}

/* screen-reader-only labels for accessibility */
.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}