/* GLOBAL */
:root {
  --bg: #203049;          /* Deep blue */
  --bg-soft: #00295b;     /* Slightly lighter blue */
  --accent: #0054fb;      /* Bright blue */
  --accent-hover: #001931;
  --gold: #d4af37;        /* Keep gold for founders ring */
  --text: #ffffff;        /* White */
  --muted: #d0d7e2;       /* Soft grey */
  --border: rgba(255, 255, 255, 0.12);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background-color: #0a1626;
  background-image:
    radial-gradient(ellipse 60rem 40rem at 15% -10%, rgba(0, 84, 251, 0.22), transparent 60%),
    radial-gradient(ellipse 50rem 35rem at 110% 15%, rgba(212, 175, 55, 0.10), transparent 55%),
    radial-gradient(ellipse 55rem 45rem at 50% 110%, rgba(0, 84, 251, 0.14), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  animation: dot-pulse 3.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 0.2;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
    opacity: 0.5;
  }
}


/* NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  background: rgba(7, 23, 41, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

/* BUTTONS */
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 4rem 6vw;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.7;
}

.hero-actions {
  margin: 2rem 0 1rem;
  display: flex;
  gap: 1rem;
}

.hero-features {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hf-item {
  background: var(--bg-soft);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

.hero-graphic {
  position: relative;
}

.hero-graphic::before {
  content: "";
  position: absolute;
  inset: -15%;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 84, 251, 0.35) 25deg,
    transparent 70deg,
    transparent 360deg
  );
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 78%);
  mask-image: radial-gradient(circle, black 55%, transparent 78%);
  animation: radar-sweep 6s linear infinite;
}

.hero-graphic::after {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-graphic img {
  position: relative;
  z-index: 1;
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-graphic::before {
    animation: none;
  }
}

.hero-graphic img {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: auto;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.section {
  padding: 4rem 6vw;
  background: transparent;
}


.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* FOUNDERS */
.founders-section {
  padding: 4rem 6vw;
  text-align: center;
}

.about-story {
  max-width: 42rem;
  margin: 0 auto;
}

.about-story p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.founders-card {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.founder {
  background: var(--bg-soft);
  padding: 2rem;
  border-radius: 20px;
  width: 260px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.founder:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.founder-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0 0.2rem;
}

.role {
  color: var(--muted);
  font-size: 0.95rem;
}

.bio {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.6rem;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.step-number {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* PRICING */
.pricing-section {
  padding: 4rem 6vw;
  background: #061423;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-soft);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}

.setup-fee {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.featured {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  position: relative;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #071729;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-form {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  background: #020617;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* FOOTER */
.footer {
  padding: 2rem 6vw;
  background: #020617;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  width: 50px;
  margin-bottom: 0.5rem;
}

.footer-social {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
}

.footer-legal {
  max-width: 60rem;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-legal p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
  margin-left: 0.4rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--text);
}

/* LEGAL / PRIVACY PAGE */
.legal-section {
  max-width: 50rem;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--text);
  font-size: 1.2rem;
  margin: 2rem 0 0.7rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--accent);
}

.legal-content a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 6vw;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-graphic {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 300px);
    background: #071729;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 5.5rem 1.6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 40;
  }

  .nav nav.open {
    transform: translateX(0);
  }

  .nav nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav nav a.btn {
    margin-top: 1rem;
    text-align: center;
    border: 1px solid var(--muted);
  }
}

@media (max-width: 640px) {
  .section,
  .founders-section,
  .pricing-section {
    padding: 3rem 6vw;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .founder {
    width: 100%;
    max-width: 320px;
  }

  .founders-card {
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .hf-item {
    font-size: 0.78rem;
    padding: 0.5rem 0.8rem;
  }

  .founder-photo {
    width: 100px;
    height: 100px;
  }
}
