:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --accent-color: #000000; /* Nero al posto del viola */
  --secondary-color: #555555;
  --border-color: #eeeeee;
  --font-main: "Poppins", sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  padding: 2rem;
}

header {
  margin-bottom: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  max-width: 180px;
  height: auto;
}

.logo-icon {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; /* Più squadrato per un look pro */
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-color);
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.highlight {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  background: #f4f4f4;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #00ff00; /* Unico tocco di colore: verde per lo stato 'active' */
  border-radius: 50%;
  margin-right: 10px;
}

.cta-section p {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer {
  margin-top: 5rem;
  font-size: 0.75rem;
  color: #999;
}
