/* Forge Learning Technologies — company site. Clean, professional; navy brand
   with the flame accent from the emblem. (ChromaCut pages add a purple accent.) */

:root {
  --ink: #1D2333;
  --ink-soft: #5A6274;
  --paper: #FFFFFF;
  --paper-soft: #F5F6F9;
  --navy: #29344F;
  --navy-soft: #3B486A;
  --flame: #F5772A;
  --cyan: #1FB6CE;
  --purple: #7B6EF0;   /* ChromaCut */
  --line: #E7E9F0;
  --radius: 16px;
  --max-width: 1000px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", -apple-system, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--flame); }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* header */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; gap: 12px; padding: 12px 24px; }
header.site .brandlink img { height: 40px; width: auto; }
header.site nav { margin-left: auto; display: flex; gap: 24px; align-items: center; }
header.site nav a { color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: 0.95rem; }
header.site nav a:hover { color: var(--navy); }
@media (max-width: 640px) { header.site nav a:not(.btn) { display: none; } }

/* buttons */
.btn {
  display: inline-block; background: var(--navy); color: #fff !important;
  font-weight: 800; text-decoration: none; padding: 12px 26px; border-radius: 999px;
  border: none; font-size: 1rem; font-family: inherit; cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn.ghost { background: transparent; border: 2px solid var(--navy); color: var(--navy) !important; }
.btn.ghost:hover { background: rgba(41,52,79,0.06); }
.btn.small { padding: 8px 18px; font-size: 0.9rem; }

/* hero */
.hero {
  text-align: center; padding: 76px 0 60px;
  background:
    radial-gradient(ellipse 600px 340px at 15% -10%, rgba(31,182,206,0.10), transparent 65%),
    radial-gradient(ellipse 600px 340px at 85% -10%, rgba(245,119,42,0.10), transparent 65%),
    var(--paper);
}
.hero .logo { height: 132px; width: auto; margin: 0 auto 22px; }
.hero h1 { font-size: clamp(1.9rem, 4.3vw, 2.9rem); font-weight: 900; line-height: 1.15; max-width: 760px; margin: 0 auto 18px; color: var(--navy); }
.hero .sub { color: var(--ink-soft); font-size: 1.15rem; max-width: 640px; margin: 0 auto 30px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* sections */
section { padding: 64px 0; }
section.alt { background: var(--paper-soft); }
.kicker { font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; margin-bottom: 10px; color: var(--flame); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; line-height: 1.2; margin-bottom: 14px; color: var(--navy); }
.lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 680px; margin-bottom: 36px; }

/* product cards */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 470px)); gap: 22px; justify-content: center; }
@media (max-width: 720px) { .products { grid-template-columns: 1fr; } }
.pcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  box-shadow: 0 8px 30px rgba(29,35,51,0.06);
}
.pcard .picon { width: 72px; height: 72px; border-radius: 16px; }
.pcard h3 { font-size: 1.35rem; font-weight: 900; color: var(--navy); }
.pcard .tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; padding: 3px 12px; }
.pcard .tag.beta { background: rgba(31,182,206,0.12); color: #128199; border: 1px solid rgba(31,182,206,0.35); }
.pcard .tag.mac { background: rgba(123,110,240,0.12); color: #5647c9; border: 1px solid rgba(123,110,240,0.35); }
.pcard p { color: var(--ink-soft); font-size: 0.98rem; }
.pcard .btn { margin-top: auto; }

/* contact */
#contact { text-align: center; }
#contact .email { display: inline-block; font-size: 1.2rem; font-weight: 800; margin-top: 6px; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 32px 0 44px; color: var(--ink-soft); font-size: 0.9rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
footer a { color: var(--ink-soft); }
footer a:hover { color: var(--navy); }

/* ---------- ChromaCut support/privacy page ---------- */
.doc { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.doc .apphead { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; }
.doc .apphead img { width: 76px; height: 76px; border-radius: 17px; }
.doc h1 { font-size: 2rem; font-weight: 900; color: var(--navy); }
.doc .one-liner { color: var(--ink-soft); font-size: 1.1rem; margin-top: 2px; }
.doc h2 { font-size: 1.25rem; margin-top: 40px; color: var(--navy); }
.doc p, .doc li { color: #3d4453; margin-top: 12px; }
.doc ul { padding-left: 22px; }
.doc .updated { font-size: 0.9rem; color: var(--ink-soft); }
.doc .support-box { background: var(--paper-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-top: 16px; }
.doc a { color: var(--purple); font-weight: 700; }
