/* =============================================================================
   jaunt.work — the product site.

   THREE CONSTRAINTS, ALL FROM THE POLICY nginx SENDS WITH THIS PAGE
   (deploy/nginx/jaunt.work.conf):

     default-src 'none'   There is NO JavaScript here and none can run. No
                          scroll reveals, no carousels, no theme toggle: the
                          page follows the operating system and everything on it
                          is true on first paint.
     style-src  'self'    No inline <style> and no style="" attribute. All of it
                          is in this file.
     font-src   'self'    The typeface is served from /fonts on this host.

   Every product image on this page is DRAWN IN CSS — the assistant exchange,
   the vault, the search results, the model picker. Not because it is clever,
   but because a screenshot would be a raster that goes soft on a retina
   display, would need a second one for dark mode, and would be a 400kB request
   on a page whose whole argument is restraint.
   ============================================================================= */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  color-scheme: light dark;

  --page: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #f1f3f7;
  --rule: #e2e6ec;
  --rule-2: #cfd5de;

  --ink: #0d1420;
  --ink-2: #48525f;
  --ink-3: #626d7c;

  /* Google Blue, the product's action colour, shared with both consoles. */
  --accent: #1a73e8;
  --accent-ink: #185abc;
  --accent-wash: #e8f0fe;
  --accent-edge: #aecbfa;
  --on-accent: #ffffff;

  /* The committed dark band. Fixed in BOTH themes — it is a material, not a
     theme response, and a band that inverts stops being a band. */
  --band: #0a1017;
  --band-2: #0e1620;
  --band-ink: #eef2f7;
  --band-ink-2: #9aa8b8;
  --band-rule: rgba(255, 255, 255, 0.09);
  --band-accent: #7cb0ff;
  --band-wash: rgba(124, 176, 255, 0.12);

  --ok: #0b7a43;
  --ok-band: #3ddc97;

  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-s: 0 1px 2px rgba(13, 20, 32, 0.05);
  --shadow: 0 1px 2px rgba(13, 20, 32, 0.05), 0 14px 40px -20px rgba(13, 20, 32, 0.3);
  --shadow-lift: 0 2px 6px rgba(13, 20, 32, 0.07), 0 30px 60px -28px rgba(13, 20, 32, 0.4);

  --wrap: 1140px;
  --col: 760px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #080d13;
    --surface: #101823;
    --surface-2: #0c141d;
    --rule: rgba(255, 255, 255, 0.09);
    --rule-2: rgba(255, 255, 255, 0.16);

    --ink: #eef2f7;
    --ink-2: #a7b3c2;
    --ink-3: #7e8b9b;

    --accent: #4285f4;
    --accent-ink: #8ab4f8;
    --accent-wash: rgba(66, 133, 244, 0.14);
    --accent-edge: rgba(66, 133, 244, 0.34);
    --on-accent: #06101f;

    --ok: #3ddc97;

    --shadow-s: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 18px 44px -22px rgba(0, 0, 0, 0.8);
    --shadow-lift: 0 2px 6px rgba(0, 0, 0, 0.55), 0 34px 66px -26px rgba(0, 0, 0, 0.85);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.col {
  max-width: var(--col);
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 20px;
  top: 20px;
  z-index: 50;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
}

/* =============================================================================
   Shared parts
   ============================================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.band .eyebrow {
  color: var(--band-accent);
}
.band .eyebrow::before {
  background: var(--band-accent);
}

.lede {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.58;
  color: var(--ink-2);
}

.band .lede {
  color: var(--band-ink-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--radius);
  border: 1px solid var(--rule-2);
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background 140ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 140ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
  border-color: var(--ink-3);
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 22px -8px rgba(26, 115, 232, 0.55);
}

.btn--primary:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
}

.band .btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--band-rule);
  color: var(--band-ink);
}
.band .btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.band .btn--primary {
  background: var(--band-accent);
  border-color: var(--band-accent);
  color: #06101f;
  box-shadow: 0 10px 28px -10px rgba(124, 176, 255, 0.6);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--accent-edge);
  background: var(--accent-wash);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 600;
}

.band .chip {
  border-color: var(--band-rule);
  background: var(--band-wash);
  color: var(--band-accent);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

/* =============================================================================
   Header
   ============================================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--page) 86%, transparent);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.bar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.mark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mark-glyph {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 16px -6px rgba(26, 115, 232, 0.6);
}

.bar nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bar nav a {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}

.bar nav a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

/*
  `.bar nav a` is (0,2,1) and `.btn--primary` is (0,1,0), so the nav rule was
  winning and painting the header's primary button --ink-2 on the accent fill:
  1.67:1, invisible, and only caught because the audit measures every text node
  rather than the ones somebody thought to check. Restated at matching
  specificity rather than with !important.
*/
.bar nav a.btn {
  color: var(--ink);
}

.bar nav a.btn--primary,
.bar nav a.btn--primary:hover {
  color: var(--on-accent);
}

.bar nav a.btn:hover {
  background: var(--surface-2);
}

.bar nav a.btn--primary:hover {
  background: var(--accent-ink);
}

.bar .btn {
  height: 40px;
  padding: 0 18px;
  font-size: 15px;
}

@media (max-width: 860px) {
  .bar nav a.hide-sm {
    display: none;
  }
}

/* =============================================================================
   Hero
   ============================================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(58% 46% at 50% -6%, var(--accent-wash) 0%, transparent 66%),
    var(--page);
  padding: 92px 0 0;
}

/* A hairline grid, fading out downward. It is the only ornament on the page and
   it exists to give the hero a floor for the app frame to sit on. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--rule) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(70% 55% at 50% 20%, #000 0%, transparent 78%);
  mask-image: radial-gradient(70% 55% at 50% 20%, #000 0%, transparent 78%);
  opacity: 0.7;
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-text {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.6rem, 6.2vw, 4.5rem);
  letter-spacing: -0.038em;
}

.hero .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  font-size: 20px;
}

.cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.fine {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-3);
}

.fine a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================================================
   The application frame — drawn, not photographed
   ============================================================================= */

.frame {
  margin: 64px auto 0;
  max-width: 1000px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 1px solid var(--rule-2);
  border-bottom: 0;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--rule);
}

.lights {
  display: flex;
  gap: 7px;
}
.lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rule-2);
}

.frame-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}

.frame-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ok);
}

.frame-tabs {
  display: flex;
  gap: 2px;
  padding: 8px 12px 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--rule);
}

.frame-tabs span {
  padding: 8px 14px;
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink-3);
}

.frame-tabs .on {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 1px 0 var(--rule), inset 1px 0 0 var(--rule),
    inset -1px 0 0 var(--rule);
}

.frame-body {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 372px;
}

.frame-side {
  border-right: 1px solid var(--rule);
  background: var(--surface-2);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-label {
  padding: 0 10px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.side-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.side-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 14px;
  color: var(--ink-2);
}

.side-list li.on {
  background: var(--accent-wash);
  color: var(--accent-ink);
  font-weight: 600;
}

.side-list i {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.6px solid currentColor;
  opacity: 0.75;
  flex: none;
}

.frame-main {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ask {
  align-self: flex-end;
  max-width: 74%;
  padding: 12px 16px;
  border-radius: 14px 14px 4px 14px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 15px;
  line-height: 1.45;
}

.reply {
  max-width: 84%;
  padding: 14px 16px;
  border-radius: 14px 14px 14px 4px;
  border: 1px solid var(--rule);
  background: var(--surface);
  font-size: 15px;
  line-height: 1.5;
}

.steps {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-2);
}

.tick {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ok) 16%, transparent);
  color: var(--ok);
  font-size: 11px;
  font-weight: 800;
  flex: none;
}

.working {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
}

/* A page of a document, with one paragraph the assistant is rewriting. */
.doc {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px 22px;
  background: var(--surface);
}

.doc h4 {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.doc p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}

.doc .edited {
  /* No negative margin. It bled the highlight 4px past the paragraph, which on
     a narrow window pushed it outside the page it is meant to be inside. */
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--accent-wash);
  box-shadow: inset 0 -1px 0 var(--accent-edge);
  color: var(--ink);
}

.doc-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}

.doc-foot .who {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-wash);
  color: var(--accent-ink);
  font-weight: 600;
}

/* =============================================================================
   Stat strip
   ============================================================================= */

.strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

/* 4px of side padding put every one of these hard against its divider. A cell
   with a rule down its edge needs the rule's own breathing room on BOTH sides,
   not the grid gap on one. Found by `shoot.mjs --fit`, which measures the gap
   between text and the box drawn around it. */
.strip-grid > div {
  padding: 30px 28px;
  border-left: 1px solid var(--rule);
}
.strip-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.strip-grid > div:last-child {
  padding-right: 0;
}

@media (max-width: 700px) {
  .strip-grid > div,
  .strip-grid > div:first-child,
  .strip-grid > div:last-child {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .strip-grid > div:first-child {
    border-top: 0;
    padding-top: 26px;
  }
}

.strip b {
  display: block;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.026em;
  line-height: 1.25;
  text-wrap: balance;
}

.strip span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 26ch;
}

/* =============================================================================
   Sections
   ============================================================================= */

section {
  padding: 104px 0;
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  margin-top: 22px;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}

/* The committed dark band. Same colours in both themes, deliberately. */
.band {
  background: var(--band);
  color: var(--band-ink);
  border-top: 1px solid var(--band-rule);
  border-bottom: 1px solid var(--band-rule);
}

.band h2,
.band h3 {
  color: var(--band-ink);
}

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

.feature {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
  .feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
  .feature--flip .feature-art {
    order: -1;
  }
}

.feature + .feature {
  margin-top: 96px;
}

/* The first feature under a section head. A class rather than an inline style:
   the policy on this host is `style-src 'self'` with no 'unsafe-inline', so a
   style="" attribute is not merely untidy — the browser drops it and the rule
   silently does nothing. */
.feature--first {
  margin-top: 64px;
}

/* The closing band is centred, so its eyebrow has to be too — it is an
   inline-flex element and would otherwise sit hard left inside centred text. */
.close .eyebrow {
  justify-content: center;
}

.close h2 {
  margin-top: 20px;
}

.feature h3 {
  margin-top: 20px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.feature p {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 17px;
}

.band .feature p {
  color: var(--band-ink-2);
}

.points {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.points li {
  display: flex;
  gap: 11px;
  font-size: 16px;
  color: var(--ink-2);
}

.band .points li {
  color: var(--band-ink-2);
}

.points li::before {
  content: "";
  flex: none;
  margin-top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.band .points li::before {
  background: var(--band-accent);
}

/* --- the drawn artefacts -------------------------------------------------- */

.art {
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.band .art {
  border-color: var(--band-rule);
  background: var(--band-2);
  box-shadow: none;
}

.art-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}

.band .art-head {
  border-color: var(--band-rule);
  color: var(--band-ink-2);
}

.art-head .grow {
  margin-left: auto;
  font-weight: 600;
  color: var(--ok);
}

.band .art-head .grow {
  color: var(--ok-band);
}

.art-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* a search box + ranked results */
.q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  border: 1px solid var(--rule-2);
  background: var(--surface-2);
  font-size: 15px;
  color: var(--ink-2);
}

.band .q {
  border-color: var(--band-rule);
  background: rgba(255, 255, 255, 0.04);
  color: var(--band-ink-2);
}

.hits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--rule);
  background: var(--surface);
  font-size: 14px;
}

.band .hit {
  border-color: var(--band-rule);
  background: rgba(255, 255, 255, 0.03);
}

.hit .name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hit .pc {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  color: var(--accent-ink);
}

.band .hit .pc {
  color: var(--band-accent);
}

.hit i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  flex: none;
  opacity: 0.9;
}

.band .hit i {
  background: var(--band-accent);
}

/* a list of vault folders */
.vault {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vault li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-2);
}

.band .vault li {
  border-color: var(--band-rule);
  color: var(--band-ink-2);
}

.vault i {
  width: 14px;
  height: 11px;
  border-radius: 2px 3px 3px 3px;
  border: 1.5px solid currentColor;
  opacity: 0.6;
  flex: none;
}

/* the model picker */
.models {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.model {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  font-size: 15px;
}

.band .model {
  border-color: var(--band-rule);
}

.model.on {
  border-color: var(--accent);
  background: var(--accent-wash);
}

.band .model.on {
  border-color: var(--band-accent);
  background: var(--band-wash);
}

.model .where {
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  /* --ink-3 measured 4.31:1 here. Uppercase 12px is small text and takes the
     stronger step. */
  color: var(--ink-2);
}

.band .model .where {
  color: var(--band-ink-2);
}

.radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.8px solid var(--rule-2);
  flex: none;
}

.model.on .radio {
  border-color: var(--accent);
  border-width: 5px;
}

.band .model.on .radio {
  border-color: var(--band-accent);
}

/* =============================================================================
   The suite — what is actually in the window
   ============================================================================= */

.suite {
  margin-top: 52px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
}

.suite li {
  padding: 26px 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background: var(--surface);
  box-shadow: var(--shadow-s);
}

.suite .glyph {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-wash);
  color: var(--accent-ink);
}

.suite h3 {
  margin-top: 16px;
  font-size: 18px;
  letter-spacing: -0.022em;
}

.suite p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-2);
}

/* =============================================================================
   Steps
   ============================================================================= */

.how {
  margin-top: 56px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  counter-reset: step;
}

.how li {
  padding: 26px 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--band-rule);
  background: var(--band-2);
}

.how li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--band-accent);
}

.how h3 {
  margin-top: 14px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.how p {
  margin-top: 9px;
  font-size: 15px;
  color: var(--band-ink-2);
}

/* =============================================================================
   Audience cards
   ============================================================================= */

.who {
  margin-top: 56px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.who li {
  padding: 30px 26px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  background: var(--surface);
  box-shadow: var(--shadow-s);
}

.who h3 {
  margin-top: 16px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.who p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink-2);
}

.who .glyph {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-wash);
  color: var(--accent-ink);
}

/* =============================================================================
   Closing call to action
   ============================================================================= */

.close {
  text-align: center;
}

.close h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.close .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.close .cta {
  margin-top: 32px;
}

/* =============================================================================
   Footer
   ============================================================================= */

footer {
  border-top: 1px solid var(--rule);
  background: var(--surface);
  padding: 40px 0;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: var(--ink-3);
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.foot nav a:hover {
  color: var(--ink);
}

@media (max-width: 760px) {
  section {
    padding: 76px 0;
  }
  .feature + .feature {
    margin-top: 64px;
  }
  .hero {
    padding-top: 64px;
  }
  .frame-body {
    grid-template-columns: minmax(0, 1fr);
  }
  .frame-side {
    display: none;
  }
  .vault {
    grid-template-columns: minmax(0, 1fr);
  }
  .cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}
