/* Shared styles for SMB Wi‑Fi Analyzer landing pages */

:root {
  /* Overall: deep neutral charcoal so the warm beige device pops */
  --bg-gradient: radial-gradient(circle at top left, #050816 0, #020617 50%, #020617 100%);

  /* Accents echo the green/blue from the scope in the screenshot */
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
  --accent-strong: #0ea5e9;

  --text: #e5e7eb;
  --text-muted: #9ca3af;

  /* Card: subtle dark-slate panel, not brass, so the beige app window is the only warm element */
  --card-bg: radial-gradient(circle at top left, #111827 0, #020617 60%);
  --border-subtle: rgba(148, 163, 184, 0.28);
  --radius-lg: 18px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.9);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", sans-serif;
  color: var(--text);
  background: var(--bg-gradient);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.page-shell {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo-image-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.8);
}

.site-logo-image {
  width: 100%;
  height: 100%;
  display: block;
}

.site-title-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.site-nav {
  display: flex;
  gap: 14px;
  font-size: 14px;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.site-nav a.active,
.site-nav a:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  text-decoration: none;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.hero-title {
  font-size: clamp(30px, 3vw, 34px);
  line-height: 1.1;
  margin: 16px 0 10px;
  color: #f9fafb;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 34rem;
}

.hero-metadata {
  list-style: none;
  padding: 0;
  margin: 18px 0 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-metadata li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-metadata-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.app-store-button {
  display: inline-block;
  padding: 0;
  border-radius: 12px;
  border: none;
  background: none;
  text-decoration: none;
  box-shadow: none;
}

.app-store-badge {
  display: block;
  height: 40px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-note a {
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-screenshot-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.hero-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-visual-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  margin-top: 26px;
}

.section-title {
  font-size: 16px;
  margin: 0 0 8px;
}

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

.section-text ul {
  padding-left: 18px;
  margin: 8px 0 0;
}

.section-text li {
  margin-bottom: 4px;
}

.meta-list {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
}

.meta-list li {
  margin-bottom: 4px;
}

.footer {
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.footer a {
  color: var(--accent);
}

/* Content pages (privacy / imprint) */

.content-card {
  max-width: 780px;
}

.content-card h1 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 8px;
}

.content-card h2 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 6px;
}

.content-card h3 {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.content-card p,
.content-card li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
}

.content-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.content-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-strong);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 18px 14px 32px;
  }

  .card {
    padding: 20px 18px 18px;
  }

  .hero-title {
    font-size: 26px;
  }

  .columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-store-button {
    width: 100%;
    justify-content: center;
  }
}
