body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

:root {
  --bg: #ffffff;
  --text: #0b2540;
  --muted: #4a5d73;
  --accent: #1f7a3f;
  --border: #e5e5e5;
}

[data-theme="dark"] {
  --bg: #0b1220;
  --text: #e6ebf2;
  --muted: #9aa6b2;
  --accent: #3fbf7f;
  --border: #1f2a3a;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.logo {
  max-width: 420px;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.4rem;
}

p {
  font-size: 1.1rem;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.footer {
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.theme-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.1rem;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.privacy-content {
  background: var(--bg);
  color: var(--text);
  padding: 2rem;
  max-width: 500px;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .features {
    grid-template-columns: 1fr;
  }
  .logo {
    max-width: 300px;
  }
}


/* Logo swap for dark theme */
[data-theme="dark"] .logo {
  content: url("../img/portzo-logo-dark.png");
}

