:root {
  --slotti-primary: #0f766e;
  --slotti-primary-dark: #0b544e;
  --slotti-ink: #16211f;
  --slotti-muted: #5b6b68;
  --slotti-border: #dde6e4;
  --slotti-bg: #f6f9f8;
  --slotti-card: #ffffff;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--slotti-ink);
  background: var(--slotti-bg);
  line-height: 1.6;
}

a {
  color: var(--slotti-primary);
}

.site-header {
  background: var(--slotti-card);
  border-bottom: 1px solid var(--slotti-border);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  color: var(--slotti-ink);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--slotti-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

nav.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

nav.site-nav a {
  text-decoration: none;
  color: var(--slotti-muted);
}

nav.site-nav a:hover,
nav.site-nav a.is-active {
  color: var(--slotti-primary);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  text-align: center;
  padding: 48px 0 32px;
}

.hero h1 {
  font-size: 34px;
  margin: 0 0 12px;
}

.hero p.lead {
  font-size: 17px;
  color: var(--slotti-muted);
  max-width: 620px;
  margin: 0 auto 24px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

.button.primary {
  background: var(--slotti-primary);
  color: white;
}

.button.primary:hover {
  background: var(--slotti-primary-dark);
}

.button.ghost {
  background: transparent;
  color: var(--slotti-primary);
  border: 1px solid var(--slotti-border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.feature-card {
  background: var(--slotti-card);
  border: 1px solid var(--slotti-border);
  border-radius: 10px;
  padding: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--slotti-muted);
}

.verticals {
  text-align: center;
  color: var(--slotti-muted);
  font-size: 14px;
  margin: 8px 0 40px;
}

.legal-doc {
  background: var(--slotti-card);
  border: 1px solid var(--slotti-border);
  border-radius: 10px;
  padding: 32px;
}

.legal-doc h1 {
  margin-top: 0;
}

.legal-doc h2 {
  font-size: 18px;
  margin-top: 32px;
  border-top: 1px solid var(--slotti-border);
  padding-top: 20px;
}

.legal-doc h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.updated-note {
  color: var(--slotti-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.placeholder {
  background: #fff7e6;
  border: 1px dashed #e0b04a;
  border-radius: 6px;
  padding: 2px 6px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
}

.notice-box {
  background: #fff7e6;
  border: 1px solid #e0b04a;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 24px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(15, 35, 30, 0.25);
  font-weight: 700;
  font-size: 14px;
  z-index: 1000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 35, 30, 0.3);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-float-label {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
  }
}

footer.site-footer {
  border-top: 1px solid var(--slotti-border);
  padding: 24px 20px;
  text-align: center;
  color: var(--slotti-muted);
  font-size: 13px;
}

footer.site-footer a {
  color: var(--slotti-muted);
}

@media (prefers-color-scheme: dark) {
  :root {
    --slotti-ink: #eef4f2;
    --slotti-muted: #9db0ac;
    --slotti-border: #26332f;
    --slotti-bg: #0f1513;
    --slotti-card: #161f1c;
  }

  .placeholder,
  .notice-box {
    background: #2a2410;
    border-color: #7a5a1a;
    color: #eed9a3;
  }
}
