/* QuickBooks Timesheet Sync for Jira & Tempo — landing.
 *
 * Rebuilt 2026-08-21 [T-24]. The previous page was a dark-accent one-off; this
 * one adopts the house shape shared by onenote.crosstowntech.com and
 * msplannertojira.com — white nav, two-column hero with a real product shot,
 * 3-up features, alternating screenshot rows, one coloured CTA, dark footer.
 *
 * Light on purpose: this sells a Jira app, and Atlassian's surfaces are light
 * by default. The /planner landing is dark and stays dark; it is not the model
 * for the Marketplace apps.
 *
 * Brand violet comes from the app mark (icon-1024.png — the ring, which runs
 * magenta through violet to periwinkle). The QuickBooks-ish green is NOT in the
 * mark; it is reserved for "billed / money is safe" states. The green is a
 * semantic colour here, not decoration — don't spend it on ordinary UI.
 *
 * Shared by index.html, privacy.html and terms.html so the legal pages the
 * Marketplace and Intuit link to don't look like a different product.
 */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --text: #172b4d;          /* Atlassian-ish ink, warmer than pure black */
  --text-muted: #5e6c84;
  --text-faint: #8993a4;
  --border: #ebecf0;
  --border-strong: #dfe1e6;

  --brand: #5b3fe0;          /* a deeper cousin of the mark's violet, for AA text/buttons */
  --brand-hover: #4c33c4;
  --brand-soft: #eeeafc;

  --money: #2aa46a;          /* billed, invoiced, protected */
  --money-soft: #e6f5ee;
  --info: #0c66e4;
  --warn-soft: #fff7e6;
  --warn-ink: #974f0c;

  --dark: #172033;
  --max-w: 1100px;

  --font-ui: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", ui-monospace, "Menlo", "Consolas", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

/* ─────────────────────────────── Nav ─────────────────────────────── */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.nav-brand .sub { color: var(--text-faint); font-weight: 400; }
.nav-links { display: inline-flex; align-items: center; gap: 22px; font-size: 14px; color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }

@media (max-width: 720px) {
  .nav-brand .sub { display: none; }
  .nav-links a:not(.btn) { display: none; }
}

/* ────────────────────────────── Buttons ──────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
  white-space: nowrap;
}
.btn-lg { padding: 12px 22px; font-size: 15px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--bg-soft); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: var(--brand-soft); }

/* ─────────────────────────────── Hero ────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding: 64px 24px 84px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 18px;
  /* Without this the headline breaks "copy-paste." across two lines. */
  text-wrap: balance;
  hyphens: none;
}
.hero .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 520px;
}
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--text-faint); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 44px 24px 60px; }
  .hero h1 { font-size: 34px; }
  .hero .lead { font-size: 16px; max-width: none; }
}

/* ──────────────────────── Product screenshots ────────────────────── */

/* One treatment for every product shot on the page. The shots are 2240×1096
   (2× of the Marketplace's 1120×548), so they downsample crisply at any width
   the grid gives them. */
.shot {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 43, 77, .10), 0 0 0 1px rgba(23, 43, 77, .07);
}
.shot img { display: block; width: 100%; height: auto; }

/* ───────────────────────────── Sections ──────────────────────────── */

.band { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section { max-width: var(--max-w); margin: 0 auto; padding: 60px 24px; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.section-head p { font-size: 16.5px; color: var(--text-muted); margin: 0; }

@media (max-width: 900px) {
  .section { padding: 46px 24px; }
  .section-head h2 { font-size: 25px; }
}

/* ───────────────────────────── Features ──────────────────────────── */

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

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon.money { background: var(--money-soft); color: var(--money); }
.feature h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ──────────────────────── Alternating shot rows ──────────────────── */

.step {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
  padding: 36px 0;
}
.step + .step { border-top: 1px solid var(--border); }
.step.flip .step-copy { order: 2; }
.step.flip .shot { order: 1; }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 99px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 13px; font-weight: 700;
  margin-bottom: 14px;
}
.step-copy h3 { font-size: 21px; font-weight: 650; letter-spacing: -0.015em; margin: 0 0 10px; }
.step-copy p { font-size: 15.5px; color: var(--text-muted); margin: 0 0 12px; }
.step-copy p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .step { grid-template-columns: 1fr; gap: 28px; padding: 30px 0; }
  .step.flip .step-copy { order: 0; }
  .step.flip .shot { order: 0; }
}

/* ───────────────────────────── Versus ────────────────────────────── */

.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .versus { grid-template-columns: 1fr; } }

.vcol {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 26px 26px 8px;
}
.vcol.win { border-color: var(--brand); box-shadow: 0 8px 26px rgba(91, 63, 224, .10); }
.vcol h3 { font-size: 16px; font-weight: 650; margin: 0 0 16px; }
.vlist { list-style: none; margin: 0; padding: 0; }
.vlist li {
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 0 0 16px 26px;
  position: relative;
}
.vlist li b { display: block; color: var(--text); font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.vlist li::before {
  position: absolute; left: 0; top: 1px;
  font-size: 13px; font-weight: 700;
}
.vlist.neg li::before { content: "✕"; color: #c9372c; }
.vlist.pos li::before { content: "✓"; color: var(--money); }

/* ────────────────────── The billed-lock callout ──────────────────── */

.locked { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .locked { grid-template-columns: 1fr; gap: 30px; } }

.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--money-soft); color: #1b7a4d;
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 16px;
}
.locked-copy h2 {
  font-size: 30px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 0 14px;
}
.locked-copy p { font-size: 16.5px; color: var(--text-muted); margin: 0 0 14px; }
.locked-copy p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .locked-copy h2 { font-size: 25px; } }

/* ─────────────────────────────── FAQ ─────────────────────────────── */

.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--text-faint);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq .ans { font-size: 15px; color: var(--text-muted); margin: 12px 0 0; }

/* ─────────────────────────────── CTA ─────────────────────────────── */

.cta { background: var(--brand); color: #fff; padding: 64px 0; text-align: center; }
.cta h2 {
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2;
  margin: 0 auto 12px; max-width: 640px;
}
.cta p { color: rgba(255,255,255,.82); margin: 0 auto 28px; max-width: 560px; font-size: 16px; }
.cta .cta-row { justify-content: center; }
@media (max-width: 768px) { .cta { padding: 54px 0; } .cta h2 { font-size: 24px; } }

/* ───────────────────────────── Footer ────────────────────────────── */

.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 28px 0; font-size: 13px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-links { display: inline-flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: #fff; }

/* ────────────────────────── Legal pages ──────────────────────────── */

/* privacy.html / terms.html share this sheet so the pages the Marketplace and
   Intuit link to read as the same product. */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal h2 { font-size: 19px; font-weight: 650; margin: 40px 0 10px; letter-spacing: -0.01em; }
.legal h3 { font-size: 16px; font-weight: 600; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text-muted); font-size: 15.5px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
.legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal th { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); }
.legal .updated { font-size: 14px; color: var(--text-faint); margin-bottom: 32px; }
