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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #070b14;
  color: #ffffff;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

#techCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.35;
}

.background-glow {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 242, 254, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(112, 0, 255, 0.22), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(0, 242, 254, 0.1), transparent 40%),
    #070b14;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
}

.logo span {
  color: #00f2fe;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: #b6c2d6;
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav a:hover {
  color: #00f2fe;
}

.btn-header {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: #00f2fe;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-header:hover {
  background: #00f2fe;
  color: #07101c;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.45);
}

.menu-btn {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 1.8rem;
}

.hero {
  padding: 160px 0 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.badge {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: #90f7ff;
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #00f2fe, #9b5cff, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: #b6c2d6;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary {
  background: #00f2fe;
  color: #07101c;
  box-shadow: 0 0 45px rgba(0, 242, 254, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tech-stack {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  padding: 9px 14px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 254, 0.25);
  box-shadow: 0 0 90px rgba(112, 0, 255, 0.35);
  animation: orbit 8s linear infinite;
}

.card-orbit::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 40px;
  width: 18px;
  height: 18px;
  background: #00f2fe;
  border-radius: 50%;
  box-shadow: 0 0 25px #00f2fe;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.dashboard-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.dashboard-header {
  height: 54px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 20px;
  background: rgba(255,255,255,0.05);
}

.dashboard-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #64748b;
}

.dashboard-body {
  padding: 28px;
}

.dashboard-body p {
  color: #8fa3bf;
  font-size: 0.9rem;
}

.dashboard-body h3 {
  margin: 8px 0 24px;
  font-size: 1.5rem;
}

.progress-box {
  margin-bottom: 20px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: #dbeafe;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.progress-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.progress-bar div {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f2fe, #7000ff);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.metrics div {
  padding: 16px 10px;
  border-radius: 18px;
  background: rgba(0,0,0,0.25);
  text-align: center;
}

.metrics strong {
  display: block;
  color: #00f2fe;
  font-size: 1.2rem;
}

.metrics span {
  color: #94a3b8;
  font-size: 0.76rem;
}

.proof {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.proof p {
  color: #94a3b8;
  margin-bottom: 24px;
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.proof-grid div {
  text-align: center;
  padding: 18px;
  border-radius: 16px;
  color: #cbd5e1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.pain-section,
.solutions,
.differentials,
.process,
.contact {
  padding: 100px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-title span,
.mini-title {
  display: inline-block;
  color: #00f2fe;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title h2,
.differential-content h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-title p,
.differential-content p,
.contact p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1rem;
}

.pain-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pain-card,
.solution-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  transition: 0.35s;
}

.pain-card:hover,
.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.13);
}

.pain-card h3,
.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.pain-card p,
.solution-card p {
  color: #94a3b8;
  line-height: 1.7;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
}

.differential-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.differential-list {
  display: grid;
  gap: 18px;
}

.differential-list div {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}

.differential-list strong {
  color: #00f2fe;
  font-size: 0.9rem;
}

.differential-list h3 {
  margin: 10px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}

.timeline-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #00f2fe;
  color: #07101c;
  font-weight: 800;
  margin-bottom: 20px;
}

.timeline-item h3 {
  margin-bottom: 12px;
}

.timeline-item p {
  color: #94a3b8;
  line-height: 1.7;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-info p {
  color: #cbd5e1;
}

.form {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  color: #ffffff;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #00f2fe;
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.1);
}

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

.form button {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 14px;
  background: #00f2fe;
  color: #07101c;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 0 45px rgba(0, 242, 254, 0.35);
}

.form button:hover {
  transform: translateY(-3px);
}

.form-message {
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .hero-content,
  .differential-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .pain-grid,
  .solutions-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .nav,
  .btn-header {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.active {
    position: absolute;
    top: 78px;
    left: 0;
    display: grid;
    width: 100%;
    padding: 24px;
    background: rgba(7, 11, 20, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 130px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }

  .proof-grid,
  .pain-grid,
  .solutions-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .form {
    padding: 24px;
  }
}
