/* === Global Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px circle at 20% 16%, rgba(30, 137, 224, 0.2), transparent 42%),
    radial-gradient(900px circle at 82% 12%, rgba(246, 195, 67, 0.2), transparent 38%),
    linear-gradient(180deg, #0b1426 0%, #0d1a30 55%, #0a1223 100%);
  color: #eaf1ff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Colors */
:root {
  --bg: #0b1426;
  --bg-soft: #102039;
  --bg-card: #11243f;
  --bg-raise: #142a49;
  --blue: #208AE0;
  --blue-strong: #0f589f;
  --blue-soft: rgba(30, 137, 224, 0.16);
  --gold: #f6c343;
  --gold-soft: rgba(246, 195, 67, 0.22);
  --text-strong: #f7f9ff;
  --text-body: #c9d7f3;
  --text-muted: #9aa7c4;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --page-max: 1120px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.55);
}

#particles-js {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main,
header,
footer,
section,
.container {
  position: relative;
  z-index: 1;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0.92), rgba(4, 8, 20, 0.86));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.7rem;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar-logo img {
  height: auto;
  width: 180px;
  max-width: 100%;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav a {
  font-size: 0.92rem;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.navbar-nav a:hover {
  color: var(--gold);
  opacity: 0.95;
}

.navbar-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 195, 67, 0.65);
  background: linear-gradient(135deg, #fcecad, #f6c343);
  color: var(--blue-strong) !important;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(246, 195, 67, 0.35);
}

/* Mobile nav (simple) */
.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 0.8rem;
  padding: 0.4rem 0.7rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.navbar-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.navbar-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.2rem;
    left: 1.2rem;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(160deg, rgba(17, 31, 55, 0.97), rgba(8, 14, 27, 0.95));
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .navbar-nav.is-open {
    display: flex;
  }

  .navbar-nav a,
  .navbar-nav .navbar-cta {
    width: 100%;
    text-align: center;
  }

  .navbar-toggle {
    display: inline-flex;
  }
}

/* === Hero === */
.hero {
  padding: 4.2rem 0 3.5rem;
  /* background:
    radial-gradient(1200px circle at 18% 12%, rgba(30, 137, 224, 0.22), transparent 46%),
    radial-gradient(900px circle at 82% 8%, rgba(246, 195, 67, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(13, 23, 40, 0.95), rgba(10, 18, 33, 0.92)); */
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 137, 224, 0.5);
  background: rgba(30, 137, 224, 0.12);
  color: var(--text-strong);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.3rem, 3vw + 1rem, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-strong);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtext {
  max-width: 34rem;
  color: var(--text-body);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.hero-badge {
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-body);
  background: rgba(12, 22, 42, 0.8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #fcecad, #f6c343);
  color: #1a1200;
  box-shadow: 0 16px 35px rgba(246, 195, 67, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(246, 195, 67, 0.5);
}

.btn-secondary {
  background: rgba(30, 137, 224, 0.12);
  color: var(--text-strong);
  border: 1px solid rgba(30, 137, 224, 0.5);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(30, 137, 224, 0.18);
}

.hero-trust {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Hero visual */
.hero-visual {
  justify-self: flex-end;
}

.hero-card {
  border-radius: 1.4rem;
  padding: 1.7rem 1.6rem;
  background: linear-gradient(145deg, rgba(17, 31, 55, 0.92), rgba(11, 22, 40, 0.95));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  color: var(--text-body);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.hero-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(30, 137, 224, 0.12);
  border: 1px solid rgba(30, 137, 224, 0.3);
  font-size: 0.74rem;
  color: var(--text-strong);
}

.hero-card-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1.4rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric {
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(12, 22, 42, 0.8);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.metric-value {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.1rem;
  color: var(--text-strong);
}

/* Sections */
.section {
  padding: 3rem 0;
  /* background: linear-gradient(180deg, rgba(13, 23, 40, 0.92), rgba(10, 18, 33, 0.95)); */
}

.section-header {
  margin-bottom: 1.8rem;
  max-width: 40rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-strong);
}

.section-text {
  color: var(--text-body);
  font-size: 0.96rem;
}

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  padding: 1.4rem 1.3rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(18, 32, 56, 0.94), rgba(12, 24, 44, 0.96));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-strong);
}

.card-tag {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.card-text {
  color: var(--text-body);
  font-size: 0.92rem;
}

.card-list {
  margin-top: 0.65rem;
  list-style: none;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.35rem;
}

.card-list li::before {
  content: ">";
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 0.05rem;
}

/* Who we serve */
.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.badge {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(30, 137, 224, 0.16);
  border: 1px solid rgba(30, 137, 224, 0.32);
  color: var(--text-strong);
}

/* How we work */
.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.step {
  padding: 1.3rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(18, 32, 56, 0.94), rgba(12, 24, 44, 0.96));
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(30, 137, 224, 0.14);
  border: 1px solid rgba(30, 137, 224, 0.25);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  color: var(--text-strong);
}

.step-title {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  color: var(--text-strong);
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* Founder */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.founder-photo {
  width: 100%;
  max-width: 320px;
  height: 320px;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 10% 0, var(--gold-soft), transparent 60%),
              linear-gradient(145deg, rgba(18, 32, 56, 0.94), rgba(12, 24, 44, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(30, 137, 224, 0.25);
  justify-self: end;
  align-self: center;
  position: relative;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  filter: saturate(1.05);
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  border-radius: 1.1rem;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(145deg, rgba(18, 32, 56, 0.94), rgba(12, 24, 44, 0.96));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-strong);
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 34, 0.9);
  color: var(--text-strong);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0 2rem;
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(4, 7, 16, 0.96), rgba(3, 5, 11, 0.98));
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold);
}

/* Page header (sub pages) */
.page-hero {
  padding: 3rem 0 1.5rem;
  /* border-bottom: 1px solid var(--border-subtle); */
  /* background: 
    radial-gradient(circle at 0 0, var(--gold-soft), transparent 45%),
    radial-gradient(circle at 100% 0, rgba(30, 137, 224, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(8, 13, 26, 0.95), rgba(6, 11, 21, 0.92));
    */
}

.page-hero-title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: var(--text-strong);
}

.page-hero-text {
  max-width: 36rem;
  color: var(--text-body);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-content,
  .founder,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.25rem;
  }
  .stepper {
    grid-template-columns: minmax(0, 1fr);
  }
}
