﻿:root {
  --bg: #0d0f14;
  --bg-soft: #121622;
  --bg-card: #161b2a;
  --line: #23283a;
  --text: #e8edf7;
  --muted: #a7b0c3;
  --accent: #5df4c4;
  --accent-2: #4db5ff;
  --danger: #ff6f91;
  --shadow: 0 24px 60px rgba(2, 8, 24, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --max-w: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #182038 0%, #0d0f14 55%);
  line-height: 1.6;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin: 0 auto;
}

section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  border-top: none;
}

section + section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  border-top: none;
}

.section-slice {
  position: relative;
}

.section-slice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.035);
}

.section-slice::after {
  content: none;
}


.section-alt {
  background: #101626;
}

.section-band {
  background: #0e121f;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1.25rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 14, 22, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.logo-img {
  height: 100px;
  width: auto;
  display: inline-block;
  border-radius: 10px;
}

.logo-img.footer {
  height: 100px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta .btn {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero {
  padding: 6rem 0 4rem;
  border-top: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.6rem;
}

.subhead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
}

.bullets {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.bullets li::before {
  content: "•";
  color: var(--accent-2);
  margin-right: 0.6rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0f14;
  box-shadow: 0 16px 40px rgba(77, 181, 255, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: var(--accent-2);
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.orb {
  position: absolute;
  top: -40px;
  right: 30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 244, 196, 0.4), transparent 60%);
  filter: blur(2px);
}

.dashboard {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.dash-header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.dash-body {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.dash-graph {
  display: flex;
  gap: 0.6rem;
}

.dash-graph span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  opacity: 0.7;
}

.rings {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(93, 244, 196, 0.3);
  box-shadow: 0 0 0 14px rgba(93, 244, 196, 0.08);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.9rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.pain-item {
  background: linear-gradient(160deg, rgba(24, 30, 46, 0.9), rgba(14, 18, 28, 0.9));
  padding: 1.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(93, 244, 196, 0.15);
  box-shadow: 0 12px 30px rgba(4, 12, 26, 0.35);
}

.pain-item .icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(77, 181, 255, 0.12);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-line {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0 0.5rem;
  color: var(--muted);
}

.process-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.process-track .node {
  width: 16px;
  height: 16px;
  background: var(--accent-2);
  border-radius: 50%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg-card);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.uc-icon {
  font-size: 1.1rem;
}

.services {
  background: #0d111c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(77, 181, 255, 0.2);
  background: linear-gradient(160deg, rgba(17, 22, 36, 0.95), rgba(14, 18, 28, 0.95));
  position: relative;
  box-shadow: 0 14px 30px rgba(6, 12, 28, 0.35);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(93, 244, 196, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.how {
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.8), rgba(13, 15, 20, 0.8));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent-2);
  color: #081018;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  position: relative;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-top: 1.2rem;
  color: var(--muted);
}

.price-card ul li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0.6rem;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.featured {
  border-color: var(--accent-2);
  box-shadow: 0 20px 50px rgba(77, 181, 255, 0.25);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #071018;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.note {
  color: var(--muted);
  margin-top: 1rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
}

.trust-list li {
  position: relative;
  padding-left: 0.4rem;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(93, 244, 196, 0.15);
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.final-cta {
  padding-bottom: 6rem;
}

.final-box {
  background: linear-gradient(135deg, rgba(93, 244, 196, 0.12), rgba(77, 181, 255, 0.12));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 3rem 0;
  background: #0b0e16;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 1rem;
    border-radius: var(--radius-sm);
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 5rem;
  }

  .final-box {
    padding: 2rem 1.5rem;
  }
}



.roadmap {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding-left: 2.6rem;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(93, 244, 196, 0.6), rgba(77, 181, 255, 0.6));
  opacity: 0.6;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(160deg, rgba(28, 36, 56, 0.95), rgba(18, 24, 38, 0.95));
  border: 1px solid rgba(93, 244, 196, 0.22);
  box-shadow: 0 14px 28px rgba(6, 12, 28, 0.4);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  position: relative;
}

.roadmap-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #081018;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(77, 181, 255, 0.12);
}

.roadmap-content h3 {
  margin: 0;
  font-size: 1.25rem;
}











/* Roadmap overrides */
.roadmap-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(160deg, rgba(28, 36, 56, 0.95), rgba(18, 24, 38, 0.95));
  border: 1px solid rgba(93, 244, 196, 0.22);
  box-shadow: 0 14px 28px rgba(6, 12, 28, 0.4);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  position: relative;
}

.roadmap-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.roadmap-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(93, 244, 196, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: auto;
  flex-shrink: 0;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid rgba(77, 181, 255, 0.2);
  box-shadow: 0 24px 60px rgba(2, 8, 24, 0.5);
  object-fit: cover;
}


/* Brighter grid blocks (exclude section 6 roadmap) */
.pain-item,
.process-card,
.card,
.service-card,
.price-card,
.trust-list li,
.faq-list details {
  background-color: rgba(32, 40, 60, 0.98);
  border-color: rgba(93, 244, 196, 0.25);
}

.card,
.price-card,
.process-card,
.service-card,
.pain-item,
.faq-list details {
  box-shadow: 0 18px 36px rgba(6, 12, 28, 0.4);
}

/* Section 8 (trust) keep darker */
.trust-list li {
  background-color: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.audit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.audit-modal.open {
  display: block;
}

.audit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.76);
  backdrop-filter: blur(4px);
}

.audit-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100vh - 3rem);
  margin: 1.5rem auto;
  overflow: auto;
  background: #121827;
  border: 1px solid rgba(93, 244, 196, 0.25);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.audit-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0f1422;
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.audit-intro {
  color: var(--muted);
  margin: 0.5rem 0 1.2rem;
}

.audit-form {
  display: grid;
  gap: 1rem;
}

.audit-form label,
.audit-form legend {
  font-weight: 600;
  color: var(--text);
}

.audit-form input[type="text"],
.audit-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  background: #0d1320;
  border: 1px solid #263049;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.audit-form fieldset {
  border: 1px solid #263049;
  border-radius: 10px;
  padding: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.audit-form fieldset label {
  font-weight: 500;
  color: var(--muted);
}

.audit-form input[type="radio"],
.audit-form input[type="checkbox"] {
  margin-right: 0.45rem;
}

.audit-submit {
  margin-top: 0.5rem;
  width: fit-content;
}

body.modal-open {
  overflow: hidden;
}

/* Request fixes */
.hero {
  padding-top: 2rem;
}

.process-track {
  height: 8px;
  background: rgba(188, 208, 244, 0.32);
}

.audit-modal-dialog {
  scrollbar-width: thin;
  scrollbar-color: #2a3248 #111827;
}

.audit-modal-dialog::-webkit-scrollbar {
  width: 7px;
}

.audit-modal-dialog::-webkit-scrollbar-track {
  background: #111827;
}

.audit-modal-dialog::-webkit-scrollbar-thumb {
  background: #2a3248;
  border-radius: 999px;
}

.audit-form input[type="text"],
.audit-form textarea {
  background: #e8edf8;
  border: 1px solid #9aa7c0;
  color: #111827;
}

.audit-form input[type="text"]:focus,
.audit-form textarea:focus {
  outline: 2px solid rgba(77, 181, 255, 0.35);
  outline-offset: 1px;
}

.audit-form fieldset.option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.audit-form fieldset.option-grid legend {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 1rem;
  }

  .audit-form fieldset.option-grid {
    grid-template-columns: 1fr;
  }
}

.status-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
}

.status-modal.open {
  display: block;
}

.status-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.76);
  backdrop-filter: blur(4px);
}

.status-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 2rem));
  margin: 18vh auto 0;
  background: #121827;
  border: 1px solid rgba(93, 244, 196, 0.25);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.status-modal-dialog h2 {
  margin-bottom: 0.8rem;
}

.status-modal-dialog p {
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.status-modal-dialog .btn {
  margin-top: 1rem;
}
