/* === SLIP — sliplink.co === */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-raised: #111111;
  --bg-card: #161616;
  --border: #222222;
  --border-light: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-dim: #555555;
  --accent: #7c5cff;
  --accent-glow: rgba(124, 92, 255, 0.15);
  --accent-hover: #9178ff;
  --green: #34d399;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 720px;
  --max-w-wide: 960px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 32px;
  width: auto;
}

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- SECTIONS ---- */
.section {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 80px 24px;
}

.section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section h2 em {
  font-style: normal;
  color: var(--accent);
}

.section .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--border-light); }

.card .card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 24px;
}

.step::before {
  content: counter(step);
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---- PRICING ---- */
.pricing-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.pricing-box .big-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pricing-box .big-number small {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-box .pricing-detail {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.pricing-box .pricing-example {
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  text-align: left;
  color: var(--text-muted);
}

.pricing-box .pricing-example .green { color: var(--green); }

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-sub {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ---- LEGAL PAGES ---- */
.legal-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 80px;
  flex: 1;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

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

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.legal-page ul, .legal-page ol {
  color: var(--text-muted);
  margin-left: 20px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.legal-page li { margin-bottom: 6px; }

.legal-page strong { color: var(--text); font-weight: 600; }

/* ---- AGE GATE ---- */
.age-gate-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.age-gate {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-gate h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.age-warning {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.age-gate .dob-fields {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.age-gate input[type="number"] {
  width: 80px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  text-align: center;
  -moz-appearance: textfield;
}

.age-gate input[type="number"]::-webkit-inner-spin-button,
.age-gate input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.age-gate input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.age-gate .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.age-gate .checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
}

.age-gate .verify-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.age-gate .verify-btn:hover { background: var(--accent-hover); }
.age-gate .verify-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.age-gate .fine-print {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 20px;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); }
.footer-links a:hover { color: var(--text-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.8rem; }
  .hero { padding: 60px 20px 50px; }
  .section { padding: 50px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .age-gate { padding: 32px 24px; }
}
