/* ── Victos — Notion-inspired editorial design ── */

:root {
  --bg: #ffffff;
  --bg-warm: #f6f5f4;
  --text: rgba(0,0,0,0.95);
  --text-muted: #615d59;
  --text-soft: #a39e98;
  --accent: #0075de;
  --accent-hover: #005bab;
  --border: 1px solid rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-btn: 4px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Navigation ── */

.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: var(--border);
  z-index: 100;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }

.btn-nav {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-btn);
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.btn-nav:hover { background: var(--accent-hover) !important; }

/* ── Hero ── */

.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.hero-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.875px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); }

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 64px;
}

.metric { text-align: center; }

.metric-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.6px;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 400;
}

/* ── Services ── */

.services {
  padding: 80px 0;
  background: var(--bg-warm);
}

.services h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 48px;
  max-width: 500px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: var(--border);
  transition: box-shadow 0.2s;
}
.service-item:hover {
  box-shadow:
    rgba(0,0,0,0.04) 0px 4px 18px,
    rgba(0,0,0,0.027) 0px 2.025px 7.85px,
    rgba(0,0,0,0.02) 0px 0.8px 2.93px,
    rgba(0,0,0,0.01) 0px 0.175px 1.04px;
}

.service-icon {
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.service-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── About ── */

.about {
  padding: 100px 0;
  text-align: center;
}

.about-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.2px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.about-content {
  max-width: 640px;
  margin: 0 auto;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

/* ── Contact ── */

.contact {
  padding: 60px 0 80px;
}

.contact-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  border: var(--border);
}

.contact-card h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── Footer ── */

footer {
  padding: 32px 0;
  border-top: var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.footer-brand a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}
.footer-brand a:hover { color: var(--text); }

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  margin: 0 4px;
}
.footer-links a:hover { color: var(--text-muted); }

/* ── Legal Pages ── */

.legal-page {
  padding: 60px 0 40px;
  max-width: 780px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--text);
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: left;
}

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

/* ── Responsive ── */

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 17px; }
  .hero-metrics { gap: 28px; }
  .services-list { grid-template-columns: 1fr; }
  .about h2 { font-size: 28px; }
  .contact-card { padding: 40px 24px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-metrics { flex-direction: column; gap: 20px; }
  .nav-links a { font-size: 13px; }
}
