/* Mojo.Spot – Unified Style Sheet */

/* ---------- Base ---------- */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fafc;
  color: #222;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: 640px;
  margin: 40px auto;
  padding: 0 24px;
  text-align: center;
}

main.wrap section {
  text-align: left;
  margin-bottom: 40px;
}

/* ---------- Header ---------- */
.site-header {
  background-color: #0a2b6b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  align-items: center;
}

.logo {
  width: 48px;
  height: auto;
  margin-right: 12px;
  display: block;
}

.site-title {
  font-size: 1.6em;
  font-weight: 700;
  color: white;
}

/* ---------- Nav ---------- */
.site-nav {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
}

.site-nav a:hover,
.site-nav a.active {
  text-decoration: underline;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #fefefe;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-logo {
  max-width: 180px;
  margin: 32px auto;
  display: block;
}

.hero-text {
  margin-top: 24px;
  font-size: 2em;
  color: #333;
}

.hero-subtext {
  font-size: 1.2em;
  color: #666;
  margin-top: 8px;
}

/* ---------- Typography ---------- */
.page-title {
  font-size: 2em;
  margin-top: 24px;
  color: #0a2b6b;
}

.intro {
  font-size: 1.2em;
  margin-top: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.pitch {
  font-size: 1em;
  line-height: 1.5;
  color: #444;
  margin-bottom: 32px;
}

/* ---------- Badges ---------- */
.badge-box {
  background: #eef3ff;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 24px;
}

.badge {
  font-weight: bold;
  font-family: monospace;
  background: #d0e1ff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.badge-caption {
  font-size: 0.85em;
  color: #666;
  margin-top: 8px;
}

/* ---------- CTA ---------- */
.cta {
  font-weight: 600;
  font-size: 1em;
  color: #0a2b6b;
  margin-top: 32px;
}

/* ---------- Buttons ---------- */
button,
a button {
  background-color: #0a2b6b;
  color: white;
  font-size: 1em;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.2s ease;
}

button:hover,
a button:hover {
  background-color: #08307a;
}

/* ---------- Form ---------- */
.mojo-form {
  background: #f8faff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.mojo-form label {
  display: block;
  margin-top: 16px;
  font-weight: bold;
  color: #0a2b6b;
  font-size: 1em;
}

.mojo-form input,
.mojo-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
  font-family: inherit;
  box-sizing: border-box;
}

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

.mojo-form .optional {
  font-weight: normal;
  color: #888;
  font-size: 0.9em;
}

.mojo-form button {
  margin-top: 24px;
  background: #0a4f8a;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
}

.mojo-form button:hover {
  background: #063963;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  padding: 32px 16px;
  margin-top: 40px;
}
