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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #030711;
  color: white;
  min-height: 100vh;
}

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.primary {
  border: none;
  border-radius: 10px;
  padding: 13px 19px;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg,#176bff,#3154ff);
  box-shadow: 0 10px 30px rgba(31,86,255,.25);
  transition: .25s;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(31,86,255,.4);
}

.secondary {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 13px 19px;
  color: white;
  background: rgba(255,255,255,.03);
}

.navbar {
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(3,7,17,.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.logo-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg,#1680ff,#3d45ff);
  box-shadow: 0 0 25px rgba(40,100,255,.45);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #9ba7bc;
  text-decoration: none;
  font-size: 13px;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.hero {
  max-width: 1250px;
  margin: auto;
  padding: 105px 30px 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 30px;
  color: #6590ff;
  background: rgba(50,80,255,.1);
  border: 1px solid rgba(70,100,255,.22);
  font-size: 10px;
  font-weight: 800;
}

.hero h1 {
  font-size: 57px;
  line-height: 1.05;
  letter-spacing: -2.7px;
  margin: 22px 0;
}

.hero h1 span {
  color: #3473ff;
}

.hero-description {
  color: #9aa6bb;
  line-height: 1.7;
  max-width: 560px;
  font-size: 15px;
}

.audit-box,
.store-input {
  display: flex;
  padding: 6px;
  border-radius: 13px;
  background: #080e1c;
  border: 1px solid rgba(255,255,255,.1);
}

.audit-box {
  margin-top: 30px;
  max-width: 570px;
}

.audit-box input,
.store-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 13px;
}

.features {
  display: flex;
  gap: 28px;
  margin-top: 35px;
}

.feature {
  color: #7f8ca2;
  font-size: 10px;
  line-height: 1.5;
}

.feature strong {
  display: block;
  color: white;
  margin-bottom: 5px;
}

.dashboard-preview {
  padding: 27px;
  border-radius: 19px;
  background: linear-gradient(145deg,#101a2d,#060d19);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}

.score-header {
  display: flex;
  justify-content: space-between;
  color: #8995aa;
  font-size: 11px;
}

.score-area {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 30px 0;
}

.score-circle,
.big-score {
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle,#07101f 58%,transparent 59%),
    conic-gradient(#2772ff 62%,#182640 0);
}

.score-circle {
  width: 155px;
  height: 155px;
  flex-shrink: 0;
}

.score-circle strong {
  font-size: 42px;
}

.score-circle small {
  color: #758197;
}

.overview h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.overview p {
  color: #647087;
  font-size: 10px;
  margin-bottom: 15px;
}

.problem {
  background: #091120;
  padding: 15px;
  border-radius: 10px;
}

.problem small {
  color: #ff4c6b;
  display: block;
  font-size: 9px;
}

.problem strong {
  display: block;
  margin: 7px 0;
  font-size: 12px;
}

.problem span {
  color: #657189;
  font-size: 9px;
}

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

.scores div {
  background: #091120;
  border-radius: 8px;
  padding: 11px 7px;
  color: #748097;
  font-size: 8px;
}

.scores strong {
  display: block;
  color: #65c96b;
  font-size: 15px;
  margin-top: 5px;
}

.scores .red {
  color: #ff4868;
}

.platforms {
  text-align: center;
  padding: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.platforms p {
  color: #59657a;
  font-size: 10px;
  margin-bottom: 20px;
}

.platform-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  color: #7d889b;
  font-size: 12px;
  font-weight: 700;
}

.signup-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(1,5,13,.88);
  backdrop-filter: blur(18px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.signup-box {
  width: 430px;
  max-width: 100%;
  padding: 42px;
  border-radius: 22px;
  background: linear-gradient(145deg,#101a2d,#060d19);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
  text-align: center;
}

.signup-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 28px;
}

.signup-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.signup-box p {
  color: #7e8aa0;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.signup-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.09);
  background: #080f1d;
  color: white;
  outline: none;
}

.signup-button {
  width: 100%;
  margin-top: 8px;
}

.signup-login {
  margin-top: 20px;
  color: #68758b;
  font-size: 11px;
}

.signup-login a {
  color: #4d82ff;
}

.dashboard {
  display: none;
  min-height: 100vh;
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  flex-shrink: 0;
  padding: 25px 15px;
  background: #040a14;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
}

.sidebar .logo {
  padding: 0 12px 28px;
}

.side-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-menu a {
  padding: 11px 13px;
  border-radius: 9px;
  color: #7d899e;
  font-size: 11px;
}

.side-menu a.active {
  color: #6b94ff;
  background: linear-gradient(90deg,rgba(38,94,255,.2),transparent);
}

.side-help {
  margin-top: auto;
  padding: 16px;
  border-radius: 12px;
  background: #07101e;
  border: 1px solid rgba(255,255,255,.07);
}

.side-help small {
  color: #65728a;
  font-size: 8px;
}

.side-help p {
  color: #7d899d;
  font-size: 10px;
  line-height: 1.6;
  margin: 8px 0 14px;
}

.side-help button {
  width: 100%;
  font-size: 10px;
}

.dashboard-main {
  flex: 1;
  padding: 40px;
  max-width: 1400px;
}

.dashboard-header {
  margin-bottom: 30px;
}

.dashboard-header small {
  color: #59667c;
  font-size: 10px;
}

.dashboard-header h1 {
  font-size: 28px;
  margin: 7px 0;
}

.dashboard-header p {
  color: #758197;
  font-size: 11px;
}

.audit-start {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg,rgba(20,53,130,.45),rgba(8,16,31,.95));
  border: 1px solid rgba(67,105,255,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audit-start h2 {
  font-size: 27px;
  margin: 17px 0 10px;
}

.audit-start p {
  color: #7e8aa0;
  font-size: 11px;
  line-height: 1.6;
}

.store-input {
  max-width: 560px;
  margin-top: 24px;
}

.audit-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 65px;
  color: #3978ff;
  background: radial-gradient(circle,rgba(50,110,255,.2),transparent 65%);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  margin-top: 18px;
}

.stat-card {
  padding: 22px;
  border-radius: 15px;
  background: #07101d;
  border: 1px solid rgba(255,255,255,.07);
}

.stat-card small {
  color: #637088;
  font-size: 8px;
}

.stat-card strong {
  display: block;
  font-size: 30px;
  margin: 12px 0 4px;
}

.stat-card span {
  color: #657189;
  font-size: 9px;
}

.audit-result {
  display: none;
  margin-top: 22px;
}

.result-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 17px;
}

.result-card {
  padding: 23px;
  border-radius: 17px;
  background: linear-gradient(145deg,#101a2d,#060d19);
  border: 1px solid rgba(255,255,255,.08);
}

.result-card h3 {
  font-size: 14px;
}

.big-score {
  width: 150px;
  height: 150px;
  margin: 25px auto;
}

.big-score strong {
  font-size: 40px;
}

.big-score small {
  color: #778399;
}

.result-card > p {
  color: #69768d;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

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

.priority-result small {
  color: #ff4d6c;
  font-size: 9px;
}

.priority-result h2 {
  font-size: 22px;
  margin: 9px 0;
}

.priority-result p {
  color: #6d7890;
  font-size: 10px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 18px;
}

.product-box {
  width: 160px;
  height: 120px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 45px;
  background: #0e1a2d;
}

.breakdown-card {
  margin-top: 17px;
}

.breakdown-card h2 {
  font-size: 15px;
}

.breakdown-card p {
  color: #69768d;
  font-size: 10px;
  margin-top: 5px;
}

.breakdown {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 9px;
  margin-top: 18px;
}

.breakdown-item {
  padding: 14px;
  border-radius: 10px;
  background: #09111f;
}

.breakdown-item b {
  display: block;
  color: #8995a9;
  font-size: 9px;
}

.breakdown-item strong {
  display: block;
  font-size: 20px;
  margin: 7px 0;
}

.breakdown-item small {
  color: #68758c;
  font-size: 8px;
}

.bad {
  color: #ff4868 !important;
}

.medium {
  color: #f3c64b !important;
}

.good {
  color: #65ca6c !important;
}

.team-card {
  margin-top: 17px;
  padding: 25px;
  border-radius: 17px;
  background: linear-gradient(135deg,rgba(20,55,135,.35),#07101e);
  border: 1px solid rgba(62,105,255,.18);
}

.team-card h2 {
  font-size: 18px;
  margin-top: 15px;
}

.team-card > p {
  color: #748096;
  font-size: 10px;
  margin-top: 8px;
}

.team-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

.team-members {
  display: flex;
  gap: 20px;
}

.member {
  text-align: center;
}

.member-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  background: linear-gradient(135deg,#354664,#2673ff);
  font-size: 11px;
  font-weight: 700;
}

.member small {
  display: block;
  color: #69768c;
  font-size: 8px;
  margin-top: 7px;
}

.team-services {
  color: #7a879c;
  font-size: 9px;
  line-height: 2;
}

@media(max-width:950px) {

  .nav-links {
    display: none;
  }

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

  .hero h1 {
    font-size: 45px;
  }

  .breakdown {
    grid-template-columns: repeat(3,1fr);
  }
}

@media(max-width:700px) {

  .navbar {
    padding: 0 20px;
  }

  .hero {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .audit-box,
  .store-input {
    flex-direction: column;
  }

  .features {
    flex-direction: column;
  }

  .score-area {
    flex-direction: column;
  }

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

  .sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 20px;
  }

  .audit-start {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

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

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

  .team-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}