/* Innoveo.co - Shared Styles */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #a855f7;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.site-header .logo a {
  color: inherit;
  text-decoration: none;
}
.site-header .logo a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.site-header ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-header ul li a {
  color: var(--text);
  font-weight: 500;
}
.site-header ul li a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f5f3ff 100%);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* App cards */
.app-grid {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.app-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}
.app-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.app-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.app-card.eventio .icon { background: linear-gradient(135deg, #6366f1, #a855f7); }
.app-card.walleo .icon { background: linear-gradient(135deg, #10b981, #059669); }
.app-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.app-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

/* Page titles */
.page-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.page-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Content sections */
.content-section {
  margin-bottom: 2rem;
}
.content-section h2 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}
.content-section h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.4rem;
  color: var(--text);
}
.content-section p, .content-section li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2rem;
  margin-top: 3rem;
}
.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.site-footer .footer-links a:hover {
  color: var(--primary);
}
.site-footer .copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* App page specific */
.app-hero {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.app-hero .icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.app-hero.eventio .icon { background: linear-gradient(135deg, #6366f1, #a855f7); }
.app-hero.walleo .icon { background: linear-gradient(135deg, #10b981, #059669); }
.app-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.app-hero p {
  color: var(--text-muted);
}
.app-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.app-nav a {
  padding: 0.5rem 1rem;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}
.app-nav a:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

/* Last updated */
.updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .site-header { padding: 1rem; }
  .site-header ul { gap: 1rem; }
  .app-grid { grid-template-columns: 1fr; }
  .site-footer .footer-inner { flex-direction: column; text-align: center; }
}
