/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e0f;
  --bg-2: #161618;
  --bg-3: #1d1d20;
  --fg: #f0ede8;
  --fg-muted: #8a8880;
  --accent: #c8973e;
  --accent-dim: #9a7230;
  --surface: #1a1a1d;
  --border: #2a2a2e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,14,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 120px 2rem 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--fg-muted); margin-top: 0.25rem; letter-spacing: 0.04em; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* App grid visual */
.hero-grid-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.app-tile {
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.app-tile:hover { border-color: var(--accent); }

.app-tile-1 { background: #1e1c17; color: #c8973e; }
.app-tile-2 { background: #17171a; color: #a0a09a; }
.app-tile-3 { background: #17171a; color: #a0a09a; }
.app-tile-4 { background: #1a1e17; color: #7a9e6a; }
.app-tile-5 { background: #1a1a1d; color: #8880; }
.app-tile-6 { background: #17171a; color: #a0a09a; }
.app-tile-7 { background: #1e1c17; color: #c8973e; border-color: var(--accent-dim); }
.app-tile-8 { background: #17171a; color: #a0a09a; }
.app-tile-9 { background: #17171a; color: #a0a09a; }

/* === PAIN === */
.pain { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }

.pain-badge { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }

.pain-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 3rem;
}

.pain-list { display: flex; flex-direction: column; gap: 1.25rem; max-width: 600px; margin-bottom: 2.5rem; }

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pain-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2a1a1a;
  color: #e05c5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pain-item strong { color: var(--fg); }

.pain-closing {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

/* === APPS GRID === */
.apps { background: var(--bg); }
.apps-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }

.apps-badge { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }

.apps-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 3rem;
}

.app-categories { display: flex; flex-direction: column; gap: 2rem; }

.app-cat { display: flex; flex-direction: column; gap: 0.75rem; }

.app-cat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.app-cat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.pill {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === DIFFERENTIATION === */
.diff { background: var(--bg-2); border-top: 1px solid var(--border); }
.diff-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }

.diff-badge { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }

.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 3rem;
}

.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.diff-card-icon { color: var(--accent); margin-bottom: 1.25rem; }

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.diff-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

/* === HEALTHCARE === */
.healthcare { background: var(--bg); border-top: 1px solid var(--border); }
.healthcare-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }

.healthcare-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.healthcare-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.healthcare-body { font-size: 1rem; color: var(--fg-muted); max-width: 600px; line-height: 1.7; margin-bottom: 2.5rem; }

.healthcare-proof { display: flex; flex-direction: column; gap: 1.25rem; max-width: 540px; }

.proof-item { display: flex; flex-direction: column; gap: 0.25rem; }
.proof-item strong { font-size: 0.9rem; color: var(--fg); font-weight: 500; }
.proof-item span { font-size: 0.8rem; color: var(--fg-muted); }

/* === CLOSING === */
.closing { background: var(--bg-2); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; text-align: center; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.closing-body { font-size: 1.05rem; color: var(--fg-muted); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; }

.closing-footnote { font-size: 0.78rem; color: #4a4a4a; letter-spacing: 0.04em; }

/* === FOOTER === */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }

.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--fg); display: block; }
.footer-tagline { font-size: 0.75rem; color: var(--fg-muted); display: block; margin-top: 0.25rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.footer-links span { font-size: 0.75rem; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 100px; }
  .hero-grid-visual { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 1.25rem 60px; }
  .hero-inner { padding: 0; }
  .pain-inner, .apps-inner, .diff-inner, .healthcare-inner, .closing-inner { padding: 4rem 1.25rem; }
  .hero-stats { gap: 1rem; }
}