/* =========================================================
   CUSTOMIZE HERE (non-coders: start here)
   ========================================================= */
:root{
  --bg: #0b0b10;            /* page background */
  --bg-2: #10101a;          /* alternate section background */
  --card: rgba(255,255,255,.04);
  --card-2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);

  --accent: #ff2bd6;        /* neon pink */
  --accent-2: #ff67e6;      /* softer pink for glow */
  --shadow: 0 18px 55px rgba(0,0,0,.45);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --gap: 22px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================================================
   Base
   ========================================================= */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255,43,214,.12), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(255,103,230,.10), transparent 55%),
              var(--bg);
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
p{ margin: 0 0 1rem; }
strong{ color: rgba(255,255,255,.96); }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section{
  padding: 88px 0;
}
.section--alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent);
}

.section__header{
  margin-bottom: 28px;
}
.section__title{
  font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 .5rem;
}
.section__subtitle{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.small{ font-size: .92rem; }
.muted{ color: var(--muted); }

.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: 10px;
  background: #000;
  border: 1px solid var(--border);
  padding: .65rem 1rem;
  border-radius: 12px;
}
.skip-link:focus{ left: 10px; z-index: 9999; }

/* =========================================================
   Header / Nav (sticky)
   ========================================================= */
.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10,10,14,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__mark{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,43,214,.12), 0 0 22px rgba(255,43,214,.35);
}
.brand__name{ font-size: 1.02rem; }

.nav{ display: flex; align-items: center; gap: 12px; }
.nav__menu{
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link{
  color: rgba(255,255,255,.78);
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
}

.nav__toggle{
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}
.nav__toggle-lines{
  width: 18px; height: 2px; background: rgba(255,255,255,.85);
  display: block; position: relative;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: rgba(255,255,255,.85);
}
.nav__toggle-lines::before{ top: -6px; }
.nav__toggle-lines::after{ top: 6px; }

/* =========================================================
   Buttons / Links
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(180deg, rgba(255,43,214,1), rgba(255,43,214,.76));
  color: #0b0b10;
  box-shadow: 0 14px 35px rgba(255,43,214,.18);
}
.btn--primary:hover{
  box-shadow: 0 18px 50px rgba(255,43,214,.24);
}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.06);
}
.btn--small{ padding: 10px 12px; border-radius: 12px; font-size: .95rem; }
.btn--full{ width: 100%; padding: 14px 16px; }

.link{
  color: rgba(255,255,255,.82);
  text-decoration: underline;
  text-decoration-color: rgba(255,43,214,.45);
  text-underline-offset: 3px;
}
.link:hover{ color: rgba(255,255,255,.95); }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  padding: 92px 0 58px;
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
}
.hero__content{ max-width: 70ch; }

.eyebrow{
  display: inline-block;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  margin: 0 0 14px;
}
.hero__title{
  margin: 0 0 12px;
  font-size: clamp(2.05rem, 1.25rem + 2.5vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.accent{
  color: rgba(255,255,255,.98);
  text-shadow: 0 0 18px rgba(255,43,214,.28);
  position: relative;
}
.accent::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  height: .32em;
  background: rgba(255,43,214,.18);
  border-radius: 999px;
  z-index: -1;
}

.hero__sub{
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}
.hero__proof{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-pill{
  font-size: .92rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
}

.hero__bg{
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(255,43,214,.15), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

/* =========================================================
   Cards / Grids
   ========================================================= */
.grid{
  display: grid;
  gap: var(--gap);
}
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card--flat{
  box-shadow: none;
  background: rgba(255,255,255,.03);
}
.card--outline{
  background: rgba(255,255,255,.02);
  box-shadow: none;
}
.card--glow{
  border-color: rgba(255,43,214,.22);
  box-shadow: 0 0 0 1px rgba(255,43,214,.08), 0 22px 70px rgba(0,0,0,.45);
}
.card__title{
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.card__text{ color: var(--muted); }

.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
}
.bullets li{ margin: 6px 0; }

.checklist{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.checklist li{
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: rgba(255,255,255,.78);
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.hero__card .card{ position: sticky; top: 92px; } /* keeps right panel visible nicely */
.mini-stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.stat{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  padding: 14px;
}
.stat__num{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}
.stat__label{ color: var(--muted); font-size: .92rem; }

.banner{
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,43,214,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* =========================================================
   About
   ========================================================= */
.about{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
}
.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}

.details{ margin: 12px 0 0; }
.details__row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.details__row:last-child{ border-bottom: 0; }
.details dt{ color: rgba(255,255,255,.75); font-weight: 600; }
.details dd{ margin: 0; color: rgba(255,255,255,.90); }

/* =========================================================
   Quotes / Testimonials
   ========================================================= */
.quote blockquote{
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
}
.quote figcaption{ color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq{
  display: grid;
  gap: 12px;
  max-width: 860px;
}
.faq__item{
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.faq__item summary{
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 650;
  color: rgba(255,255,255,.90);
  list-style: none;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__content{
  padding: 0 16px 16px;
  color: var(--muted);
}

/* =========================================================
   Contact
   ========================================================= */
.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
}
.contact__rows{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.contact-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}
a.contact-row:hover{
  border-color: rgba(255,43,214,.22);
  background: rgba(255,255,255,.03);
}
.contact-row__label{ color: rgba(255,255,255,.72); font-weight: 600; }
.contact-row__value{ color: rgba(255,255,255,.92); }

.form{
  border-radius: var(--radius);
  border: 1px solid rgba(255,43,214,.18);
  background: rgba(255,255,255,.03);
  padding: 22px;
}
.form__title{ margin: 0 0 14px; }
.field{ display: grid; gap: 8px; margin-bottom: 12px; }
.field__label{ color: rgba(255,255,255,.74); font-weight: 600; font-size: .95rem; }
.field__input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,14,.65);
  padding: 12px 12px;
  color: rgba(255,255,255,.92);
  outline: none;
}
.field__input:focus{
  border-color: rgba(255,43,214,.40);
  box-shadow: 0 0 0 4px rgba(255,43,214,.12);
}
.field__textarea{
  min-height: 120px;
  resize: vertical;
}

/* =========================================================
   Footer
   ========================================================= */
.footer{
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
}
.footer__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.footer__brand{
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.footer__links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

/* =========================================================
   Back to top
   ========================================================= */
.to-top{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.to-top:hover{
  border-color: rgba(255,43,214,.25);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .grid--3{ grid-template-columns: 1fr; }
  .hero__grid{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .hero__card .card{ position: relative; top: 0; }

  .nav__toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .nav__menu{
    position: absolute;
    right: 1rem;
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100% - 2rem));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(10,10,14,.92);
    box-shadow: 0 22px 70px rgba(0,0,0,.55);
  }
  .nav__menu--open{ display: flex; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__links{ justify-content: flex-start; }
}
