/* Fonts are self-hosted (in fonts/): visitors running ad/DNS blockers never
   saw the Google-hosted fonts, and no visitor request goes to Google. */
@font-face { font-family: 'Source Serif 4'; font-weight: 400; font-display: swap; src: url('fonts/source-serif-4-400.woff2') format('woff2'); }
@font-face { font-family: 'Source Serif 4'; font-weight: 600; font-display: swap; src: url('fonts/source-serif-4-600.woff2') format('woff2'); }
@font-face { font-family: 'Source Serif 4'; font-weight: 700; font-display: swap; src: url('fonts/source-serif-4-700.woff2') format('woff2'); }
@font-face { font-family: 'Public Sans'; font-weight: 400; font-display: swap; src: url('fonts/public-sans-400.woff2') format('woff2'); }
@font-face { font-family: 'Public Sans'; font-weight: 500; font-display: swap; src: url('fonts/public-sans-500.woff2') format('woff2'); }
@font-face { font-family: 'Public Sans'; font-weight: 600; font-display: swap; src: url('fonts/public-sans-600.woff2') format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-weight: 500; font-display: swap; src: url('fonts/chakra-petch-500.woff2') format('woff2'); }

:root {
  --paper: #FFFFFF;
  --ink: #1B241E;
  --ink-dim: #52605A;
  --ocean: #3A5A40;
  --deep: #344E41;
  --cyan: #A3B18A;
  --coral: #A98467;
  --mist: #F1F4EF;
  --line: #DAE0D6;
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Public Sans', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --maxw: 960px;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ocean); color: #fff; }

h1, h2, h3 { font-family: var(--font-display); color: var(--deep); }

a { color: var(--ocean); }
a:hover { color: var(--deep); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* ---------------- Navigation ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-text {
  font-family: 'Chakra Petch', var(--font-body);
  font-weight: 500; /* the one weight we ship for it; avoid faux-bold */
  font-size: 21px;
  color: var(--deep);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover { color: var(--deep); }

.nav-cta {
  color: #fff !important;
  background: var(--ocean);
  padding: 7px 15px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--deep); }

/* ---------------- Hero ---------------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 28px 72px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero-lede {
  max-width: 620px;
  font-size: 19px;
  color: var(--ink-dim);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--ocean);
  color: #fff;
}
.btn-primary:hover { background: var(--deep); color: #fff; }

.btn-ghost {
  border-color: var(--line);
  color: var(--deep);
  background: var(--paper);
}
.btn-ghost:hover { border-color: var(--ocean); }

/* ---------------- Full-width bands ---------------- */
.band {
  background: var(--deep);
  color: #ECF1E8;
}

.band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 28px;
}

.band h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
}

.band p {
  max-width: 680px;
  margin-bottom: 16px;
  color: #CBD5C0;
}

/* Links on the dark band need the light sage, not the default dark green */
.band a { color: var(--cyan); }
.band a:hover { color: #fff; }

/* ---------------- Sections ---------------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 28px;
}

.section-tint {
  max-width: none;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tint-inner {
  max-width: calc(var(--maxw) - 56px);
  margin: 0 auto;
}

.section h2 { font-size: 32px; margin-bottom: 10px; }

.section-lede {
  color: var(--ink-dim);
  max-width: 620px;
  margin-bottom: 40px;
}

/* Prose-heavy sections: bare paragraphs and lists need their margins back
   (the global reset removes them) */
#difference p:not(.section-lede),
#privacy p:not(.section-lede),
#security p:not(.section-lede) {
  color: var(--ink-dim);
  max-width: 720px;
  margin-bottom: 18px;
}
#privacy ul {
  max-width: 720px;
  margin-bottom: 18px;
  padding-left: 22px;
}
#privacy li { margin-bottom: 6px; color: var(--ink-dim); }

/* Read-more fold on the AI-app-builder comparison */
.read-more { max-width: 720px; }
.read-more > summary {
  cursor: pointer;
  list-style: none;
  display: inline-block;
  color: var(--ocean);
  font-weight: 600;
  font-size: 16px;
  padding: 2px 0;
}
.read-more > summary::-webkit-details-marker { display: none; }
.read-more > summary::after {
  content: "+";
  margin-left: 8px;
  font-weight: 700;
}
.read-more[open] > summary::after { content: "\2212"; }
.read-more[open] > summary { margin-bottom: 14px; }
.read-more .rm-open { display: none; }
.read-more[open] .rm-open { display: inline; }
.read-more[open] .rm-closed { display: none; }

/* ---------------- Work ---------------- */
.project {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  max-width: 720px;
}

.project:last-child { border-bottom: 1px solid var(--line); }

.project-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
}

.project h3 { font-size: 25px; }

.repo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px 5px 11px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.repo-link svg { flex: none; }
.repo-link:hover {
  color: var(--ocean);
  border-color: var(--ocean);
  background: var(--mist);
}

.project p { color: var(--ink-dim); margin-bottom: 12px; max-width: 660px; }

.project-note { font-size: 15px; color: var(--ocean); }

.shots {
  display: flex;
  gap: 16px;
  margin: 22px 0 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.shots figure {
  flex: 0 0 auto;
  width: 158px;
  margin: 0;
}

/* Landscape shots (e.g. a desktop streaming app) need more width to read. */
.shots.shots-wide figure { width: 320px; }

/* Click-to-enlarge lightbox for gallery images (desktop, hover-capable). */
@media (min-width: 721px) {
  .shots img { cursor: zoom-in; }
}
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: rgba(10, 20, 24, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, background 0.28s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(10, 20, 24, 0.82);
  cursor: zoom-out;
}
#lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
}
#lightbox.open img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  #lightbox, #lightbox img { transition: none; }
}

.shots img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(52, 78, 65, 0.12);
}

.shots figcaption {
  font-size: 13px;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 8px;
}

.shots-note {
  font-size: 13.5px !important;
  color: var(--ink-dim) !important;
  margin-bottom: 16px;
}

.tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 11px;
  white-space: nowrap;
}

.tag-live {
  color: var(--ocean);
  border-color: var(--cyan);
  background: var(--mist);
}

/* ---------------- Services ---------------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.svc h3 { font-size: 21px; margin-bottom: 10px; }

.svc p { color: var(--ink-dim); font-size: 16px; margin-bottom: 14px; }

.svc-price {
  margin-top: auto;
  font-weight: 600;
  color: var(--deep) !important;
  font-size: 17px !important;
}

.draft {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 1.5px 7px;
  margin-left: 10px;
  vertical-align: 2px;
}

.svc-foot {
  margin-top: 30px;
  color: var(--ink-dim);
  font-size: 15.5px;
  max-width: 620px;
}

/* Radio-group questions in the brief form */
.choice-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px 18px;
  margin: 6px 0 20px;
}
.choice-group legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  padding: 0 8px;
}
.choice-group .choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  padding: 9px 0;
  cursor: pointer;
}
.choice-group .choice + .choice {
  border-top: 1px solid var(--line);
}
.choice-group .choice input[type="radio"] {
  display: inline;
  width: auto;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--coral);
}
.choice-group .choice span {
  flex: 1 1 auto;
  line-height: 1.45;
}

/* Access tiers */
.access { margin-top: 38px; }
.access-title { font-size: 21px; margin-bottom: 10px; }
.access-grid { grid-template-columns: 1fr 1fr; margin-top: 18px; align-items: start; }

/* ---------------- Steps ---------------- */
.steps {
  list-style: none;
  counter-reset: step;
  max-width: 680px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 34px 66px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  color: var(--ocean);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.steps h3 { font-size: 20px; margin-bottom: 6px; }
.steps p { color: var(--ink-dim); font-size: 16px; }

/* ---------------- Principles ---------------- */
.principles {
  list-style: none;
  max-width: 680px;
}

.principles li {
  padding: 13px 0 13px 30px;
  position: relative;
  color: #CBD5C0;
  border-bottom: 1px solid rgba(236, 241, 232, 0.14);
}

.principles li:last-child { border-bottom: none; }

.principles li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------------- About placeholder ---------------- */
.placeholder {
  max-width: 680px;
  border: 1.5px dashed var(--cyan);
  border-radius: var(--radius);
  padding: 24px 26px;
  color: var(--ink-dim);
  font-style: italic;
  background: var(--mist);
}

/* ---------------- FAQ ---------------- */
#faq details {
  max-width: 720px;
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

#faq details:first-of-type { border-top: 1px solid var(--line); margin-top: 34px; }

#faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--deep);
  padding: 14px 28px 14px 2px;
  list-style: none;
  position: relative;
}

#faq summary::-webkit-details-marker { display: none; }

#faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ocean);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
}

#faq details[open] summary::after { content: "\2212"; }

#faq details p {
  color: var(--ink-dim);
  font-size: 16px;
  padding: 0 2px 18px;
  max-width: 660px;
}

/* ---------------- Brief sheet ---------------- */
.brief-sheet {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ocean);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(52, 78, 65, 0.09);
  padding: 42px;
  max-width: 720px;
  margin: 0 auto;
}

.brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.brief-head h2 { margin-bottom: 0; }

.seal {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1.5px solid var(--coral);
  border-radius: 999px;
  padding: 5px 14px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.brief-sheet form { margin-top: 26px; }

.brief-sheet label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brief-sheet input,
.brief-sheet select,
.brief-sheet textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: none;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 8px 2px;
}

.brief-sheet textarea {
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
}

.brief-sheet input:focus,
.brief-sheet select:focus,
.brief-sheet textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--ink-dim);
}

.form-sig {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
}

/* Post-submit confirmation window */
.sent-dialog {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ocean);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(52, 78, 65, 0.2);
  margin: auto;
  width: min(420px, calc(100vw - 32px));
  padding: 30px 28px;
}
.sent-dialog::backdrop { background: rgba(27, 36, 30, 0.55); }
.sent-dialog p:first-child { font-size: 15.5px; line-height: 1.55; }
.sent-dialog .btn { margin-top: 20px; }

/* Honeypot: kept off-screen; real visitors never see or fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 28px;
  text-align: center;
}

.footer-inner .mark { margin-bottom: 12px; }

.footer-inner p {
  font-family: var(--font-display);
  color: var(--deep);
  font-size: 16px;
}

.footer-small {
  font-family: var(--font-body) !important;
  font-size: 13.5px !important;
  color: var(--ink-dim) !important;
  margin-top: 6px;
}

.footer-btc {
  margin-top: 18px;
}

.footer-btc img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  opacity: 0.92;
}

.footer-btc p {
  max-width: 420px;
  margin: 6px auto 0;
}

/* ---------------- Mobile ---------------- */
@media (max-width: 720px) {
  html { scroll-padding-top: 148px; } /* nav wraps to three rows on phones */
  .hero { padding: 56px 22px 48px; }
  .section { padding: 56px 22px; }
  .band-inner { padding: 52px 22px; }
  .svc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .brief-sheet { padding: 28px 20px; }
  /* single-page site: brand + CTA on row 1, the four section links wrap to a compact row below */
  .nav-inner { padding: 12px 18px; flex-wrap: wrap; row-gap: 11px; position: relative; }
  .brand-text { font-size: 19px; }
  .nav-links { width: 100%; gap: 14px 16px; font-size: 14px; }
  .nav-links a { font-size: 14px; }
  .nav-cta { position: absolute; top: 11px; right: 18px; padding: 6px 14px; }
}

/* ---------------- Pricing example (added) ---------------- */
.draft-note {
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: -28px 0 34px;
}

.scenario {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ocean);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(52, 78, 65, 0.09);
  padding: 26px 28px;
  max-width: 720px;
  margin-bottom: 42px;
}

.scenario-art { flex: 0 0 auto; line-height: 0; margin-top: 2px; }
.scenario-body h3 { font-size: 20px; margin-bottom: 8px; }
.scenario-body p { color: var(--ink-dim); font-size: 16px; margin: 0; }

.ladder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--deep);
}

.tier-price::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  margin-top: 12px;
}

.tier-name {
  font-size: 18px;
  color: var(--ink);
  margin: 16px 0 2px;
}

.tier-feats {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.tier-feats li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 15.5px;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
}

.tier-feats li:first-child { border-top: none; }

.tier-feats li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.tier-feats li.carry {
  border-top: none;
  padding-left: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.tier-feats li.carry::before { display: none; }

.tier-feats li.add::before {
  content: "+";
  background: none;
  color: var(--coral);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  top: 8px;
  left: 2px;
  width: auto;
  height: auto;
  border-radius: 0;
}

.ladder-foot,
.ladder-close {
  max-width: 720px;
  color: var(--ink-dim);
}
.ladder-foot { font-size: 14.5px; margin: 28px 0 0; }
.ladder-close { font-size: 16px; margin: 14px 0 0; }

/* Collapsible example bars */
.examples { margin-top: 8px; }

.example {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 4px 18px rgba(52, 78, 65, 0.05);
  margin-bottom: 16px;
}

.example > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 20px 54px 20px 24px;
  position: relative;
}

.example > summary::-webkit-details-marker { display: none; }

.example-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--deep);
}

.example-kind { font-size: 14px; color: var(--ink-dim); }

.example-range {
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--ocean);
  white-space: nowrap;
}

/* Until a human opens the example, the range span holds a neutral
   placeholder (the script removes data-price once the real range is in). */
.example-range[data-price] {
  font-weight: 500;
  color: var(--ink-dim);
}

.example > summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--ocean);
  font-size: 24px;
  line-height: 1;
}
.example[open] > summary::after { content: "\2212"; }
.example[open] > summary { border-bottom: 1px solid var(--line); }

.example-body { padding: 24px; }

.example .scenario {
  border: none;
  box-shadow: none;
  background: none;
  padding: 0;
  max-width: 660px;
  margin: 0 0 22px;
}

@media (max-width: 720px) {
  .ladder { grid-template-columns: 1fr; }
  .scenario { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .draft-note { margin: -20px 0 26px; }
  .example > summary { padding: 18px 46px 18px 18px; }
  .example-range { margin-left: 0; }
  .example-body { padding: 18px; }
  .example .scenario { flex-direction: column; gap: 12px; padding: 0; }
}

/* ---------------- Collapsible service cards ---------------- */
details.svc {
  display: block;
  padding: 0;
  overflow: hidden;
}

.svc > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 22px 54px 22px 28px;
  position: relative;
}

.svc > summary::-webkit-details-marker { display: none; }

.svc > summary h3 { margin-bottom: 0; }

.svc-hint {
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  white-space: nowrap;
}
.hint-click { display: none; }
@media (hover: hover) and (pointer: fine) {
  .hint-tap { display: none; }
  .hint-click { display: inline; }
}
.svc[open] .svc-hint { display: none; }

.svc > summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 22px;
  color: var(--ocean);
  font-size: 24px;
  line-height: 1;
}
.svc[open] > summary::after { content: "\2212"; }
.svc[open] > summary { border-bottom: 1px solid var(--line); }

.svc-body {
  padding: 22px 28px 28px;
  display: flex;
  flex-direction: column;
}

/* Security list inside the cloud-hosting card */
.svc-body .svc-seclead {
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 8px;
}
.svc-seclist {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.svc-seclist li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15px;
  color: var(--ink-dim);
}
.svc-seclist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------------- Privacy & security section ---------------- */
#privacy p { color: var(--ink-dim); max-width: 620px; }
#privacy ul {
  list-style: none;
  max-width: 620px;
  margin: 6px 0 20px;
  padding: 0;
}
#privacy li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--ink-dim);
}
#privacy li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
