
:root {
  --bg: #070A0F;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --muted2: rgba(255,255,255,0.55);
  --accent: #FD5C01;
  --accent2: #FF7A2A;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 20px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(253,92,1,0.10), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(253,92,1,0.07), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.95; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.30);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
}
.brand-logo-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 5px 0;
  border-radius: 2px;
}
.mobile-nav {
  padding: 10px 0 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 650;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 750;
  letter-spacing: 0.2px;
  background: linear-gradient(180deg, rgba(253,92,1,1), rgba(225,72,0,1));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(253,92,1,0.18);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.btn:active { transform: translateY(0px); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-small {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.eyebrow {
  color: rgba(253,92,1,0.95);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 14px;
}
.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  margin: 0 0 18px;
  max-width: 60ch;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  font-weight: 650;
  font-size: 0.92rem;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header {
  padding: 18px 18px 12px;
  background: linear-gradient(180deg, rgba(253,92,1,0.14), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.card-header h2 {
  margin: 0;
  font-size: 1.05rem;
}
.card-header p { margin: 6px 0 0; color: var(--muted); }

.card-body { padding: 14px 18px 6px; }
.card-footer {
  padding: 14px 18px 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: rgba(255,255,255,0.78);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(253,92,1,0.95);
  box-shadow: 0 0 0 3px rgba(253,92,1,0.15);
}
.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.38), transparent);
  pointer-events: none;
}

/* Sections */
.section {
  padding: 56px 0;
}
.section-alt {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
}
.section-head p { margin: 0; }

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

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.card h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
}
.card p { margin: 0 0 12px; color: rgba(255,255,255,0.76); }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(253,92,1,0.12);
  border: 1px solid rgba(253,92,1,0.25);
  color: rgba(253,92,1,0.95);
}
.icon svg { width: 22px; height: 22px; }

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

/* Steps */
.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.step {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.step-num {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(253,92,1,0.14);
  border: 1px solid rgba(253,92,1,0.25);
  color: rgba(253,92,1,0.95);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.step h3 { margin: 12px 0 6px; }
.step p { margin: 0; color: rgba(255,255,255,0.74); }

/* Chips */
.chips {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.74);
  text-align: center;
  font-weight: 650;
  font-size: 0.94rem;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 16px;
}
.contact-label {
  font-size: 0.78rem;
  color: var(--muted2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-link {
  font-weight: 800;
  font-size: 1.06rem;
}
.aside-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.aside-card h3 { margin: 0 0 10px; }

/* Footer */
.footer {
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}
.dot { opacity: 0.6; }

/* Responsiveness */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .nav-toggle { display: inline-block; }
  .cards-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { flex-direction: column; align-items: start; }
}

/* Make sure particles sit behind content */
#fieldCanvas { z-index: 0 !important; }
body > * { position: relative; z-index: 1; }
