/* Clueless — cluelessai.ca
   Type and colour are lifted from the app so the site and the product read as
   one thing. No logo mark: the only one that exists is CleverlyAI's. */
:root {
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --bg-a: #fbfdff;
  --bg-b: #eef4fa;
  --surface: #ffffff;
  --text: #1b2e40;
  --text-dim: #42586e;
  --text-faint: #6c8098;
  --stroke: rgba(27, 46, 64, 0.12);
  --stroke-soft: rgba(27, 46, 64, 0.08);
  --accent: #0d87e7;
  --accent-deep: #0a74c9;
  --mint: #059a8a;
  --grad: linear-gradient(92deg, #0a74c9, #0d87e7 55%, #059a8a);
  --shadow: 0 18px 50px -22px rgba(13, 60, 100, 0.42);
  --radius: 16px;
}

:root:not([data-theme="light"]) {
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-a: #0b1220;
    --bg-b: #0e1728;
    --surface: #121d31;
    --text: #eaf2ff;
    --text-dim: #a8bdd6;
    --text-faint: #7d94b0;
    --stroke: rgba(190, 215, 245, 0.16);
    --stroke-soft: rgba(190, 215, 245, 0.09);
    --accent: #7cc4ff;
    --accent-deep: #7cc4ff;
    --mint: #63d8c8;
    --grad: linear-gradient(92deg, #7cc4ff, #bfe3ff 55%, #6fe3d4);
    --shadow: 0 22px 60px -26px rgba(0, 0, 0, 0.75);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(170deg, var(--bg-a), var(--bg-b));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.wrap { width: min(1080px, 100% - 44px); margin-inline: auto; }

/* ---- header ---- */
header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg-a) 82%, transparent);
  border-bottom: 1px solid var(--stroke-soft);
}
.bar { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 21px; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; text-decoration: none;
}
.bar nav { display: flex; gap: 26px; align-items: center; }
.bar nav a { color: var(--text-dim); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.bar nav a:hover { color: var(--text); }
@media (max-width: 680px) { .bar nav a.hide-sm { display: none; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 130ms ease, box-shadow 130ms ease, border-color 130ms ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -12px rgba(13, 135, 231, 0.8); }
@media (prefers-color-scheme: dark) { .btn-primary { color: #06263d; } }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { border-color: var(--stroke); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); }
.btn svg { width: 17px; height: 17px; }

/* ---- hero ---- */
.hero { padding: 86px 0 64px; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 20px;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 66px); line-height: 1.04; letter-spacing: -0.035em;
  margin: 0 0 20px; font-weight: 700;
}
h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: clamp(16.5px, 2.1vw, 19.5px); color: var(--text-dim); max-width: 620px; margin: 0 auto 34px; }
.cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 15px; font-size: 13.5px; color: var(--text-faint); }

/* ---- the picture of the product ---- */
.shot {
  margin: 62px auto 0; max-width: 880px;
  border-radius: var(--radius); border: 1px solid var(--stroke);
  background: var(--surface); box-shadow: var(--shadow); overflow: hidden;
}
.shot-bar { display: flex; gap: 7px; padding: 12px 15px; border-bottom: 1px solid var(--stroke-soft); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--stroke); }
.shot-body { position: relative; padding: 26px 26px 92px; text-align: left; }
.shot-q { font-size: 15px; color: var(--text); font-weight: 500; margin: 0 0 14px; }
.shot-opts { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; max-width: 420px; }
.shot-opts li {
  padding: 10px 13px; border-radius: 9px; border: 1px solid var(--stroke-soft);
  font-size: 14.5px; color: var(--text-dim);
}
.shot-opts li.picked {
  border-color: var(--mint); color: var(--text); font-weight: 600;
  background: color-mix(in srgb, var(--mint) 12%, transparent);
}
/* The box WRAPS the question rather than being positioned over it. Absolute
   offsets guessed at the content height and clipped the last option, which
   read as a bug in the product rather than a crop in the picture. */
.shot-sel {
  display: inline-block;
  padding: 14px 16px;
  border: 2px dashed color-mix(in srgb, var(--accent) 62%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 5%, transparent);
  max-width: 62%;
}
@media (max-width: 720px) { .shot-sel { max-width: 100%; } }
.shot-card {
  position: absolute; right: 26px; bottom: 26px; width: min(290px, 62%);
  padding: 15px 17px; border-radius: 13px; border: 1px solid var(--stroke);
  background: var(--surface); box-shadow: var(--shadow);
}
.shot-card b { font-family: var(--font-display); font-size: 13px; display: block; margin-bottom: 5px; }
.shot-card p { margin: 0; font-size: 13.5px; color: var(--text-dim); line-height: 1.5; }

/* ---- sections ---- */
section { padding: 74px 0; }
h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 36px);
  letter-spacing: -0.025em; margin: 0 0 14px; font-weight: 700;
}
.sub { color: var(--text-dim); max-width: 600px; margin: 0 0 42px; font-size: 16.5px; }
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
/* Four cards on a three-wide track leaves one stranded on its own row. */
.grid.pairs { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
@media (min-width: 860px) { .grid.pairs { grid-template-columns: 1fr 1fr; } }
.card {
  padding: 26px 24px; border-radius: var(--radius);
  border: 1px solid var(--stroke-soft); background: var(--surface);
}
.card h3 { font-family: var(--font-display); font-size: 17.5px; margin: 0 0 9px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--text-dim); font-size: 14.8px; }
.step-n {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--mint); display: block; margin-bottom: 11px;
}

/* ---- download ---- */
.download { text-align: center; }
.dl-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); max-width: 620px; margin: 0 auto; }
.dl {
  display: block; padding: 26px 22px; border-radius: var(--radius);
  border: 1px solid var(--stroke); background: var(--surface);
  text-decoration: none; color: inherit;
  transition: border-color 130ms ease, transform 130ms ease;
}
.dl:hover { border-color: var(--accent); transform: translateY(-2px); }
.dl-os { font-family: var(--font-display); font-size: 18px; font-weight: 650; margin-bottom: 4px; }
.dl-meta { font-size: 13px; color: var(--text-faint); }

/* ---- footer ---- */
footer { border-top: 1px solid var(--stroke-soft); padding: 34px 0 46px; }
.foot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.foot a { color: var(--text-dim); text-decoration: none; font-size: 14px; }
.foot a:hover { color: var(--text); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot small { color: var(--text-faint); font-size: 13px; }

/* Honesty panel — deliberately plain rather than hidden in the footer. */
.plain {
  border-radius: var(--radius); border: 1px solid var(--stroke-soft);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  padding: 26px 26px; max-width: 720px;
}
.plain p { margin: 0 0 12px; color: var(--text-dim); font-size: 15px; }
.plain p:last-child { margin-bottom: 0; }
