@charset "utf-8";
/* ==========================================================================
   Inshight Clubs — "ATRIUM" design system
   The classic long landing-page skeleton — centred hero, alternating feature
   rows, review trio, two steps, devices band — rendered in a warm editorial
   register instead of the usual SaaS one: cream paper, deep teal, ochre,
   serif headlines, hairline rules and a diagonal band behind the hero.

   palette  paper #faf8fc · card #FFF · teal #3f297f · text #3b3550
            muted #6f6a85 · line #e3ddee · ochre #6f9b45 · sage #6f9b45
   type     Spectral (headlines) + Inter (text)
   ========================================================================== */

:root {
  --paper: #faf8fc;
  --band: #efeaf6;
  --card: #ffffff;
  --teal: #3f297f;
  --teal-lt: #ece8f5;
  --text: #3b3550;
  --muted: #6f6a85;
  --line: #e3ddee;
  --ochre: #6f9b45;
  --ochre-dk: #587c37;
  --ochre-lt: #eef3e6;
  --sage: #6f9b45;
  --r: 6px;
  --shell: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ochre-dk); }
p { margin: 0 0 1.1em; }

h1, h2, h3, h4 { font-family: Spectral, Georgia, "Times New Roman", serif; font-weight: 600; line-height: 1.24; margin: 0; color: var(--teal); }

.shell { width: min(var(--shell), 92%); margin-inline: auto; }
.narrow { max-width: 700px; margin-inline: auto; }

.label {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ochre);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal); color: #fff; padding: 10px 16px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 3px; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  background: var(--ochre); color: #fff; text-decoration: none;
  padding: 16px 32px; border: 0; border-radius: var(--r);
  font-family: Inter, sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; text-align: center;
  transition: background .15s ease, transform .12s ease;
}
.btn:hover { background: var(--ochre-dk); transform: translateY(-1px); }
.btn:active { transform: none; }
.btn .arw {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.22); font-size: .9rem; line-height: 1;
}
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-teal { background: var(--teal); }
.btn-teal:hover { background: #31205f; }
.btn-line { background: transparent; color: var(--teal); border: 1px solid var(--line); }
.btn-line:hover { background: var(--card); transform: none; }

/* ---------- bars + masthead ---------- */

.adbar {
  text-align: center; padding: 7px 12px; background: var(--teal); color: #c6bde0;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600;
}

.masthead { background: var(--card); border-bottom: 1px solid var(--line); }
.masthead-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.compat { display: none; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.compat b { color: var(--teal); font-weight: 600; }
.compat svg { width: 16px; height: 16px; color: var(--sage); }
@media (min-width: 820px) { .compat { display: flex; } }

/* ---------- hero, with the diagonal band behind the shot ---------- */

.hero { padding: 52px 0 0; text-align: center; position: relative; }
.hero h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--ochre); }
.hero .sub { color: var(--muted); font-size: 1.06rem; max-width: 54ch; margin: 0 auto 26px; }

.store { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 16px; font-size: .82rem; color: var(--muted); }
.stars { color: var(--ochre); letter-spacing: 2px; }

.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px; margin: 22px 0 0; padding: 0; list-style: none; }
.trust li { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--teal); }
.trust svg { width: 17px; height: 17px; color: var(--sage); }

/* the band sits behind the lower half of the laptop shot */
.hero-shot { position: relative; margin-top: 40px; padding-bottom: 40px; }
.hero-shot::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 58%;
  background: var(--band); clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
.hero-shot img { position: relative; max-width: 917px; margin-inline: auto; }

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

.sec { padding: 58px 0; }
.sec-band { background: var(--band); }
.sec-card { background: var(--card); border-block: 1px solid var(--line); }
.sec-head { text-align: center; max-width: 58ch; margin: 0 auto 42px; }
.sec-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 10px; }
.sec-head p { color: var(--muted); margin: 0; }
.rule-o { width: 54px; height: 2px; background: var(--ochre); margin: 16px auto 0; }

/* ---------- alternating feature rows ---------- */

.rows { display: grid; gap: 46px; }
.row { display: grid; gap: 24px; align-items: center; }
.row-media img {
  width: 100%; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r); padding: 10px;
}
.row-t .ic {
  width: 42px; height: 42px; border-radius: var(--r); background: var(--ochre-lt);
  display: grid; place-items: center; margin-bottom: 14px;
}
.row-t .ic svg { width: 21px; height: 21px; color: var(--ochre-dk); }
.row-t h3 { font-size: 1.35rem; margin-bottom: 8px; }
.row-t p { color: var(--muted); margin: 0; }
@media (min-width: 820px) {
  .row { grid-template-columns: 1fr 1fr; gap: 56px; }
  .row:nth-child(even) .row-media { order: 2; }
}

/* ---------- reviews ---------- */

.revs { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.rev {
  background: var(--card); border: 1px solid var(--line); border-top: 2px solid var(--ochre);
  border-radius: var(--r); padding: 24px; text-align: center;
}
.rev p { font-family: Spectral, Georgia, serif; font-size: 1.04rem; font-style: italic; color: var(--teal); margin: 12px 0 14px; }
.rev cite { font-style: normal; font-size: .84rem; color: var(--muted); font-weight: 600; }
.revs-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 24px; }

/* ---------- two steps ---------- */

.steps { display: grid; gap: 22px; }
.step { position: relative; }
.step-lbl {
  display: flex; align-items: center; gap: 11px; margin-bottom: 14px;
}
.step-lbl b {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--teal); color: #fff; font-family: Spectral, serif; font-size: 1rem; flex: 0 0 auto;
}
.step-lbl span { font-family: Spectral, Georgia, serif; font-size: 1.14rem; color: var(--teal); font-weight: 600; }
.step img { width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 10px; }
.step p { margin: 12px 0 0; font-size: .93rem; color: var(--muted); }
@media (min-width: 760px) { .steps { grid-template-columns: 1fr 1fr; gap: 34px; } }

/* ---------- devices band ---------- */

.devices { display: grid; gap: 32px; align-items: center; }
.devices img { max-width: 400px; margin-inline: auto; }
.devices h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-bottom: 12px; }
.devices p { color: var(--muted); }
@media (min-width: 820px) { .devices { grid-template-columns: .85fr 1.15fr; gap: 54px; } }

/* ---------- caveat panel ---------- */

.aside {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--ochre);
  border-radius: 0 var(--r) var(--r) 0; padding: 22px 24px; margin: 34px auto 0; max-width: 700px;
}
.aside .label { display: block; margin-bottom: 9px; }
.aside p { font-size: .94rem; margin: 0 0 .8em; }
.aside p:last-child { margin: 0; }
.aside strong { color: var(--teal); }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: Spectral, Georgia, serif; font-weight: 600; font-size: 1.06rem; color: var(--teal);
  cursor: pointer; list-style: none; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: Inter, sans-serif; font-size: 1.25rem; color: var(--ochre); font-weight: 300; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .a { padding: 0 0 18px; font-size: .94rem; color: var(--muted); }
.faq .a p:last-child { margin: 0; }

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

.final { background: var(--teal); color: #ded7ee; padding: 64px 0; text-align: center; }
.final h2 { color: #fff; font-size: clamp(1.6rem, 3.8vw, 2.4rem); margin-bottom: 12px; }
.final p { color: #a79ec8; max-width: 52ch; margin: 0 auto 22px; }
.final .btn { background: var(--ochre); }
.final .btn:hover { background: #7fae52; }
.final-fine { font-size: .78rem; color: #8a80ad; margin: 22px auto 0; max-width: 74ch; }
.final-fine a { color: #ded7ee; }

/* ---------- disclosure ---------- */

.disc { border-top: 1px solid var(--line); padding: 26px 0 0; margin-top: 8px; }
.disc .label { display: block; margin-bottom: 9px; }
.disc p { font-size: .82rem; color: var(--muted); line-height: 1.7; }
.disc p:last-child { margin: 0; }

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

.site-footer { background: var(--teal); color: #a79ec8; padding: 36px 0 22px; font-size: 14px; }
.foot-top { display: grid; gap: 26px; grid-template-columns: 1fr; padding-bottom: 24px; }
.foot-brand img { height: 46px; width: auto; margin-bottom: 12px; }
.foot-brand p { margin: 0; color: #8a80ad; font-size: .85rem; max-width: 38ch; }
.foot-h { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 11px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot-col a { color: #ded7ee; text-decoration: none; }
.foot-col a:hover { color: #fff; }
.foot-id { font-style: normal; }
.foot-id p { margin: 0 0 4px; color: #8a80ad; font-size: .85rem; line-height: 1.55; }
.foot-id a { color: #ded7ee; text-decoration: none; }
.foot-id a:hover { color: #fff; }
@media (min-width: 760px) { .foot-top { grid-template-columns: 1.5fr .8fr 1.2fr; } }
@media (min-width: 980px) { .foot-top { grid-template-columns: 1.7fr .7fr .7fr 1.1fr; } }
.foot-bottom { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.foot-bottom p { margin: 0 0 8px; font-size: 12.5px; }
.disclaimer, .foot-compliance { font-size: 11.5px; color: #79709c; line-height: 1.65; margin: 8px 0 0; }

/* ==========================================================================
   Sub-pages
   ========================================================================== */

.page-hero { background: var(--card); border-bottom: 1px solid var(--line); padding: 42px 0 34px; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 8px 0 12px; }
.page-hero > .shell > p { color: var(--muted); max-width: 66ch; margin: 0; }
.crumbs { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0; }
.crumbs a { color: var(--ochre-dk); text-decoration: none; }

.band { padding: 46px 0; }
.band-sand { background: var(--paper); }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.3rem; margin: 34px 0 10px; padding-top: 20px; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.06rem; margin: 22px 0 6px; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 22px; }
.prose li { margin: 7px 0; }

.info-grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 16px 0 24px; }
.info-card { background: var(--card); border: 1px solid var(--line); border-top: 2px solid var(--ochre); border-radius: var(--r); padding: 17px 19px; }
.info-card h3 { margin: 0 0 6px; font-size: 1rem; }
.info-card p { margin: 0; font-size: .91rem; color: var(--muted); }
@media (min-width: 780px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }

.form { display: grid; gap: 14px; max-width: 540px; margin-top: 8px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .87rem; }
.field input, .field select, .field textarea {
  font: inherit; color: inherit; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: var(--r); background: #fff; width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ochre); outline: none; box-shadow: 0 0 0 3px rgba(111,155,69,.18);
}
.form-note { font-size: .83rem; color: var(--muted); margin: 0; }
.form-status { font-size: .89rem; margin: 0; }

/* ---------- cookie bar ---------- */

.cookie {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px;
  width: min(880px, 94%); z-index: 70; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 16px 38px rgba(18,59,63,.16);
  padding: 15px 18px; display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: .84rem; color: var(--muted); flex: 1 1 320px; }
.cookie-actions { display: flex; gap: 9px; }

/* ---------- reveals + motion ---------- */

.js .reveal { opacity: 0; transform: translateY(13px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* footer logo chip — the supplied marks are dark artwork on transparency,
   so they need a light ground to stay legible on the dark footer */
.foot-brand img { background: #fff; padding: 7px 11px; border-radius: 8px; }
