/* Easy Reporting for Jira - easyreporting.co.uk
 *
 * One page, no build step, no external requests. The app it sells cannot call
 * an outside address, so neither does this site: no font CDN, no analytics, no
 * embeds. Everything here is served from this origin.
 *
 * Colour. One accent, the indigo the product uses for its own primary buttons.
 * The three shelf hues stay inside the product screenshots where they mean
 * something. Neutrals are the cool greys from the app's own stylesheet, which
 * were contrast-measured there.
 *
 * Shape. Two radii and no more: 12px on surfaces and figures, 8px on controls.
 *
 * Type. The same system stack the app uses. A downloaded typeface would be an
 * outside request, and matching the product beats matching a trend.
 */

:root {
  --bg: #ffffff;
  --surface: #f1f5f8;
  --ink: #14171c;
  --ink-2: #454d5a;
  --ink-3: #5e6874;
  --line: #dfe5ea;
  --line-strong: #c0c7cf;

  --accent: #4740d4;
  --accent-ink: #ffffff;
  --accent-soft: #eeedfc;

  /* The one dark moment on the page. It is the privacy claim, and it is the
     only section that inverts. */
  --band: #14171c;
  --band-ink: #eef2f7;
  --band-ink-2: #aab4c2;
  --band-line: #2e3742;
  --band-accent: #9aa1fb;

  /* A screenshot of a light interface keeps its own light frame in both
     themes, so the picture never fights the page around it. */
  --frame: #ffffff;
  --frame-line: #c9d2da;

  --r: 12px;
  --r-sm: 8px;
  --gutter: clamp(20px, 5vw, 48px);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #181c22;
    --surface: #1f242c;
    --ink: #dde3eb;
    --ink-2: #aab4c2;
    --ink-3: #8d97a5;
    --line: #333b47;
    --line-strong: #414a57;

    --accent: #9aa1fb;
    --accent-ink: #12141d;
    --accent-soft: #282c4a;

    --band: #10141a;
    --band-ink: #dde3eb;
    --band-ink-2: #aab4c2;
    --band-line: #2b333d;
    --band-accent: #9aa1fb;

    --frame-line: #414a57;
  }
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.022em; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; }

::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0; z-index: 10;
}
.skip:focus { left: 0; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.lede { font-size: 1.19rem; line-height: 1.55; color: var(--ink-2); }
.body { color: var(--ink-2); max-width: 62ch; }
.body + .body { margin-top: 1.1em; }

/* ---------- header ---------- */

.head {
  position: sticky; top: 0; z-index: 5;
  height: 68px;
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(1px)) { .head { background: var(--bg); } }

.head .wrap { display: flex; align-items: center; gap: 28px; width: 100%; }

.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink);
}
.brand svg { color: var(--accent); flex: none; }

.navlinks { display: flex; gap: 26px; margin-left: auto; font-size: 0.95rem; }
.navlinks a {
  color: var(--ink-2); text-decoration: none;
  transition: color 0.16s ease;
}
.navlinks a:hover { color: var(--ink); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
  font: inherit; font-weight: 600; font-size: 0.97rem;
  padding: 11px 20px; border-radius: var(--r-sm);
  text-decoration: none; border: 1px solid transparent;
  transition: transform 0.12s ease, background-color 0.16s ease, border-color 0.16s ease;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 88%, var(--ink)); }
.btn-quiet { color: var(--ink); border-color: var(--line-strong); }
.btn-quiet:hover { border-color: var(--ink-3); background: var(--surface); }
.btn:active { transform: translateY(1px); }
.head .btn { padding: 9px 16px; }

/* ---------- hero ---------- */

.hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 96px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: clamp(32px, 5vw, 60px); align-items: center; }

.hero h1 {
  font-size: clamp(2rem, 1rem + 2.8vw, 3.05rem);
  max-width: 27ch;
}
.hero .lede { margin-top: 22px; max-width: 44ch; }
.hero .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* The screenshot runs off the right edge so the interface can be shown at a
   size where its words are readable. */
.hero-shot { position: relative; }
.hero-shot img {
  display: block;
  /* Fixed height so the hero still fits a laptop screen. The crop takes the
     bottom rows off the table, never the left edge where the reading starts. */
  width: 1180px; max-width: none;
  height: min(58vh, 560px); object-fit: cover; object-position: left top;
  border-radius: var(--r);
  border: 1px solid var(--frame-line);
  background: var(--frame);
  box-shadow: 0 24px 60px -30px rgba(20, 23, 28, 0.4);
}

/* ---------- the dark band ---------- */

.band {
  background: var(--band); color: var(--band-ink);
  padding-block: clamp(64px, 8vw, 104px);
}
.band h2 { font-size: clamp(1.9rem, 1.1rem + 2.4vw, 3rem); max-width: 18ch; }
.band .body { color: var(--band-ink-2); margin-top: 24px; max-width: 60ch; }

.facts {
  margin: clamp(44px, 6vw, 68px) 0 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 5vw, 72px);
}
.facts div { border-top: 1px solid var(--band-line); padding: 24px 0; }
.facts dt { font-weight: 600; font-size: 1.02rem; }
.facts dd { margin: 8px 0 0; color: var(--band-ink-2); font-size: 0.98rem; }

/* ---------- sections ---------- */

.sec { padding-block: clamp(64px, 9vw, 116px); }
.sec h2 { font-size: clamp(1.7rem, 1.1rem + 1.9vw, 2.6rem); max-width: 17ch; }
.sec .lede { margin-top: 20px; max-width: 54ch; }

.split .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.split .body { margin-top: 20px; }

.shot img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r);
  border: 1px solid var(--frame-line);
  background: var(--frame);
}

.stack .head-block { max-width: 46ch; }
.stack .shot { margin-top: clamp(36px, 5vw, 56px); }

.saidback {
  margin: clamp(32px, 4vw, 44px) 0 0;
  padding: 22px 26px;
  background: var(--accent-soft);
  border-radius: var(--r);
  color: var(--ink);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.32rem);
  line-height: 1.5;
  max-width: 40ch;
}
.saidback span { display: block; margin-top: 12px; font-size: 0.87rem; color: var(--ink-3); line-height: 1.5; }

/* two columns of prose, one hairline between them */
.pair .wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 6vw, 72px); }
.pair .col + .col { border-left: 1px solid var(--line); padding-left: clamp(36px, 6vw, 72px); }
.pair h2 { font-size: clamp(1.45rem, 1.1rem + 1.1vw, 2rem); max-width: 20ch; }
.pair .body { margin-top: 18px; }

blockquote {
  margin: 26px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  font-size: 1.1rem; line-height: 1.5;
  color: var(--ink);
  max-width: 34ch;
}

/* ---------- pricing ---------- */

.pricing { background: var(--surface); }
.pricing .grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 72px); align-items: start; margin-top: clamp(36px, 5vw, 52px); }

table { width: 100%; border-collapse: collapse; font-size: 1rem; }
caption { text-align: left; font-weight: 600; padding-bottom: 12px; }
th, td { text-align: left; padding: 13px 8px; border-bottom: 1px solid var(--line); }
th { font-weight: 600; font-size: 0.83rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
td + td, th + th { text-align: right; font-variant-numeric: tabular-nums; }
tbody tr:last-child td { border-bottom: 0; }

.examples { display: grid; gap: 18px; }
.example {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.example b { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.example span { color: var(--ink-3); font-size: 0.95rem; }
.pricing .note { margin-top: 28px; color: var(--ink-3); font-size: 0.95rem; max-width: 58ch; }

/* ---------- questions ---------- */

.qa { margin-top: clamp(32px, 4vw, 48px); max-width: 800px; }
.qa details { border-top: 1px solid var(--line); }
.qa details:last-of-type { border-bottom: 1px solid var(--line); }
.qa summary {
  cursor: pointer; list-style: none;
  padding: 20px 40px 20px 0; position: relative;
  font-weight: 600; font-size: 1.05rem;
  transition: color 0.16s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--accent); }
.qa summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transform-origin: center;
  transition: transform 0.18s ease;
}
.qa details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.qa .answer { padding: 0 0 24px; color: var(--ink-2); max-width: 66ch; }
.qa .answer p + p { margin-top: 1em; }

/* ---------- closing ---------- */

.close { padding-block: clamp(72px, 10vw, 128px); text-align: left; }
.close h2 { font-size: clamp(1.9rem, 1.2rem + 2.2vw, 3rem); max-width: 21ch; }
.close .lede { margin-top: 20px; max-width: 46ch; }
.close .actions { margin-top: 34px; }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); padding-block: 40px; color: var(--ink-3); font-size: 0.92rem; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; }
.foot .brand { font-size: 0.95rem; color: var(--ink-2); }
.foot p { margin-left: auto; }

/* ---------- narrow ---------- */

@media (max-width: 900px) {
  body { font-size: 16px; }
  .navlinks { display: none; }
  .head .wrap { gap: 16px; }
  .head .btn { margin-left: auto; }

  .hero .wrap,
  .split .wrap,
  .pair .wrap,
  .pricing .grid { grid-template-columns: minmax(0, 1fr); }

  .hero h1 { max-width: 18ch; }
  .hero-shot img { width: 100%; height: auto; object-fit: fill; }

  .pair .col + .col { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: clamp(32px, 6vw, 48px); }

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

  .foot p { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- contact ---------- */

.contact { background: var(--surface); }
.contact .wrap { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact .body { margin-top: 20px; }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 0.93rem; }
.field .opt { font-weight: 400; color: var(--ink-3); }

input[type="text"], input[type="email"], textarea {
  font: inherit; font-size: 1rem;
  color: var(--ink); background: var(--bg);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 11px 13px; width: 100%;
  transition: border-color 0.16s ease;
}
textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
input:hover, textarea:hover { border-color: var(--ink-3); }
input:focus-visible, textarea:focus-visible { border-color: var(--accent); outline-offset: 1px; }

.field .err { font-size: 0.88rem; color: #a8231c; }
@media (prefers-color-scheme: dark) { .field .err { color: #f2958c; } }
.field.bad input, .field.bad textarea { border-color: #a8231c; }
@media (prefers-color-scheme: dark) { .field.bad input, .field.bad textarea { border-color: #f2958c; } }

/* Off screen, not display:none. A person never reaches these. */
.trap {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.formfoot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form .status { font-size: 0.95rem; color: var(--ink-2); }
.form .status.good { color: var(--accent); font-weight: 600; }
.form .status.bad { color: #a8231c; }
@media (prefers-color-scheme: dark) { .form .status.bad { color: #f2958c; } }
.form button[aria-busy="true"] { opacity: 0.75; }
.form .note { font-size: 0.88rem; color: var(--ink-3); max-width: 46ch; }

.footlinks { display: flex; gap: 24px; flex-wrap: wrap; }
.footlinks a { color: var(--ink-2); text-decoration: none; transition: color 0.16s ease; }
.footlinks a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- document pages (privacy, security, form replies) ---------- */

.doc { padding-block: clamp(44px, 6vw, 72px) clamp(64px, 9vw, 104px); }
.doc .wrap { max-width: 760px; }
.doc h1 { font-size: clamp(1.9rem, 1.3rem + 2vw, 2.7rem); }
.doc h2 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.65rem); margin-top: 2.4em; }
.doc h3 { font-size: 1.1rem; margin-top: 2em; }
.doc p, .doc ul, .doc ol, .doc table { margin-top: 1.05em; color: var(--ink-2); }
.doc h1 + p { margin-top: 1.4em; }
.doc li { margin-top: 0.5em; }
.doc ul, .doc ol { padding-left: 1.3em; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc a { color: var(--accent); }
.doc hr { border: 0; border-top: 1px solid var(--line); margin: 3em 0; }
.doc code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.9em; background: var(--surface); padding: 1px 5px; border-radius: 4px; }
.doc table { width: 100%; font-size: 0.96rem; }
.doc td, .doc th { vertical-align: top; }
.doc .tablewrap { overflow-x: auto; margin-top: 1.4em; }

.doc blockquote {
  margin: 1.6em 0 0; padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft); border-radius: 0 var(--r) var(--r) 0;
  color: var(--ink); font-size: 1rem; max-width: none;
}
.doc blockquote h2, .doc blockquote h3 { margin-top: 0; font-size: 1.05rem; }
.doc blockquote p { color: var(--ink); }

.docnav { padding-top: 28px; font-size: 0.95rem; }
.docnav a { color: var(--ink-3); text-decoration: none; }
.docnav a:hover { color: var(--ink); }

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

/* The support form sits in the document shell, where prose spacing applies to
   everything else and would leave the first label crowding the paragraph. */
.doc .form { margin-top: 2em; }
.doc .form .note { margin-top: 0; }
