/* ===== Sales Studio — landing page ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --ink: #0f1222;
  --ink-soft: #4a5168;
  --muted: #818aa3;
  --border: #e7e9f2;
  --accent: #2f6bff;
  --accent-hover: #1f55e0;
  --accent-soft: #eaf0ff;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 18, 34, 0.06), 0 4px 16px rgba(16, 18, 34, 0.05);
  --shadow-lg: 0 20px 60px rgba(16, 18, 34, 0.12);
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;        /* contain the hero image's edge bleed; keeps sticky nav working */
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.05s, color 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-block { display: flex; width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav .btn { margin-left: 4px; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1100px 500px at 75% -10%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg-soft));
  padding: 84px 0 72px;
}
.hero-inner { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 36px; align-items: center; }
/* Let the hero shot bleed toward the page edge so it reads bigger. */
.hero-visual { margin-right: -40px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: 50px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
.hero h1 .accent { color: var(--accent); }
.lede { font-size: 18px; color: var(--ink-soft); margin: 22px 0 30px; max-width: 30em; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* Screenshot placeholders (replace the .shot contents with <img>) */
.shot {
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-weight: 600; font-size: 14px;
  background:
    repeating-linear-gradient(45deg, #eef0f7, #eef0f7 12px, #e9ecf5 12px, #e9ecf5 24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.shot small { font-weight: 500; opacity: 0.7; }
.shot-hero { aspect-ratio: 16 / 10; box-shadow: var(--shadow-lg); }
.shot-split { aspect-ratio: 16 / 10; margin: 14px 0; }

/* A real screenshot: show it whole at its natural aspect, in a clean frame. */
img.shot {
  width: 100%;
  height: auto;
  aspect-ratio: auto;        /* override the placeholder box ratio — no cropping */
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

/* ===== Section scaffolding ===== */
section { padding: 76px 0; }
.section-title { font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; text-align: center; }
.section-sub { text-align: center; color: var(--ink-soft); font-size: 17px; margin-top: 12px; }

/* ===== Split (you vs them) ===== */
.split { background: #fff; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.split-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.split-tag { display: inline-block; font-size: 13px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.tag-you { background: var(--accent-soft); color: var(--accent); }
.tag-them { background: #e9f7ef; color: #1a9b5b; }
.split-card p { color: var(--ink-soft); font-size: 15px; }

/* ===== Features ===== */
.features { background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 15px; }

/* ===== A closer look ===== */
.closer { background: #fff; }
.closer-band { width: 100%; margin-top: 42px; }
.closer-feature { max-width: 640px; margin: 56px auto 0; }
.closer-caption { text-align: center; color: var(--ink-soft); font-size: 15px; margin-top: 16px; }
.closer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.closer-card { margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.closer-card img.shot { height: 210px; width: auto; max-width: 100%; }
.closer-card figcaption { margin-top: 14px; font-size: 14px; color: var(--ink-soft); text-align: center; }

/* ===== How it works ===== */
.how { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 44px; height: 44px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 18px;
  border-radius: 50%;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ===== Pricing ===== */
.pricing { background: #fff; }
.price-card {
  max-width: 420px; margin: 44px auto 0;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 34px 30px; box-shadow: var(--shadow-lg);
}
.price-name { font-weight: 700; font-size: 16px; color: var(--ink-soft); }
.price-amount { margin: 8px 0 4px; }
.price-num { font-size: 46px; font-weight: 800; letter-spacing: -0.02em; }
.price-per { font-size: 17px; color: var(--muted); }
.price-trial { font-size: 14px; color: var(--accent); font-weight: 600; }
.price-list { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.price-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-soft); }
.price-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}
.price-foot { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ===== FAQ ===== */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq details { border-bottom: 1px solid var(--border); padding: 18px 4px; }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 700; font-size: 20px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); font-size: 15px; margin-top: 10px; }

/* ===== Final CTA ===== */
.cta-band {
  background: linear-gradient(135deg, var(--accent), #6a4bff);
  color: #fff;
}
.cta-inner { text-align: center; }
.cta-band h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 26px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #f0f3ff; }
.cta-meta { margin-top: 16px; font-size: 14px; opacity: 0.85; }

/* ===== Footer ===== */
.footer { background: #0f1222; color: #c7cbda; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-brand { font-weight: 800; color: #fff; }
.footer-links { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.footer-links a { color: #c7cbda; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-copy { width: 100%; font-size: 13px; color: #7d839a; border-top: 1px solid #232739; padding-top: 18px; margin-top: 4px; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin-right: 0; }
  .hero h1 { font-size: 38px; }
  .nav-links { display: none; }
  .feature-grid, .steps, .split-grid, .closer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0; }
}
