/* =============================================================================
   TelePrompter Pro - shared site styles
   Clean, professional, light. Inspired by Microsoft / Stripe documentation sites.
   No gradients-as-background, no glow, no neon, no emoji.
============================================================================= */

:root {
  --accent:        #005FB8;   /* Windows accent blue - matches the app */
  --accent-dark:   #004C93;
  --accent-light:  #E8F1FB;
  --ink:           #16181D;   /* near-black headings */
  --body:          #3C4149;   /* body text */
  --muted:         #6B7280;   /* secondary text */
  --line:          #E6E8EC;   /* borders */
  --surface:       #F7F8FA;   /* light surface */
  --surface-2:     #FBFCFD;
  --white:         #FFFFFF;
  --success:       #107C10;
  --warning:       #9A6700;
  --danger:        #C42B1C;
  --radius:        10px;
  --radius-sm:     7px;
  --maxw:          1080px;
  --shadow-sm:     0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.06);
  --shadow-md:     0 4px 12px rgba(16,24,40,.06), 0 2px 4px rgba(16,24,40,.04);
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Inter", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }

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

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: #fff; color: var(--ink); border-color: #D0D5DD; }
.btn-secondary:hover { background: var(--surface); }
.btn-lg { font-size: 16px; padding: 13px 26px; }
.btn-ghost { background: transparent; color: var(--accent); padding: 11px 14px; }
.btn-ghost:hover { background: var(--accent-light); text-decoration: none; }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.brand-name { color: var(--ink); font-weight: 700; font-size: 17px; }
.brand-name span { color: var(--muted); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--body); font-weight: 500; font-size: 15px;
  padding: 8px 12px; border-radius: 6px;
}
.nav a:hover { background: var(--surface); color: var(--ink); text-decoration: none; }
.nav a.active { color: var(--accent); }
.nav .btn { margin-left: 8px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav .nav-links { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { padding: 80px 0 64px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: var(--accent-light); border: 1px solid #CFE3F7;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.hero h1 { font-size: 46px; line-height: 1.08; margin-bottom: 18px; max-width: 14ch; }
.hero p.lead { font-size: 19px; color: var(--body); max-width: 56ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 14px; color: var(--muted); margin-top: 14px; }
@media (max-width: 720px) { .hero h1 { font-size: 34px; } }

/* ── Sections ─────────────────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head .kicker { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-head h2 { font-size: 32px; margin-bottom: 12px; }
.section-head p { font-size: 17px; color: var(--muted); }

/* ── Page header (interior pages) ─────────────────────────────────────── */
.page-head { padding: 56px 0 40px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.page-head h1 { font-size: 36px; margin-bottom: 10px; }
.page-head p { font-size: 18px; color: var(--muted); max-width: 60ch; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }

/* ── Cards / grids ────────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.card .icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--muted); }

/* ── Feature split rows ───────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split + .split { margin-top: 64px; }
.split.reverse .split-media { order: 2; }
.split-media {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); min-height: 280px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.split h3 { font-size: 24px; margin-bottom: 12px; }
.split p { font-size: 16px; color: var(--body); margin-bottom: 14px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 24px; } .split.reverse .split-media { order: 0; } }

/* ── Lists ────────────────────────────────────────────────────────────── */
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: 16px; color: var(--body); }
.check-list .tick { color: var(--success); flex: 0 0 auto; margin-top: 2px; }

/* ── App window mock ──────────────────────────────────────────────────── */
.appshot {
  width: 100%; max-width: 760px; margin: 36px auto 0;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); background: #0c0c14;
}
.appshot .titlebar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px; background: #16161f; border-bottom: 1px solid #23232f;
}
.appshot .titlebar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.appshot .titlebar .r { background: #ff5f57; } .appshot .titlebar .y { background: #febc2e; } .appshot .titlebar .g { background: #28c840; }
.appshot .titlebar span { color: #6b7280; font-size: 12px; margin-left: 8px; }
.appshot .body { padding: 28px 30px; color: #e5e7eb; }
.appshot .body .line { height: 14px; border-radius: 4px; background: #2a2a38; margin-bottom: 14px; }
.appshot .body .line.w1 { width: 92%; } .appshot .body .line.w2 { width: 78%; } .appshot .body .line.w3 { width: 64%; opacity:.6; }
.appshot .controls { display: flex; gap: 8px; padding: 12px 16px; background: #101019; border-top: 1px solid #23232f; }
.appshot .controls b { width: 30px; height: 30px; border-radius: 6px; background: #20202c; }
.appshot .controls b.accent { background: var(--accent); }

/* ── Pricing ──────────────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.price-card .tier { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.price-card .amount { font-size: 44px; font-weight: 800; color: var(--ink); margin: 12px 0 2px; }
.price-card .amount .was { font-size: 18px; color: var(--muted); text-decoration: line-through; font-weight: 500; margin-left: 8px; }
.price-card .per { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price-card ul { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.price-card li { display: flex; gap: 10px; font-size: 15px; }
.price-card li .tick { color: var(--success); flex: 0 0 auto; }
.badge-pop { display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent); background: var(--accent-light); padding: 3px 10px; border-radius: 100px; margin-left: 10px; }

/* ── Tables ───────────────────────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { padding: 14px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.table th { background: var(--surface); color: var(--ink); font-weight: 600; }
.table td.center, .table th.center { text-align: center; }
.table tr:last-child td { border-bottom: none; }
.yes { color: var(--success); font-weight: 600; }
.no { color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--font); }
.faq-q:hover { color: var(--accent); }
.faq-q .chev { transition: transform .2s; color: var(--muted); flex: 0 0 auto; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding-bottom: 20px; color: var(--body); font-size: 16px; }

/* ── Prose (legal pages) ──────────────────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; padding: 48px 24px 72px; }
.prose h2 { font-size: 22px; margin: 36px 0 12px; }
.prose h3 { font-size: 18px; margin: 24px 0 8px; }
.prose p, .prose li { font-size: 16px; color: var(--body); margin-bottom: 12px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

/* ── CTA band ─────────────────────────────────────────────────────────── */
.cta-band { background: var(--accent); color: #fff; padding: 64px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: 30px; margin-bottom: 12px; }
.cta-band p { color: #DCEBFB; font-size: 18px; margin-bottom: 26px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #EAF2FB; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.footer-grid ul { list-style: none; display: grid; gap: 9px; }
.footer-grid a { color: var(--body); font-size: 15px; }
.footer-grid a:hover { color: var(--accent); }
.footer-about p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 30ch; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: var(--muted); }

/* ── Screenshot-led components ────────────────────────────────────────── */
.shot {
  display: block; width: 100%; height: auto;
  border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(16,24,40,.16), 0 6px 16px rgba(16,24,40,.08);
}
.hero-shot { max-width: 940px; margin: 52px auto 0; }
.hero-shot .shot { box-shadow: 0 32px 80px rgba(16,24,40,.22), 0 8px 24px rgba(16,24,40,.10); }

.showcase { padding: 88px 0; }
.showcase + .showcase { border-top: 1px solid var(--line); }
.showcase-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.showcase-row.reverse .showcase-media { order: 2; }
.showcase-eyebrow { font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 14px; }
.showcase-text h2 { font-size: 30px; line-height: 1.18; margin-bottom: 16px; }
.showcase-text p { font-size: 17px; color: var(--body); margin-bottom: 16px; }
.showcase-text .check-list { margin-top: 20px; }
.showcase-media .shot { box-shadow: 0 20px 54px rgba(16,24,40,.16), 0 5px 14px rgba(16,24,40,.07); }
@media (max-width: 880px) {
  .showcase { padding: 56px 0; }
  .showcase-row { grid-template-columns: 1fr; gap: 28px; }
  .showcase-row.reverse .showcase-media { order: 0; }
}

/* Simple closing CTA (no gradient band) */
.closing { padding: 80px 0; text-align: center; border-top: 1px solid var(--line); }
.closing h2 { font-size: 32px; margin-bottom: 12px; }
.closing p { font-size: 18px; color: var(--muted); margin-bottom: 26px; }

/* ── Utilities ────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; } .mt-24 { margin-top: 24px; } .mt-16 { margin-top: 16px; }
.muted { color: var(--muted); }
.tag-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 24px; color: var(--muted); font-size: 14px; }
.tag-row span { display: inline-flex; align-items: center; gap: 7px; }
