/* CutNotes — one stylesheet, no framework, no build step.
   The palette is the app's own (Support/Theme.swift), so the site reads as the
   thing it is selling rather than as marketing about it. */

:root {
  --bg:        #0d0d0f;   /* Theme.background */
  --panel:     #1a1a1f;   /* Theme.panel */
  --edge:      rgba(255,255,255,0.10);
  --text:      #ebebeb;   /* Theme.text */
  --dim:       #949494;   /* Theme.dimText */
  --faint:     #616161;   /* Theme.faintText */
  --green:     #33cc6b;   /* Theme.running */
  --amber:     #f29e2e;   /* Theme.paused */

  /* Premiere Classic labels, as the app uses them. */
  --violet:    #a78bd0;
  --caribbean: #2ed79e;
  --mango:     #f0a93c;
  --rose:      #ef6e96;

  --measure: 34rem;
  --gutter: 1.5rem;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.site-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem var(--gutter);
  max-width: 62rem;
  margin: 0 auto;
}

.site-head img { width: 34px; height: 34px; border-radius: 8px; }

.site-head strong {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.site-head nav {
  margin-left: auto;
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.site-head nav a { color: var(--dim); }
.site-head nav a:hover { color: var(--text); text-decoration: none; }

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

.hero {
  padding: 3.5rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero .lede {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--dim);
  margin: 0 0 2rem;
  max-width: 30rem;
}

.hero .lede strong { color: var(--text); font-weight: 600; }

/* Timecode, set like the app sets it. */
.tc {
  font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
  font-variant-numeric: tabular-nums;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------- button */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: #08120c;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
}

.cta:hover { text-decoration: none; filter: brightness(1.08); }

.cta-note {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--faint);
}

/* ----------------------------------------------------------------- shots */

.shot {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--edge);
  display: block;
}

/* ------------------------------------------------------------- features */

.feature {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3.5rem;
  align-items: center;
  padding: 3.25rem 0;
  border-top: 1px solid var(--edge);
}

.feature.flip { grid-template-columns: 260px 1fr; }
.feature.flip .feature-text { order: 2; }
.feature.flip .feature-shot { order: 1; }

.feature h2 {
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-weight: 650;
}

.feature p {
  margin: 0 0 1rem;
  color: var(--dim);
  max-width: var(--measure);
}

.feature p:last-child { margin-bottom: 0; }
.feature strong { color: var(--text); font-weight: 600; }

/* A row of short points, for things that do not need a screenshot each. */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem;
  padding: 3.25rem 0;
  border-top: 1px solid var(--edge);
}

.grid h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-weight: 650;
}

.grid p { margin: 0; color: var(--dim); font-size: 0.97rem; }

.swatch {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 0.5rem;
  vertical-align: 0.03em;
}

/* --------------------------------------------------------------- privacy */

.panel {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 1.75rem 1.9rem;
  margin: 3.25rem 0;
}

.panel h2 { margin: 0 0 0.6rem; font-size: 1.3rem; font-weight: 650; }
.panel p { margin: 0 0 0.8rem; color: var(--dim); max-width: 46rem; }
.panel p:last-child { margin-bottom: 0; }

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

.closing {
  text-align: center;
  padding: 4.5rem 0 4rem;
  border-top: 1px solid var(--edge);
}

.closing h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  font-weight: 700;
}

.closing p {
  color: var(--dim);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

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

.site-foot {
  border-top: 1px solid var(--edge);
  padding: 2rem var(--gutter) 3rem;
  max-width: 62rem;
  margin: 0 auto;
  color: var(--faint);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: baseline;
}

.site-foot nav { margin-left: auto; display: flex; gap: 1.25rem; }
.site-foot a { color: var(--dim); }

/* ------------------------------------------------------------- documents */

.doc { padding: 1rem 0 3rem; }

.doc h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.doc .updated { color: var(--faint); font-size: 0.92rem; margin: 0 0 2.5rem; }

.doc h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.6rem;
  font-weight: 650;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--edge);
}

.doc p, .doc li { color: var(--dim); max-width: 44rem; }
.doc strong { color: var(--text); font-weight: 600; }
.doc ul { padding-left: 1.2rem; }
.doc li { margin-bottom: 0.5rem; }

.doc dl { margin: 0; max-width: 44rem; }
.doc dt { font-weight: 650; color: var(--text); margin-top: 1.4rem; }
.doc dd { margin: 0.3rem 0 0; color: var(--dim); }

/* ------------------------------------------------------------ responsive */

@media (max-width: 760px) {
  .hero,
  .feature,
  .feature.flip { grid-template-columns: 1fr; gap: 2.25rem; }

  .feature.flip .feature-text,
  .feature.flip .feature-shot { order: initial; }

  .hero { padding-top: 1.5rem; }

  .feature-shot, .hero-shot { max-width: 260px; margin: 0 auto; }

  .site-head nav { gap: 1rem; font-size: 0.9rem; }
  .site-foot nav { margin-left: 0; width: 100%; }
}

/* The app is dark by design — it sits next to a review monitor. The site
   follows it rather than the reader's system setting, which is deliberate. */
