/* Base */
.bg-app{ background: var(--c-bg); }
.text-app{ color: var(--c-text); }
body{
  background: var(--c-bg);
  background-image: var(--grad-hero);
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
a{ color: inherit; }
.link-soft{
  color: rgba(124,255,107,.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(124,255,107,.35);
}
.link-soft:hover{ border-bottom-color: rgba(124,255,107,.65); }

.skip-link{
  position: absolute; left: -999px; top: 10px;
  background: rgba(255,255,255,.10);
  color: var(--c-text);
  padding: 10px 14px; border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; outline: none; box-shadow: var(--focus); }

.section-pad{ padding: 84px 0; }
@media (max-width: 991px){ .section-pad{ padding: 64px 0; } }

.h1-ish{ font-size: clamp(1.6rem, 2.2vw, 2.15rem); }
.eyebrow{
  display: inline-flex; align-items: center;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(185,195,218,.85);
}
.eyebrow::before{
  content:""; width: 18px; height: 1px; margin-right: 10px;
  background: rgba(124,255,107,.55);
}

/* Decorative layers */
.grain{
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .08;
  mix-blend-mode: overlay;
}
.glow{
  position: fixed; width: 520px; height: 520px; border-radius: 999px;
  filter: blur(40px); opacity: .55; pointer-events: none; z-index: 0;
}
.glow--a{ left: -140px; top: -160px; background: rgba(124,255,107,.20); }
.glow--b{ right: -160px; bottom: -180px; background: rgba(255,95,156,.16); }
.circuit{
  position: fixed; inset: auto; width: 820px; height: 320px; pointer-events: none; z-index: 0;
  background:
    linear-gradient(transparent 0 0),
    repeating-linear-gradient(90deg, rgba(40,230,216,.14) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(124,255,107,.10) 0 1px, transparent 1px 44px);
  mask-image: radial-gradient(closest-side, rgba(0,0,0,1), transparent 75%);
  opacity: .20;
}
.circuit--top{ top: 70px; right: -220px; transform: rotate(8deg); }
.circuit--bottom{ bottom: 40px; left: -260px; transform: rotate(-10deg); }

/* NAV */
.nav-glass{
  position: sticky;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 50;
}
.navbar .nav-link{ color: rgba(238,242,255,.84); }
.navbar .nav-link:hover{ color: rgba(238,242,255,.98); }
.badge-soft{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(238,242,255,.92);
}
.brand-sigil{
  width: 22px; height: 22px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(124,255,107,.95), rgba(40,230,216,.85));
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 12px 26px rgba(0,0,0,.35);
}

/* Buttons */
.btn-primary{
  background: linear-gradient(135deg, rgba(124,255,107,.95), rgba(40,230,216,.80));
  border: none;
  color: #07101b;
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
}
.btn-primary:hover{ filter: brightness(1.03); }
.btn-outline-light{
  border-color: rgba(255,255,255,.22);
  color: rgba(238,242,255,.92);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
}

/* HERO */
.hero{
  position: relative;
  z-index: 1;
  padding-top: 92px;
}
.hero-cut{
  background:
    radial-gradient(1200px 520px at 20% 0%, rgba(124,255,107,.13), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(40,230,216,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}
.hero-divider{
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 120px;
}
.hero-notes{ display: flex; flex-wrap: wrap; gap: 10px; }
.note-chip{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.dot{ width: 10px; height: 10px; border-radius: 999px; }
.dot--lime{ background: rgba(124,255,107,.95); }
.dot--coral{ background: rgba(255,95,156,.92); }
.dot--cyan{ background: rgba(40,230,216,.90); }

.hero-panel{
  position: relative;
  border-radius: var(--r-xl);
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.hero-panel__edge{
  position: absolute; inset: -2px;
  background: var(--grad-edge);
  opacity: .20;
  filter: blur(14px);
  pointer-events: none;
}
.hero-panel__top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
}
.mini-kpi{
  display: flex; gap: 12px; align-items: center;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(11,16,32,.42);
  border: 1px solid rgba(255,255,255,.10);
}
.mini-kpi__icon{
  width: 38px; height: 38px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(238,242,255,.95);
}
.mini-kpi__label{ font-size: .78rem; color: rgba(185,195,218,.85); }
.mini-kpi__value{ font-weight: 600; }
.hero-panel__body{ padding: 10px 16px 18px; position: relative; z-index: 1; }
.panel-title{ font-weight: 700; margin: 8px 0 10px; }
.panel-list{ margin: 0; padding-left: 18px; color: rgba(185,195,218,.92); }
.panel-list li{ margin-bottom: 8px; }
.panel-cta{ margin-top: 14px; }

/* Sections */
.section-veil{
  position: relative;
  background:
    radial-gradient(900px 420px at 10% 40%, rgba(255,95,156,.08), transparent 62%),
    radial-gradient(900px 520px at 95% 35%, rgba(40,230,216,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Callouts / cards */
.callout{
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
}
.callout__title{ font-weight: 700; margin-bottom: 6px; }

.shape-card{
  border-radius: 22px;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-2);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.shape-card::after{
  content:"";
  position: absolute; inset: auto -40px -50px auto;
  width: 160px; height: 160px; border-radius: 40px;
  background: rgba(124,255,107,.10);
  filter: blur(12px);
}
.shape-card__icon{
  width: 44px; height: 44px; border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(238,242,255,.95);
  margin-bottom: 10px;
}
.shape-card__title{ font-weight: 700; margin-bottom: 6px; }
.shape-card__text{ margin: 0; }

.pill-row{ display:flex; flex-wrap:wrap; gap: 10px; }
.pill{
  padding: 10px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(238,242,255,.90);
  font-size: .9rem;
}

.module-card{
  border-radius: 26px;
  background: rgba(11,16,32,.35);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
  box-shadow: var(--shadow-2);
}
.module-card__top{ display:flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.module-badge{
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: rgba(40,230,216,.10);
  border: 1px solid rgba(40,230,216,.18);
  color: rgba(238,242,255,.92);
}
.module-title{ font-weight: 800; }
.module-list{ margin: 0; padding-left: 18px; }
.module-list li{ margin-bottom: 8px; }

.soft-banner{
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
  display:flex;
  gap: 14px;
  align-items: center;
}
.soft-banner__icon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

/* Timeline */
.timeline{ position: relative; margin-top: 10px; }
.timeline::before{
  content:"";
  position:absolute; left: 14px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(124,255,107,.45), rgba(40,230,216,.35), rgba(255,95,156,.25));
  opacity: .8;
}
.timeline-item{
  position: relative;
  padding-left: 46px;
  margin: 16px 0;
}
.timeline-dot{
  position: absolute; left: 6px; top: 18px;
  width: 18px; height: 18px; border-radius: 999px;
  background: rgba(124,255,107,.85);
  box-shadow: 0 0 0 4px rgba(124,255,107,.12);
}
.timeline-card{
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
}
.timeline-title{ font-weight: 800; margin-bottom: 6px; }

.mini-card{
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
}
.mini-card__h{ font-weight: 800; margin-bottom: 6px; }

.side-slab{
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  box-shadow: var(--shadow-2);
  position: sticky;
  top: 90px;
}
@media (max-width: 991px){ .side-slab{ position: static; } }
.side-slab__title{ font-weight: 900; margin-bottom: 8px; }
.side-slab__list{ display: grid; gap: 10px; }
.slab-row{
  display:flex; justify-content: space-between; gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(11,16,32,.35);
  border: 1px solid rgba(255,255,255,.08);
}
.slab-key{ color: rgba(185,195,218,.85); }
.slab-val{ font-weight: 700; }

/* Pricing */
.price-card{
  border-radius: 28px;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-2);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.price-card::after{
  content:"";
  position:absolute; inset: -40px auto auto -60px;
  width: 200px; height: 200px; border-radius: 56px;
  background: rgba(40,230,216,.10);
  filter: blur(12px);
}
.price-card__top{ position: relative; z-index: 1; }
.price-name{ font-weight: 900; font-size: 1.15rem; }
.price-tag{
  font-weight: 900;
  font-size: 1.85rem;
  margin: 8px 0 2px;
}
.price-sub{ font-size: .95rem; font-weight: 700; color: rgba(185,195,218,.85); }
.price-list{ margin: 10px 0 10px; padding-left: 18px; position: relative; z-index: 1; }
.price-list li{ margin-bottom: 8px; }
.price-card--featured{
  border-color: rgba(124,255,107,.22);
}
.featured-ribbon{
  position:absolute; top: 14px; right: -44px;
  transform: rotate(14deg);
  padding: 8px 56px;
  background: rgba(124,255,107,.85);
  color: #07101b;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .74rem;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.notice-strip{
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
  display:flex;
  gap: 14px;
  align-items: center;
}
.notice-strip__icon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

/* Accordion */
.accordion-axen .accordion-item{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
}
.accordion-axen .accordion-button{
  background: transparent;
  color: rgba(238,242,255,.95);
  font-weight: 800;
}
.accordion-axen .accordion-button:focus{ box-shadow: var(--focus); }
.accordion-axen .accordion-button:not(.collapsed){
  background: rgba(255,255,255,.06);
}
.accordion-axen .accordion-body{ background: rgba(11,16,32,.25); }

/* Quotes */
.quote-card{
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.quote-card::after{
  content:"";
  position:absolute; inset: auto -60px -70px auto;
  width: 220px; height: 220px; border-radius: 70px;
  background: rgba(255,95,156,.10);
  filter: blur(14px);
}
.quote-mark{
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(124,255,107,.70);
  margin-bottom: 8px;
}

/* CTA slab */
.cta-slab{
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(124,255,107,.14), rgba(40,230,216,.10), rgba(255,95,156,.08)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-2);
}
@media (max-width: 991px){
  .cta-slab{ flex-direction: column; align-items: flex-start; }
}

/* Contact */
.contact-card{
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
}
.contact-row{
  display:flex; justify-content: space-between; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.contact-row:last-child{ border-bottom: none; }
.contact-k{ color: rgba(185,195,218,.85); }
.contact-v{ font-weight: 700; }

.form-shell{
  border-radius: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-2);
  padding: 16px;
}
.form-shell__title{
  font-weight: 900;
  margin-bottom: 12px;
}

.form-control, .form-select{
  background: rgba(11,16,32,.40);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(238,242,255,.95);
}
.form-control:focus{
  border-color: rgba(124,255,107,.35);
  box-shadow: var(--focus);
  background: rgba(11,16,32,.55);
}
.form-text{ color: rgba(185,195,218,.75); }
.form-check-input{
  background-color: rgba(11,16,32,.55);
  border-color: rgba(255,255,255,.20);
}
.form-check-input:focus{ box-shadow: var(--focus); }

.micro-contacts{
  display:flex; flex-wrap: wrap; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.micro-k{ color: rgba(185,195,218,.85); margin-right: 6px; }

/* Footer */
.footer-wrap{
  padding: 46px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0));
}
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 20px;
}
@media (max-width: 991px){ .footer-top{ grid-template-columns: 1fr; } }

.footer-links{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991px){ .footer-links{ grid-template-columns: 1fr; } }
.footer-h{ font-weight: 900; margin-bottom: 10px; }
.footer-col a{
  display:block;
  color: rgba(238,242,255,.84);
  text-decoration: none;
  margin: 8px 0;
}
.footer-col a:hover{ color: rgba(238,242,255,.98); }

.footer-social{ display:flex; flex-wrap: wrap; gap: 10px; }
.social-link{
  padding: 8px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: rgba(238,242,255,.90);
}
.social-link:hover{ background: rgba(255,255,255,.08); }

.footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
