/* Solto brand — matched to gosolto.com */
:root {
  --solto-teal: #27c7c5;
  --solto-teal-bright: #2dd4bf;
  --solto-teal-deep: #20a5a3;
  --solto-teal-dark: #0d4f4e;

  --bg-0: #020618;
  --bg-1: #0a0f1e;
  --bg-2: #0f172a;
  --bg-3: #1e293b;
  --bg-card: #111827;
  --border: #1f2937;

  --text-0: #f8fafc;
  --text-1: #cbd5e1;
  --text-2: #94a3b8;
  --text-3: #64748b;

  --accent-green: #00c758;
  --accent-orange: #fe6e00;
  --accent-red: #fb2c36;

  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-teal: 0 0 0 1px rgba(39, 199, 197, 0.25), 0 8px 32px rgba(39, 199, 197, 0.15);
  --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 20px 40px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text-0);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(39, 199, 197, 0.10), transparent 60%),
    radial-gradient(800px 400px at 90% 20%, rgba(39, 199, 197, 0.05), transparent 60%);
}
a { color: var(--solto-teal); text-decoration: none; }
a:hover { color: var(--solto-teal-bright); }
img, svg { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(2, 6, 24, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1200px; margin: 0 auto; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
.brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--solto-teal);
  box-shadow: 0 0 12px var(--solto-teal);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-1); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text-0); }
.nav-cta {
  background: var(--solto-teal);
  color: #02191b !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-teal); color: #02191b !important; }
@media (max-width: 760px) { .nav-links a:not(.nav-cta) { display: none; } }

/* Hero */
.hero { padding: 96px 0 80px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(39, 199, 197, 0.10);
  border: 1px solid rgba(39, 199, 197, 0.30);
  color: var(--solto-teal);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 900px;
}
.hero h1 .accent { color: var(--solto-teal); }
.hero .sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-1);
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: var(--font-sans);
}
.btn-primary { background: var(--solto-teal); color: #02191b; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-teal); color: #02191b; }
.btn-secondary { background: transparent; color: var(--text-0); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--solto-teal); color: var(--solto-teal); }

/* Section */
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-align: center;
}
.section-sub { color: var(--text-2); text-align: center; max-width: 640px; margin: 0 auto 56px; }

/* Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Card */
.card {
  background: linear-gradient(180deg, rgba(39, 199, 197, 0.04) 0%, transparent 60%), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(39, 199, 197, 0.35); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px;
  background: rgba(39, 199, 197, 0.12);
  color: var(--solto-teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--text-2); font-size: 14px; }

/* Stat strip */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: rgba(39, 199, 197, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat .n { font-size: 36px; font-weight: 800; color: var(--solto-teal); letter-spacing: -0.02em; }
.stat .l { font-size: 13px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* Form */
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field label {
  display: block;
  font-size: 13px;
  color: var(--text-1);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-0);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--solto-teal);
  box-shadow: 0 0 0 3px rgba(39, 199, 197, 0.15);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-msg { margin-top: 14px; font-size: 14px; min-height: 20px; }
.form-msg.ok { color: var(--accent-green); }
.form-msg.err { color: var(--accent-red); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--text-3);
  font-size: 13px;
  text-align: center;
}
.footer a { color: var(--text-2); margin: 0 10px; }

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.teal { color: var(--solto-teal); }
.ribbon {
  display: inline-block;
  background: rgba(39, 199, 197, 0.12);
  border: 1px solid rgba(39, 199, 197, 0.3);
  color: var(--solto-teal);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Consent + disclaimer blocks */
.consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 4px; margin-bottom: 18px;
  font-size: 12px; line-height: 1.55; color: var(--text-2);
}
.consent-row input[type=checkbox] {
  margin-top: 3px;
  accent-color: var(--solto-teal);
  width: 16px; height: 16px; flex-shrink: 0;
}
.consent-row a { color: var(--text-1); text-decoration: underline; text-underline-offset: 2px; }
.consent-row a:hover { color: var(--solto-teal); }

.micro-legal {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-3);
  margin-top: 14px;
  text-align: center;
}
.micro-legal a { color: var(--text-2); text-decoration: underline; }

.disclaimer-strip {
  background: rgba(39,199,197,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 32px auto 0;
  max-width: 880px;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.6;
}
.disclaimer-strip strong { color: var(--text-1); }

/* Extended footer */
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding: 56px 24px 24px;
  max-width: 1200px; margin: 0 auto;
  text-align: left;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--text-0); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-2); font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: var(--solto-teal); }
.footer-col p { color: var(--text-2); font-size: 13px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-3); flex-wrap: wrap; gap: 8px;
}
.footer-bottom .eho { color: var(--text-2); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(39,199,197,0.35);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none;
  z-index: 100;
  font-size: 13px;
  color: var(--text-1);
  line-height: 1.55;
}
.cookie-banner.active { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cookie-banner .cb-text { flex: 1 1 260px; min-width: 0; }
.cookie-banner .cb-text a { text-decoration: underline; color: var(--solto-teal); }
.cookie-banner .cb-btns { display: flex; gap: 8px; }
.cookie-banner button {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer; border: none;
  font-family: var(--font-sans);
}
.cookie-banner .cb-accept { background: var(--solto-teal); color: #02191b; }
.cookie-banner .cb-decline { background: transparent; color: var(--text-1); border: 1px solid var(--border); }
.cookie-banner .cb-decline:hover { border-color: var(--solto-teal); color: var(--solto-teal); }

/* About teaser */
.about-teaser {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 20px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
@media (max-width: 700px) { .about-teaser { grid-template-columns: 80px 1fr; } .about-teaser .at-cta { grid-column: 1 / -1; margin-top: 8px; } }
.about-teaser .at-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(39,199,197,0.18), rgba(39,199,197,0.04));
  border: 1px solid rgba(39,199,197,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--solto-teal); font-weight: 800; letter-spacing: -0.04em;
  overflow: hidden;
}
.about-teaser .at-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.about-teaser h4 { color: var(--text-0); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-teaser p { color: var(--text-2); font-size: 13.5px; line-height: 1.55; }
.about-teaser .at-cta a { color: var(--solto-teal); font-weight: 600; font-size: 14px; white-space: nowrap; }
