/* ------------------------------------------------------------------
   bosch.fyi — design tokens

   Warm paper rather than the usual cold grey, so the screenshots (which
   are mostly white UI) sit on the page as objects instead of dissolving
   into it. One editorial serif for display, Inter for everything else.
   ------------------------------------------------------------------ */

:root {
  color-scheme: light dark;

  --paper: #fbf8f3;
  --paper-2: #f3ede3;
  --surface: #ffffff;
  --surface-2: #fdfbf8;
  --ink: #15120f;
  --ink-2: #4b423b;
  --muted: #857a70;
  --line: #e7ded1;
  --line-2: #d8cbb9;
  --accent: #a8421c;
  --accent-ink: #7e3115;
  --accent-wash: #f7ece6;
  --pop: #cde84a;
  --pine: #14544a;
  --on-dark: #f7f3ec;
  --on-dark-2: #b9b1a5;
  /* The band is dark in both themes, so it cannot be derived from --ink. */
  --band-bg: #15120f;

  --shadow-s: 0 1px 2px rgb(21 18 15 / 5%), 0 1px 3px rgb(21 18 15 / 4%);
  --shadow-m: 0 12px 28px -14px rgb(21 18 15 / 18%), 0 4px 10px -6px rgb(21 18 15 / 10%);
  --shadow-l: 0 40px 70px -32px rgb(21 18 15 / 32%), 0 12px 26px -14px rgb(21 18 15 / 16%);

  --r-s: 10px;
  --r-m: 16px;
  --r-l: 26px;
  --r-full: 999px;

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section: clamp(4rem, 9vw, 7.5rem);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #12100e;
    --paper-2: #1a1613;
    --surface: #1c1815;
    --surface-2: #221d19;
    --ink: #f6f1e9;
    --ink-2: #c8bdb1;
    --muted: #968b7f;
    --line: #2f2823;
    --line-2: #3d342d;
    --accent: #ef9067;
    --accent-ink: #f7b193;
    --accent-wash: #2a1d16;
    --pine: #7fd0bf;
    --on-dark: #f7f3ec;
    --on-dark-2: #b9b1a5;
    --band-bg: #262019;

    --shadow-s: 0 1px 2px rgb(0 0 0 / 40%);
    --shadow-m: 0 12px 28px -14px rgb(0 0 0 / 60%);
    --shadow-l: 0 40px 70px -32px rgb(0 0 0 / 70%);
  }
}

/* ------------------------------------------------------------------ base */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(168 66 28 / 12%);
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--ink);
}

h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1.1em; color: var(--ink-2); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { color: var(--ink-2); padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

strong { color: var(--ink); font-weight: 600; }

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

::selection { background: var(--pop); color: #15120f; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-s) var(--r-s);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.16s ease;
}
.skip:focus-visible { transform: translate(-50%, 0); color: var(--paper); }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2rem);
}

/* The header is sticky, so anything linked to from the page needs clearing. */
section[id],
[id^="s"] { scroll-margin-top: 6rem; }

.ico {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

/* ------------------------------------------------------------------ header */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-top: env(safe-area-inset-top);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-head { background: var(--paper); }
}
.site-head::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  min-height: 68px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.wordmark-tld { color: var(--accent); }
.wordmark-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 2vw, 1.4rem);
  margin-inline-start: auto;
  min-width: 0;
}
.navlink {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.45rem 0.6rem;
  border-radius: var(--r-s);
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.navlink:hover { color: var(--ink); background: var(--paper-2); }
.navlink[aria-current="page"] { color: var(--ink); font-weight: 600; }

.langpick {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--muted);
  flex: none;
}
.langpick .ico { margin-right: 0.3rem; width: 1.05em; height: 1.05em; }
.langlink {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  padding: 0.3rem 0.42rem;
  border-radius: var(--r-s);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.langlink:hover { color: var(--ink); background: var(--paper-2); }
.langlink[aria-current="true"] {
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

@media (max-width: 620px) {
  .head-inner { flex-wrap: wrap; min-height: 0; padding-block: 0.7rem; row-gap: 0.4rem; }
  .nav { order: 3; width: 100%; margin-inline-start: 0; justify-content: space-between; }
  .navlink { padding-inline: 0.3rem; font-size: 0.9rem; }
  .langpick { margin-inline-start: auto; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.14s ease, background-color 0.16s ease,
              border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-m);
}
.btn-primary:hover { background: var(--accent); color: #fff; box-shadow: var(--shadow-l); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn .ico { width: 1.1em; height: 1.1em; }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) var(--section);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -30% -10% auto;
  height: 780px;
  background:
    radial-gradient(58% 55% at 22% 32%, rgb(205 232 74 / 26%), transparent 70%),
    radial-gradient(48% 50% at 82% 18%, rgb(168 66 28 / 14%), transparent 68%);
  filter: blur(12px);
}
@media (prefers-color-scheme: dark) {
  .hero::before {
    background:
      radial-gradient(58% 55% at 22% 32%, rgb(205 232 74 / 12%), transparent 70%),
      radial-gradient(48% 50% at 82% 18%, rgb(239 144 103 / 14%), transparent 68%);
  }
}
/* A faint grain keeps the large flat areas from banding. */
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.42rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-s);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 { margin-bottom: 0.35em; }
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-note .ico { width: 1.05em; height: 1.05em; color: var(--pine); }

/* ------------------------------------------------------------------ screenshot frames */

.shot {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-l);
}
.shot img { width: 100%; }

.shot-tilt {
  transform: perspective(1600px) rotateY(-7deg) rotateX(2deg) translateZ(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.shot-tilt:hover { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
@media (prefers-reduced-motion: reduce) {
  .shot-tilt, .shot-tilt:hover { transform: none; }
}

.shot-phone {
  border-radius: 30px;
  border: 8px solid var(--ink);
  box-shadow: var(--shadow-l);
  max-width: 300px;
}
@media (prefers-color-scheme: dark) {
  .shot-phone { border-color: #38312b; }
}

.hero-stage { position: relative; }
.hero-stage .shot-phone {
  position: absolute;
  right: -6%;
  bottom: -9%;
  width: 34%;
  min-width: 128px;
}
@media (max-width: 640px) {
  .hero-stage .shot-phone { display: none; }
}

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

.section { padding-block: var(--section); }
.section-tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section-alt { background: var(--paper-2); }

.section-head { max-width: 46ch; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; }

.kicker {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* ------------------------------------------------------------------ promises */

.promises {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.promise {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.2rem, 2.5vw, 1.8rem);
  margin: 0;
}
.promise .ico { color: var(--accent); margin-bottom: 0.8rem; width: 1.6em; height: 1.6em; }
.promise-h {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.promise p:last-child { font-size: 0.95rem; margin: 0; color: var(--muted); }

/* ------------------------------------------------------------------ app card */

.appcard {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-m);
}
@media (min-width: 880px) {
  .appcard { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}

.applogo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.applogo img { width: 58px; height: 58px; border-radius: 14px; box-shadow: var(--shadow-s); }
.applogo h3 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; margin: 0; }

.badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.2rem 0 1.5rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 0.32rem 0.75rem;
}
.badge .ico { width: 1em; height: 1em; }
.badge-soon { color: var(--muted); }

.ticks { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.ticks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  color: var(--ink-2);
}
.ticks .ico { color: var(--pine); margin-top: 0.28em; width: 1.05em; height: 1.05em; }

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

.frow {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}
.frow:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .frow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .frow-flip .frow-text { order: 2; }
}
.frow-text { min-width: 0; }
.frow-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

/* ------------------------------------------------------------------ feature grid */

.fgrid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}
.fcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: clamp(1.3rem, 2.6vw, 1.8rem);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-2);
}
.fcard .ico { color: var(--accent); width: 1.55em; height: 1.55em; margin-bottom: 0.75rem; }
.fcard h3 { margin-bottom: 0.35rem; }
.fcard p { font-size: 0.95rem; margin: 0; color: var(--muted); }

/* ------------------------------------------------------------------ dark band */

.band {
  background: var(--band-bg);
  color: var(--on-dark);
  border-radius: var(--r-l);
  padding: clamp(2.2rem, 6vw, 4.2rem);
  position: relative;
  overflow: hidden;
}
.band h2, .band h3 { color: var(--on-dark); }
.band p { color: var(--on-dark-2); }
.band .kicker { color: var(--pop); }
.band a:not(.btn) { color: var(--pop); }
.band .btn-primary { background: var(--pop); color: #15120f; }
.band .btn-primary:hover { background: #dcf267; color: #15120f; }
.band .btn-ghost { color: var(--on-dark); border-color: rgb(247 243 236 / 28%); }
.band .btn-ghost:hover { background: rgb(247 243 236 / 10%); border-color: var(--on-dark); color: var(--on-dark); }
.band .ticks .ico { color: var(--pop); }
.band .ticks li { color: var(--on-dark-2); }

.band-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .band-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* ------------------------------------------------------------------ platform strip */

.platforms {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.plat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 1.05rem 1.2rem;
}
.plat .ico { color: var(--ink); width: 1.5em; height: 1.5em; }
.plat-name { font-weight: 600; font-size: 0.98rem; display: block; }
.plat-state { font-size: 0.85rem; color: var(--muted); display: block; }

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

.faq { max-width: 44rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2.2rem 1rem 0;
  position: relative;
  list-style: none;
  color: var(--ink);
  border-radius: var(--r-s);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--accent); }
.faq .faq-body { padding: 0 2.2rem 1.2rem 0; }
.faq .faq-body p { font-size: 1rem; }

/* ------------------------------------------------------------------ prose (legal pages) */

.page-head {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.3em; }
.page-head .lede { margin-bottom: 0; max-width: 52ch; }
.updated { font-size: 0.88rem; color: var(--muted); margin-top: 1.2rem; }

.prose {
  max-width: 44rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin-top: 2.6rem;
  scroll-margin-top: 6rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8rem; scroll-margin-top: 6rem; }
.prose ul { margin-bottom: 1.1em; }
.prose a { overflow-wrap: anywhere; }

.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-s);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}
.callout p { margin: 0; }
.callout p + p { margin-top: 0.7em; }

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 2rem 0;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 1.4rem;
}
.contact-card .ico { color: var(--accent); margin-bottom: 0.6rem; width: 1.4em; height: 1.4em; }
.contact-card h3 { margin-bottom: 0.3rem; font-size: 1rem; }
.contact-card p, .contact-card address {
  margin: 0;
  font-style: normal;
  color: var(--ink-2);
  font-size: 0.98rem;
}
.contact-card a { font-weight: 500; }

/* ------------------------------------------------------------------ CTA */

.cta { text-align: center; }
.cta .btn-row { justify-content: center; }
.cta p { max-width: 46ch; margin-inline: auto; }

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

.site-foot {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(2.8rem, 6vw, 4.2rem);
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  margin-top: var(--section);
}
.foot-grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding-bottom: 2.5rem;
}
.foot-brand .wordmark { font-size: 1.2rem; margin-bottom: 0.6rem; }
.foot-tag { font-size: 0.92rem; color: var(--muted); max-width: 26ch; }
.foot-h {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.foot-addr, .foot-contact {
  font-style: normal;
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.75;
}
.foot-contact a { color: var(--ink-2); text-decoration: none; }
.foot-contact a:hover { color: var(--accent); text-decoration: underline; }
.foot-links { display: flex; flex-direction: column; gap: 0.45rem; }
.foot-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.93rem;
}
.foot-links a:hover { color: var(--accent); text-decoration: underline; }

.foot-base {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: space-between;
  align-items: baseline;
}
.foot-base p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.foot-tm { max-width: 62ch; }

/* ---------------------------------------------------------- store badges */
/* Shaped like the store badges people already recognise, but plainly marked
   as not yet available — nothing here is a link until the apps are approved. */
.storerow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.storebadge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.1rem 0.65rem 0.95rem;
  border-radius: var(--r-m);
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}
.storebadge .ico { width: 1.55em; height: 1.55em; color: var(--ink-2); flex: none; }
.storebadge-text { display: flex; flex-direction: column; line-height: 1.2; }
.storebadge-text small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.storebadge-text strong {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.storerow-note { margin-top: 1.1rem; max-width: 62ch; }
#get ul { max-width: 66ch; }
