 /* GLOBAL */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #000;
}

.nav {
  font-size: 26px;
  font-weight: 700;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

/* HOME PAGE */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
}

.hero-sub {
  margin-top: -10px;
  font-size: 20px;
  color: #444;
}

.input-box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.input-box input {
  width: 350px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 18px;
}

.input-box button {
  padding: 15px 25px;
  border-radius: 12px;
  background: black;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.disclaimer {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

/* ANALYSIS PAGE */
.analysis-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.analysis-container h1 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

/* CARDS */
.card {
  padding: 25px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
}

/* RISK METER */
.meter-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.gauge {
  width: 250px;
  height: 125px;
  background: #f7f7f7;
  border-radius: 125px 125px 0 0;
  border: 6px solid #ddd;
  position: relative;
}

.needle {
  width: 6px;
  height: 90px;
  background: red;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-origin: bottom;
  transform: rotate(0deg);
  border-radius: 3px;
  transition: 1s ease-in-out;
}

