/* Mark Cuban Employee Value Framework Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
color: #333;
background: #fff;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
header {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: white;
padding: 1.5rem 0;
shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header h1 { font-size: 2rem; margin-bottom: 0.25rem; }
header .tagline { font-size: 1rem; opacity: 0.9; margin-bottom: 1rem; }
header nav a {
color: #e6e6e6;
text-decoration: none;
margin-right: 1.5rem;
font-size: 0.9rem;
}
header nav a:hover { color: #fff; }

.hero { background: #f8f9fa; padding: 2rem 0; }
.hero h2 { font-size: 1.75rem; margin-bottom: 1rem; color: #1a1a2e; }
.hero p { color: #555; margin-bottom: 1.5rem; }

.presets {
background: white;
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1.5rem;
shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.presets label { font-weight: 600; margin-right: 0.5rem; }
.presets select {
padding: 0.5rem;
border-radius: 4px;
border: 1px solid #ddd;
margin-right: 0.5rem;
}
.presets button {
background: #e94560;
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
}
.presets button:hover { background: #c7344d; }

.dimension { margin-bottom: 1.5rem; }
.dimension label {
font-weight: 500;
display: block;
margin-bottom: 0.25rem;
}
.dimension input[type="range"] {
width: 100%;
height: 8px;
background: #ddd;
border-radius: 4px;
outline: none;
}
.dimension input[type="range"]::-webkit-slider-thumb {
height: 20px;
width: 20px;
border-radius: 50%;
background: #e94560;
cursor: pointer;
shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.help-text { font-size: 0.85rem; color: #666; margin-top: 0.25rem; }

.controls {
display: flex;
gap: 1rem;
margin: 1.5rem 0;
}
.controls button {
flex: 1;
padding: 0.75rem;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
}
#calculateBtn { background: #e94560; color: white; }
#calculateBtn:hover { background: #c7344d; }
#saveBtn { background: #4a90d9; color: white; }
#saveBtn:hover { background: #357abd; }
#exportBtn { background: #50c878; color: white; }
#exportBtn:hover { background: #38a85e; }

.results { background: white; padding: 1.5rem; border-radius: 8px; shadow: 0 2px 8px rgba(0,0,0,0.08); }
.score-display { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.score-circle {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #e94560, #ff6b6b);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
}
.recommendations h4 { margin-bottom: 0.5rem; color: #1a1a2e; }
.recommendations ul { list-style: none; padding-left: 1rem; }
.recommendations li { margin-bottom: 0.5rem; padding-left: 1rem; position: relative; }
.recommendations li:before { content: '→'; position: absolute; left: 0; }

.actions { display: flex; gap: 0.5rem; margin-top: 1rem; }
#printBtn { background: #6c757d; color: white; flex: 1; }
#printBtn:hover { background: #5a6268; }
#resetBtn { background: #f8f9fa; color: #333; flex: 1; }
#resetBtn:hover { background: #e9ecef; }

.ad-placeholder {
background: #f0f0f0;
border: 1px dashed #ccc;
border-radius: 8px;
padding: 2rem;
text-align: center;
margin: 1rem 0;
}
.ad-label { color: #999; font-size: 0.85rem; }

how-it-works, .examples, .faq { padding: 2rem 0; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #1a1a2e; }

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.card {
background: white;
border-radius: 8px;
padding: 1.25rem;
shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card h4 { color: #e94560; margin-bottom: 0.5rem; }
.card p { color: #555; font-size: 0.95rem; }

.scenario { background: #f8f9fa; padding: 1.25rem; border-radius: 8px; margin-bottom: 1rem; }
.scenario h4 { color: #1a1a2e; margin-bottom: 0.5rem; }
.scenario p { color: #555; }

.faq-item { margin-bottom: 1rem; }
.faq-item h4 { font-size: 1rem; margin-bottom: 0.25rem; color: #1a1a2e; }
.faq-item p { color: #555; font-size: 0.95rem; }

footer {
background: #1a1a2e;
color: #e6e6e6;
padding: 1.5rem 0;
font-size: 0.85rem;
}
footer a { color: #e94560; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .version { opacity: 0.7; margin: 0.5rem 0; }
footer .legal { opacity: 0.6; font-size: 0.8rem; margin-top: 1rem; }

@media (max-width: 768px) {
header h1 { font-size: 1.5rem; }
.hero h2 { font-size: 1.5rem; }
.controls { flex-direction: column; }
.grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
.presets { flex-direction: column; gap: 0.5rem; }
.presets select, .presets button { width: 100%; }
}


/* Factory-injected deployment helpers. The AI owns the site design above this block. */
.ad-unit {
  width: min(100%, 720px);
  min-height: 120px;
  margin: 24px auto;
  display: block;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 40px auto;
}

.factory-fallback-nav {
  width: min(900px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  font-size: 0.95rem;
}

.factory-fallback-nav a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
