* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
html {
  background: radial-gradient(circle at top, #1a1f36, #0c0f1a);
}


body {
  background: radial-gradient(circle at top, #1a1f36, #0c0f1a);
  color: #fff;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  padding-top: calc(24px + env(safe-area-inset-top));
}

.logo {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
}

.logo span {
  background: linear-gradient(90deg, #5f7cff, #9b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta {
  background: transparent;
  border: 1px solid #5f7cff;
  color: #5f7cff;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s ease;
}
.cta:hover {
  transform: translateY(-1px);
  background: rgba(95, 124, 255, 0.08);
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 56px;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.1;
}

.hero span {
  background: linear-gradient(90deg, #5f7cff, #9b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #b8c1ec;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
}

.primary-btn {
  background: linear-gradient(90deg, #5f7cff, #9b8cff);
  border: none;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s ease;
}
.primary-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 80px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.feature-card h3 {
  margin-bottom: 10px;
}
.feature-card p {
  color: #b8c1ec;
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 80px 40px;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}

.pricing-card.featured {
  border: 1px solid rgba(95, 124, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(95, 124, 255, 0.15);
}

.price {
  font-size: 34px;
  margin: 14px 0 18px;
  color: #9b8cff;
}

.pricing-card ul {
  list-style: none;
  color: #b8c1ec;
  line-height: 1.6;
}

.pricing-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.pricing-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(155, 140, 255, 0.9);
}

.pricing-card button {
  margin-top: 22px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #5f7cff, #9b8cff);
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}
.pricing-card button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 80px 20px;
}

.stat h2 {
  font-size: 48px;
  color: #9b8cff;
}
.stat p {
  color: #b8c1ec;
  margin-top: 8px;
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #777;
  line-height: 1.6;
}
.footer-link a {
  color: rgba(119, 153, 204, 0.589);
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}

.footer-link a:hover {
  opacity: 0.8;
  text-decoration: underline;
}


/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-box {
  width: 100%;
  max-width: 440px;
  background: rgba(12, 15, 26, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(14px);
  position: relative;
}

.slide {
  display: none;
  animation: fadeUp 220ms ease;
}
.slide.active {
  display: block;
}

.slide h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.slide input,
.slide textarea {
  width: 100%;
  margin: 14px 0;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(42, 47, 85, 0.9);
  background: rgba(0,0,0,0.18);
  color: white;
  outline: none;
}

.slide textarea {
  min-height: 110px;
  resize: vertical;
}
.slide textarea {
  resize: none;        
  max-height: 140px;    
  overflow-y: auto;    
}


.slide button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #5f7cff, #9b8cff);
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}
.slide button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  user-select: none;
}
.close:hover {
  color: #fff;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Validation nudge */
.shake {
  animation: shake 320ms ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 20px 22px; }
  .features { padding: 60px 22px; }
  .pricing { padding: 60px 22px; }
  .stats { gap: 40px; }
  .hero h1 { font-size: 44px; }
}
/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 22px;
}

.faq h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  display: grid;
  gap: 24px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  color: #b8c1ec;
  line-height: 1.6;
  font-size: 15px;
}
/* INFO SPLIT SECTION */
.info-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-text h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.info-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #b8c1ec;
  max-width: 520px;
}

.info-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-image img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow:
    0 25px 60px rgba(95, 124, 255, 0.25),
    0 0 0 1px rgba(95, 124, 255, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .info-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-text p {
    margin: 0 auto;
  }
}
/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
/* WHAT WE DO SECTION */
.what-we-do {
  padding: 90px 40px;
}

.what-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.what-left h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.what-left p,
.what-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #b8c1ec;
}

/* Responsive */
@media (max-width: 900px) {
  .what-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.what-right {
  margin-top: 54px; /* aligns with left paragraph under h2 */
}
/* DISCLAIMER TEXT */
.P-Dark {
  font-size: 12px;
  line-height: 1.6;
  color: #9aa1c7ab;
  opacity: 0.85;
  max-width: 900px;
  margin: 0 auto;        /* centers the block */
  text-align: center;   /* centers the text */
}
/* CONTACT FORM */
.contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 22px;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-sub {
  color: #b8c1ec;
  margin-bottom: 40px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(42, 47, 85, 0.9);
  background: rgba(0,0,0,0.18);
  color: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #5464aa59, #707bb936);
  color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.contact-status {
  font-size: 14px;
  color: #9b8cff;
  margin-top: 10px;
}

/* Valid state (optional but looks premium) */
.contact-form input:valid,
.contact-form textarea:valid {
  border-color: rgba(95, 124, 255, 0.65);
}
/* Prevent white background on focus / autofill */
.contact-form input,
.contact-form textarea {
  background-color: rgba(0, 0, 0, 0.18) !important;
  color: #ffffff;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
  background-color: rgba(0, 0, 0, 0.18) !important;
  color: #ffffff;
  outline: none;
}

/* Chrome / Safari autofill override */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0.18) inset !important;
}
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* show */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* success */
.toast.success {
  background: linear-gradient(135deg, #1db9549a, #1ed781ad);
}

/* error */
.toast.error {
  background: linear-gradient(135deg, #991a1893, #8f1515b0);
}
.back-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  font-size: 14px;
  color: #b8c1ec;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.back-btn:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  transform: translateX(-2px);
}
.hero-tight {
  padding-bottom: 10px;
  padding-top: 80px;
}
/* LEGAL PAGE */
.legal {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 22px 100px;
}

.legal-section {
  margin-bottom: 80px;
}

.legal-section h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.legal-intro {
  color: #b8c1ec;
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Privacy grid */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.legal-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(10px);
}

.legal-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #ffffff;
}

.legal-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #b8c1ec;
}

/* Terms stack */
.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-line {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 22px;
}

.legal-line span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #9b8cff;
  margin-bottom: 4px;
}

.legal-line p {
  font-size: 14px;
  color: #b8c1ec;
  line-height: 1.6;
}
/* =========================
   MOBILE NAV FIX (FINAL)
========================= */
@media (max-width: 600px) {

  .nav {
    padding: 16px;
    gap: 12px;              /* controlled, not excessive */
  }

  .logo {
    font-size: 22px;
    flex-shrink: 0;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 14px;
    white-space: nowrap;    /* stops "Who / We Are" split */
  }

  .primary-btn {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
  }
}


