/* assets/style.css — Voice Minder marketing site (app theme aligned) */

:root {
  /* Brand oranges */
  --brand: #ff7a00; /* brand_orange */
  --brand-dark: #e86a00; /* brand_orange_dark */
  --brand-on: #ffffff; /* brand_on_orange */

  /* Surface tones */
  --surface: #1b1c1e; /* vm_surface */
  --on-surface: #f5f5f5; /* vm_on_surface */
  --outline: #2c2c2c; /* vm_outline */

  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --bg: #121212;
  --muted: #a6a6a6;
}

@media (prefers-color-scheme: light) {
  :root {
    --brand: #ff7a00;
    --brand-dark: #e86a00;
    --brand-on: #ffffff;

    --surface: #ffffff;
    --on-surface: #1a1a1a;
    --outline: #ddd;
    --bg: #fafafa;
    --muted: #555;
  }
}

* { box-sizing: border-box; }
html, body {
  padding: 0;
  margin: 0;
  background: var(--bg);
  color: var(--on-surface);
  font-family: "Inter", "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

/* Layout containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

/* Top navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--on-surface);
  text-decoration: none;
  font-size: 1.2rem;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 0 0 6px rgba(255,122,0,0.25);
}

.nav a.link {
  color: var(--on-surface);
  text-decoration: none;
  opacity: 0.9;
  padding: 8px 12px;
  border-radius: 12px;
}
.nav a.link:hover {
  background: rgba(255,122,0,0.15);
}

/* Hero section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}

.h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 10px 0;
  letter-spacing: -0.3px;
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  margin-bottom: 18px;
}

/* Buttons */
.ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--brand-on);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.9; }
.btn.alt {
  background: none;
  color: var(--on-surface);
  border: 1px solid rgba(255,122,0,0.4);
}

/* Sections and cards */
.section {
  padding: 42px 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* Mock screenshot */
.mock {
  display: grid;
  place-items: center;
}
.mock img {
  width: min(100%, 420px);
  border-radius: 28px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--outline);
  margin-top: 40px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

/* Helpers */
.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255,122,0,0.15);
  color: var(--on-surface);
  padding: 2px 6px;
  border-radius: 6px;
}

.store-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--on-surface);
  font-weight: 700;
}
.badge svg { width: 18px; height: 18px; }
