:root {
  --bg: #0b0d10;
  --bg-alt: #12151a;
  --text: #e8eaed;
  --text-dim: #9aa1ab;
  --accent: #7fd4c1;
  --border: #23272e;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--accent); }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo span { color: var(--accent); }

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover { color: var(--text); }

.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero .eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  max-width: 820px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero p {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.cta {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  background: var(--accent);
  color: #0b0d10;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127, 212, 193, 0.25);
}

section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(127, 212, 193, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.2rem;
}

.card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

.about {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about .inner { max-width: 720px; margin: 0 auto; text-align: center; }
.about p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 1.25rem; }

.stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.stat { text-align: center; }
.stat .num { font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat .label {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact { text-align: center; }

.contact form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact input,
.contact textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
}

.contact textarea { min-height: 120px; resize: vertical; }

.contact button {
  cursor: pointer;
  border: none;
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: #0b0d10;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.95rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer a { color: var(--text-dim); }

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

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

/* Legal / SMS-program page content */

.legal {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}

.legal p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.legal ul {
  color: var(--text-dim);
  margin: 0 0 1rem 1.25rem;
}

.legal li { margin-bottom: 0.5rem; }

.legal strong { color: var(--text); }

.callout {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.checkbox-row label {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mockup-badge {
  display: inline-block;
  background: rgba(127, 212, 193, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
