/* Stronger Software — strongersoftware.com */
:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --accent: #4A9EFF;
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-tertiary: #666;
  --border: #222;
  --radius: 16px;
  --max-width: 640px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Hero */
.hero {
  padding: 100px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.hero .tagline {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto;
}

/* Apps */
.apps {
  padding: 0 0 80px;
}
.apps h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  text-align: center;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.15s;
  text-decoration: none;
  color: inherit;
}
.app-card:hover {
  border-color: #333;
  text-decoration: none;
}
.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: linear-gradient(135deg, #FF6B00, #FF8A33);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.app-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.app-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.app-info .badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 3px 10px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-tertiary);
}
.footer-email {
  margin-top: 8px;
}
.footer-email a {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 28px; }
  .app-card { padding: 20px; }
}
