/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface2: #1C1C1C;
  --border: #242424;
  --purple: #9B8FFF;
  --purple-dim: rgba(155, 143, 255, 0.12);
  --teal: #26C6A6;
  --blue: #4FC3F7;
  --orange: #FF9966;
  --text: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.25);
  --radius: 18px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Space Grotesk', sans-serif;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 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);
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #9B8FFF, #4FC3F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-dim);
  border: 1px solid rgba(155, 143, 255, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #9B8FFF 0%, #4FC3F7 50%, #26C6A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Apps Section ─────────────────────────────────────────────────────────── */
.apps {
  padding: 40px 0 80px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.app-card:hover { border-color: rgba(255,255,255,0.12); }

.app-card.featured {
  border-color: rgba(155, 143, 255, 0.3);
  background: linear-gradient(135deg, rgba(155,143,255,0.05) 0%, var(--surface) 60%);
}
.app-card.featured:hover { border-color: rgba(155, 143, 255, 0.5); }

.app-card-inner {
  display: flex;
  gap: 24px;
  padding: 28px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nl-icon {
  background: linear-gradient(135deg, rgba(155,143,255,0.15), rgba(208,132,255,0.1));
  border: 1px solid rgba(155,143,255,0.25);
}

.ops-icon {
  background: linear-gradient(135deg, rgba(79,195,247,0.12), rgba(38,198,166,0.1));
  border: 1px solid rgba(79,195,247,0.2);
}

.shift-icon {
  background: linear-gradient(135deg, rgba(61,90,254,0.12), rgba(155,143,255,0.1));
  border: 1px solid rgba(61,90,254,0.2);
}

.app-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,153,102,0.15);
  color: var(--orange);
  border: 1px solid rgba(255,153,102,0.25);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.app-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.app-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.app-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.app-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

/* ── Values ───────────────────────────────────────────────────────────────── */
.values {
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.value-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.contact p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-secondary); }

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Privacy Policy ───────────────────────────────────────────────────────── */
.policy-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.policy-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.policy-body {
  padding: 60px 0 80px;
}

.policy-container {
  max-width: 720px;
}

.disclaimer-box {
  background: rgba(255, 153, 102, 0.06);
  border: 1px solid rgba(255, 153, 102, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 48px;
}

.disclaimer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.disclaimer-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}
.disclaimer-box p:last-child { margin-bottom: 0; }

.disclaimer-box ul {
  margin: 8px 0 12px 20px;
}
.disclaimer-box ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 4px;
}

.disclaimer-box strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--text);
}

.policy-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}
.policy-section p:last-child { margin-bottom: 0; }

.policy-section a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-section a:hover { opacity: 0.8; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .app-card-inner { flex-direction: column; }
  .app-icon { width: 60px; height: 60px; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }
}
