/* WpNewblog landing – full width, modern, conversion-focused */

:root {
  --bg: #0b1220;
  --bg-soft: #111827;
  --surface: #ffffff;
  --surface-2: #f4f6fb;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #94a3b8;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #dbeafe;
  --accent: #06b6d4;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --max: 1160px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
code {
  font-size: 0.9em;
  background: var(--surface-2);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow { width: min(100% - 2rem, 760px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.logo-mark.sm { width: 32px; height: 32px; font-size: 0.9rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
}

.nav a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.7rem 1.25rem;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(37,99,235,0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(6,182,212,0.1), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.75rem;
}

.eyebrow.light { color: #93c5fd; }

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(15,23,42,0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.hero-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.img-placeholder {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
  padding: 2rem;
  font-size: 0.95rem;
}

/* Trust */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--surface-2);
  padding: 1.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt { background: var(--surface-2); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.section-sub {
  margin: 0;
  color: var(--text-soft);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

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

.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.step-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.step h3 { margin: 0 0 0.5rem; }
.step p { margin: 0; color: var(--text-soft); }

/* Screenshots */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.shot-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e8eef7;
  overflow: hidden;
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-fallback {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  background: repeating-linear-gradient(
    -45deg,
    #eef2ff,
    #eef2ff 12px,
    #e0e7ff 12px,
    #e0e7ff 24px
  );
}

.shot-frame.missing .shot-fallback { display: grid; }
.shot-frame.missing img { display: none; }

.shot-card figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.shot-card figcaption strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.audience-card h3 { margin: 0 0 0.5rem; }
.audience-card p { margin: 0; color: var(--text-soft); }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.9rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 700;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

/* Download */
.download-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(160deg, #0b1220 0%, #1e3a5f 55%, #0f2744 100%);
  color: #fff;
}

.download-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
}

.download-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.download-copy > p {
  color: #cbd5e1;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.download-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
}

.checklist li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: #fff;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  font-size: 0.9rem;
}

.footer-links a:hover { color: #fff; }

.copyright {
  margin: 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .shot-grid,
  .audience-grid,
  .steps,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.5rem;
  }

  .nav.open { display: flex; }

  .nav a { padding: 0.6rem 0.75rem; border-radius: 8px; }
  .nav a:hover { background: var(--surface-2); }
  .nav-cta { text-align: center; }

  .nav-toggle { display: flex; }

  .feature-grid,
  .shot-grid,
  .audience-grid,
  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 2.5rem; }
  .section { padding: 3.5rem 0; }
  .download-card { padding: 1.5rem; }
}
