/* ── Davay Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --ink: #0D0D0D;
  --accent: #E8303A;
  --gold: #D4A574;
  --surface: #F5F5F5;
  --hairline: #E8E8E8;
  --soft: #6E6E6E;
  --faint: #B0B0B0;
  --bg: #FFFFFF;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { width: 34px; height: 34px; border-radius: 8px; }
.nav-brand span { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--soft);
  text-decoration: none; padding: 6px 12px; border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

/* FOOTER */
footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 24px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 16px; }
.footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.footer-brand span { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
footer p { font-size: 12px; color: var(--faint); }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none; transition: opacity .15s, transform .1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { opacity: 0.85; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--hairline); }
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 17px; border-radius: 14px; }

/* PHONE MOCKUP */
.phone-wrap {
  position: relative; display: inline-block;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.18));
}
.phone-wrap img {
  width: 240px; border-radius: 36px;
  border: 3px solid rgba(0,0,0,0.08);
  display: block;
}
.phone-wrap.sm img { width: 180px; border-radius: 28px; }

/* PILL BADGE */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--soft);
  letter-spacing: 0.3px;
}

/* SECTION SPACING */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* HEADINGS */
.label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--soft); text-transform: uppercase; margin-bottom: 12px;
}
h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.8px; line-height: 1.1; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }
p.lead { font-size: 17px; color: var(--soft); line-height: 1.7; }

/* DIVIDER */
hr { border: none; border-top: 1px solid var(--hairline); }

/* UTILS */
.text-center { text-align: center; }
.text-soft { color: var(--soft); }
.accent { color: var(--accent); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }

/* PROSE (policy pages) */
.prose h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; }
.prose h3 { font-size: 17px; font-weight: 600; margin: 28px 0 8px; }
.prose p { color: var(--soft); margin-bottom: 14px; font-size: 15px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 14px; }
.prose li { color: var(--soft); font-size: 15px; line-height: 1.75; margin-bottom: 4px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); }
.prose .update-date {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 8px; padding: 8px 14px; font-size: 13px;
  color: var(--soft); margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links a { font-size: 12px; padding: 5px 8px; }
  .section { padding: 64px 0; }
  .container, .container-sm { padding: 0 16px; }
}
