/* ========= Base ========= */
:root{
  --bg: #0b0f14;
  --panel: rgba(14, 22, 35, 0.55);
  --panel2: rgba(12, 18, 28, 0.65);
  --stroke: rgba(143, 252, 255, 0.18);
  --stroke2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);
  --accent: #8ffcff;
  --accent2: rgba(143,252,255,0.24);
  --shadow: 0 0 60px rgba(0, 255, 255, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.accent { color: var(--accent); }

/* ========= Ambient background ========= */
.bg{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg__orb{
  position: absolute;
  width: 860px;
  height: 860px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
}
.bg__orb--left{
  left: -340px;
  top: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(143,252,255,0.22), rgba(143,252,255,0.0) 60%),
              radial-gradient(circle at 55% 60%, rgba(90,210,255,0.14), rgba(90,210,255,0.0) 65%);
}
.bg__orb--right{
  right: -380px;
  top: -170px;
  background: radial-gradient(circle at 30% 30%, rgba(143,252,255,0.20), rgba(143,252,255,0.0) 60%),
              radial-gradient(circle at 65% 65%, rgba(90,210,255,0.12), rgba(90,210,255,0.0) 65%);
}

.bg__rings{
  position: absolute;
  right: -120px;
  top: 20px;
  width: min(760px, 90vw);
  opacity: 0.9;
}
.bg__rings rect{ fill: rgba(143,252,255,0.28); }
.bg__wave{
  position: absolute;
  left: -80px;
  top: 160px;
  width: min(980px, 120vw);
  opacity: 0.55;
  filter: drop-shadow(0 0 12px rgba(143,252,255,0.18));
}

.bg__grain{
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 40%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.02) 0, rgba(255,255,255,0) 45%),
    radial-gradient(circle at 30% 90%, rgba(255,255,255,0.02) 0, rgba(255,255,255,0) 45%);
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* ========= Layout ========= */
.wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.section-title{
  text-align: center;
  margin: 44px 0 22px;
}
.section-title h2{
  margin: 0;
  font-size: clamp(22px, 3.3vw, 34px);
  letter-spacing: -0.02em;
}
.section-title p{
  margin: 8px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
}

/* ========= Buttons ========= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(143,252,255,0.30);
  box-shadow: 0 0 24px rgba(143,252,255,0.08);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(143,252,255,0.75), rgba(143,252,255,0.55));
  color: #071017;
  border-color: rgba(143,252,255,0.55);
}
.btn--ghost{
  background: rgba(255,255,255,0.04);
}
.btn--big{
  padding: 14px 22px;
  border-radius: 14px;
}
.btn__icon{
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
}
.btn__icon svg{ width: 18px; height: 18px; fill: currentColor; }

/* ========= Hero ========= */
.hero{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  padding: 70px 0 18px;
  align-items: center;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.brand__logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 26px rgba(143,252,255,0.14);
}
.brand__name{
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 14px;
  opacity: 0.92;
}

.hero__h1{
  margin: 0 0 16px;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero__p{
  margin: 0 0 22px;
  max-width: 460px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.hero__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Phone mock */
.hero__art{
  position: relative;
  display: grid;
  place-items: center;
}
.phone{
  width: min(360px, 78vw);
  aspect-ratio: 9 / 18;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 50px 90px rgba(0,0,0,0.55), 0 0 50px rgba(143,252,255,0.10);
  transform: rotate(-16deg);
  position: relative;
  overflow: hidden;
}
.phone__top{
  position: absolute;
  top: 10px;
  left: 50%;
  width: 110px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
}
.phone__screen{
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 65% 25%, rgba(143,252,255,0.12), rgba(143,252,255,0) 58%),
    linear-gradient(180deg, rgba(6,12,18,0.95), rgba(10,14,20,0.88));
  border: 1px solid rgba(143,252,255,0.12);
  padding: 18px 16px;
}
.phone__shine{
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%);
  transform: rotate(20deg);
  opacity: 0.18;
}

.phone__appname{
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  opacity: 0.92;
  margin-top: 4px;
}
.phone__title{
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: 18px;
  text-align: left;
}
.phone__meta{
  margin-top: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  line-height: 1.45;
}

.steps{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.step{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(143,252,255,0.28);
  background: rgba(143,252,255,0.06);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  color: var(--accent);
}
.step--done{
  border-color: rgba(143,252,255,0.28);
  background: rgba(143,252,255,0.06);
}

.phone__cta{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  color: #071017;
  background: linear-gradient(180deg, rgba(143,252,255,0.75), rgba(143,252,255,0.52));
  border: 1px solid rgba(143,252,255,0.55);
}

/* ========= Cards ========= */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0 0;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 170px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
}
.card__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(143,252,255,0.08);
  border: 1px solid rgba(143,252,255,0.18);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 0 26px rgba(143,252,255,0.10);
}
.card__icon svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

/* ========= Timeline ========= */
.timeline{
  list-style: none;
  padding: 0;
  margin: 14px auto 0;
  max-width: 820px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.timeline__item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.timeline__item:last-child{ border-bottom: 0; }

.timeline__bullet{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(143,252,255,0.26);
  background: rgba(143,252,255,0.06);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
}
.timeline__item:not(.timeline__item--done) .timeline__bullet{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.35);
}
.timeline__title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 13px;
}
.timeline__status{
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}
.timeline__text{
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* ========= Testimonials ========= */
.tgrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.tcard{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  overflow: hidden;
  box-shadow: 0 0 44px rgba(0,0,0,0.38);
  padding-bottom: 16px;
}
.tcard__media{
  height: 148px;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(143,252,255,0.25), rgba(143,252,255,0) 55%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.10), rgba(255,255,255,0) 58%),
    linear-gradient(135deg, rgba(18,30,44,0.95), rgba(7,10,14,0.95));
}
.tcard__media--katie{
  background:
    radial-gradient(circle at 28% 40%, rgba(255,170,210,0.18), rgba(255,170,210,0) 55%),
    radial-gradient(circle at 70% 40%, rgba(143,252,255,0.20), rgba(143,252,255,0) 55%),
    linear-gradient(135deg, rgba(22,26,40,0.95), rgba(7,10,14,0.95));
}
.tcard__media--james{
  background:
    radial-gradient(circle at 35% 35%, rgba(143,252,255,0.22), rgba(143,252,255,0) 55%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,0.10), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, rgba(16,20,32,0.95), rgba(7,10,14,0.95));
}
.tcard__media--lisa{
  background:
    radial-gradient(circle at 30% 35%, rgba(143,252,255,0.18), rgba(143,252,255,0) 55%),
    radial-gradient(circle at 62% 40%, rgba(255,200,140,0.14), rgba(255,200,140,0) 55%),
    linear-gradient(135deg, rgba(16,20,32,0.95), rgba(7,10,14,0.95));
}
.tcard__shade{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.10), rgba(255,255,255,0) 45%),
    linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.55));
}

.stars{
  display: flex;
  gap: 3px;
  padding: 12px 16px 6px;
  color: rgba(143,252,255,0.75);
  text-shadow: 0 0 18px rgba(143,252,255,0.14);
  font-size: 12px;
}
.tcard__quote{
  margin: 6px 16px 14px;
  color: rgba(255,255,255,0.72);
  font-size: 12.5px;
  line-height: 1.65;
}
.tcard__name{
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.tcard__role{
  text-align: center;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  margin-top: 4px;
}

/* ========= FAQ ========= */
.accordion{
  max-width: 860px;
  margin: 14px auto 0;
  display: grid;
  gap: 10px;
}
.qa{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.qa summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.qa summary::-webkit-details-marker{ display: none; }
.qa__lead{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}
.qa__check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(143,252,255,0.26);
  background: rgba(143,252,255,0.06);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 12px;
}
.qa__icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.02);
  font-size: 18px;
}
.qa[open] .qa__icon{
  color: var(--accent);
  border-color: rgba(143,252,255,0.26);
  background: rgba(143,252,255,0.05);
}
.qa__body{
  padding: 0 14px 14px;
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
  line-height: 1.65;
}

/* ========= CTA strip ========= */
.cta-strip{
  margin: 28px auto 0;
  max-width: 820px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 30% 10%, rgba(143,252,255,0.14), rgba(143,252,255,0) 60%),
    radial-gradient(circle at 80% 60%, rgba(143,252,255,0.10), rgba(143,252,255,0) 58%),
    rgba(255,255,255,0.03);
  box-shadow: 0 0 60px rgba(0,0,0,0.45);
  text-align: center;
  padding: 22px 16px 20px;
}
.cta-strip__title{
  font-weight: 800;
  font-size: 18px;
}
.cta-strip__sub{
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 12.5px;
  margin-bottom: 14px;
}

/* ========= Footer ========= */
.footer{
  padding: 26px 0 46px;
  text-align: center;
}
.footer__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.92;
}
.footer__brand img{
  width: 28px;
  height: 28px;
  border-radius: 10px;
}
.footer__meta{
  margin-top: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

/* ========= Modal ========= */
.modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(6px);
}
.modal-overlay.hidden{ display: none; }

.modal{
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(143,252,255,0.16), rgba(143,252,255,0) 55%),
    linear-gradient(180deg, rgba(14, 22, 35, 0.85), rgba(9, 12, 18, 0.88));
  box-shadow: var(--shadow), 0 50px 90px rgba(0,0,0,0.65);
  overflow: hidden;
  padding: 18px 16px 16px;
  position: relative;
}

.modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(143,252,255,0.25);
  background: rgba(0,0,0,0.25);
  color: var(--accent);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.modal__close:hover{
  color: #fff;
  border-color: rgba(143,252,255,0.35);
}

.modal__header{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding-right: 44px;
}
.mark{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(143,252,255,0.20);
  background: rgba(143,252,255,0.05);
  display: grid;
  place-items: center;
  box-shadow: 0 0 26px rgba(143,252,255,0.12);
}
.mark__img{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(1.15) contrast(1.05);
}
.modal__kicker{
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.modal__title{
  margin: 2px 0 0;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 28px;
}
.modal__desc{
  margin: 12px 0 14px;
  color: rgba(255,255,255,0.70);
  text-align: center;
  line-height: 1.55;
  font-size: 13px;
}

.modal__actions{
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.pill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
}
.pill:hover{
  border-color: rgba(143,252,255,0.28);
  box-shadow: 0 0 24px rgba(143,252,255,0.08);
}
.pill__icon{
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.pill__icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.pill__chev{
  font-size: 24px;
  opacity: 0.65;
}
.pill--primary{
  background: rgba(143,252,255,0.10);
  border-color: rgba(143,252,255,0.24);
}
.pill--primary .pill__icon{
  border-color: rgba(143,252,255,0.24);
  background: rgba(143,252,255,0.08);
  color: var(--accent);
}

.promo{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.promo__icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  display: grid;
  place-items: center;
  color: rgba(143,252,255,0.80);
}
.promo__icon svg{ width: 20px; height: 20px; fill: currentColor; }
.promo__headline{
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.promo__sub{
  margin-top: 2px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
}

.cta{
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(143,252,255,0.70), rgba(143,252,255,0.52));
  border: 1px solid rgba(143,252,255,0.55);
  color: #071017;
  font-weight: 800;
  text-align: center;
}

/* ========= Responsive ========= */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; padding-top: 52px; }
  .hero__p{ max-width: 560px; }
  .hero__art{ margin-top: 4px; }
  .phone{ transform: rotate(-10deg); }
  .cards, .tgrid{ grid-template-columns: 1fr; }
  .tcard__media{ height: 160px; }
}

@media (max-width: 420px){
  .wrap{ width: calc(100% - 28px); }
  .brand__logo{ width: 40px; height: 40px; }
  .modal__title{ font-size: 24px; }
}


/* ===== Modal logo layout overrides (logo top-center, full width) ===== */
.modal{
  text-align: center;
}
.modal__logo-wide{
  width: 100%;
  height: auto;
  display: block;
  margin: 4px auto 10px;
  border-radius: 14px;
  border: 1px solid rgba(143,252,255,0.18);
  background: rgba(143,252,255,0.04);
  box-shadow: 0 0 26px rgba(143,252,255,0.10);
}
.modal__kicker{
  text-align: center;
}
.modal__title{
  text-align: center;
  margin-top: 2px;
}



/* ===== Hero brand logo sizing (large wordmark) ===== */
.brand{
  display: block;
  margin-bottom: 22px;
}
.brand__logo{
  width: clamp(280px, 38vw, 520px);
  height: auto;
  border-radius: 16px;
}
.brand__name{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 420px){
  .brand__logo{ width: min(100%, 420px); }
}

