/* EasyInstaller — light, calm, product-first.
   No terminals, no code. The buyer should never be reminded that software is
   hard; that is the thing they are paying us to not think about.
   Warm off-white ground so the dark product screenshots become the focal
   points, with a single warm accent. */

:root {
  color-scheme: light;

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --bg:        #fbfaf8;
  --surface:   #ffffff;
  --surface-2: #f3f1ed;
  --ink:       #16171a;
  --ink-2:     #4a4f57;
  --ink-3:     #7b828c;
  --line:      #e6e3dd;
  --line-2:    #d6d2ca;
  --accent:    #b4541f;
  --accent-sf: #fdf1e9;
  --accent-ink:#ffffff;
  --good:      #16794a;

  --radius: 14px;
  --maxw: 1120px;
  --read: 62ch;
  --shadow: 0 1px 2px rgba(20,18,15,.04), 0 12px 32px rgba(20,18,15,.07);
  --shadow-lg: 0 2px 6px rgba(20,18,15,.05), 0 28px 64px rgba(20,18,15,.13);
}

* { box-sizing: border-box; }

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

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

a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { margin: 0; line-height: 1.14; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 680; }
h3 { font-size: 1.1rem; font-weight: 660; letter-spacing: -0.01em; }
p  { margin: 0; }

.eyebrow {
  font-size: .78rem; font-weight: 640; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin: 0;
}
.lede { font-size: 1.18rem; color: var(--ink-2); max-width: var(--read); }
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
.small { font-size: .93rem; }

/* header */
header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(251,250,248,.86);
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 66px;
}
.brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-weight: 700; font-size: 1.04rem; letter-spacing: -.02em;
}
.brand .mark {
  width: 26px; height: 26px; border-radius: 8px; background: var(--accent);
  display: grid; place-items: center; color: var(--accent-ink);
  font-size: 13px; font-weight: 700;
}
nav.site { display: flex; align-items: center; gap: 24px; }
nav.site a { text-decoration: none; color: var(--ink-2); font-size: .95rem; font-weight: 520; }
nav.site a:hover { color: var(--ink); }

/* sections */
section { padding: 86px 0; }
section.tinted { background: var(--surface-2); }
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack-sm { display: flex; flex-direction: column; gap: 10px; }
.center { text-align: center; align-items: center; }
.center .lede { margin-inline: auto; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 10px; text-decoration: none;
  font-weight: 620; font-size: 1rem; border: 1px solid transparent;
  cursor: pointer; transition: transform .13s ease, box-shadow .13s ease, background .13s ease;
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 2px 10px rgba(180,84,31,.24);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(180,84,31,.3); }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* media */
figure { margin: 0; }
.shot {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.shot img { width: 100%; }
figcaption { margin-top: 12px; font-size: .9rem; color: var(--ink-3); }

/* layout helpers */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px; align-items: center;
}
.split.top { align-items: start; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

/* cards */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow);
}
.card h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.card.featured { border-color: var(--accent); }

.tag {
  font-size: .7rem; font-weight: 640; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; border: 1px solid var(--line-2);
  color: var(--ink-3); white-space: nowrap;
}
.tag-live { background: var(--accent-sf); color: var(--accent); border-color: transparent; }

/* lists */
.list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.list li { display: grid; grid-template-columns: 22px 1fr; gap: 13px; align-items: start; }
.list .sym { font-weight: 700; line-height: 1.5; color: var(--good); }
.list .sym.no { color: var(--accent); }
.list b { font-weight: 640; }
.list p { color: var(--ink-2); font-size: .97rem; }

/* steps */
.steps { display: grid; gap: 30px; counter-reset: s; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: start; }
.step::before {
  counter-increment: s; content: counter(s);
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-sf); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 1rem;
}

/* pricing */
.price { font-size: 2.4rem; font-weight: 700; letter-spacing: -.03em; }
.price small { font-size: .92rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }

/* table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: .96rem; min-width: 480px; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
tr:last-child td { border-bottom: none; }
th { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); font-weight: 640; }
td.yes { color: var(--good); font-weight: 600; }
td.no  { color: var(--ink-3); }

/* faq */
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
details summary {
  cursor: pointer; font-weight: 620; list-style: none;
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--accent); font-weight: 700; }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; color: var(--ink-2); max-width: var(--read); }

/* note */
.note {
  background: var(--accent-sf); border-radius: var(--radius);
  padding: 20px 22px; color: var(--ink-2); max-width: var(--read);
}
.note b { color: var(--ink); }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 44px 0; color: var(--ink-3); font-size: .92rem; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; }
footer.site a { color: var(--ink-2); }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
@media (max-width: 720px) {
  section { padding: 58px 0; }
  .split { gap: 34px; }
  nav.site { gap: 15px; }
  nav.site a.hide-sm { display: none; }
}
