/* ---------------------------------------------------------------
   Barista — light, blue, visually present marketing site.
   Palette derived from the app icon: coffee on a blue gradient.
--------------------------------------------------------------- */

:root {
  --bg: #ffffff;
  --bg-soft: #f3f8fe;       /* very pale blue */
  --bg-cool: #e6f0fc;       /* cool light blue for hero / accent sections */
  --bg-muted: #d8e7f8;
  --bg-card: #ffffff;

  --border: #dde8f5;
  --border-strong: #b9d0ec;

  --text: #0f1722;
  --text-muted: #4f5e75;
  --text-faint: #94a3b7;

  --accent: #2980f4;        /* matches the app icon's mid-blue */
  --accent-deep: #1565d8;
  --accent-hover: #1f6fd8;
  --accent-soft: #d6e8fc;
  --accent-tint: rgba(41, 128, 244, 0.10);
  --accent-glow: rgba(41, 128, 244, 0.22);

  --teal: #2c8c9a;
  --indigo: #4f56c9;
  --slate: #4a5a73;
  --sky: #3a99e6;
  --purple: #7556c4;
  --navy: #1d4ca8;

  --shadow-sm: 0 1px 3px rgba(20, 40, 80, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 40, 80, 0.10);
  --shadow-lg: 0 30px 70px rgba(20, 40, 80, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --max-width: 1180px;
  --column-width: 720px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 120ms ease;
  cursor: pointer;
}
a:hover { color: var(--accent-hover); }
button, [role="button"], summary { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--text);
  margin: 0;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  letter-spacing: -0.038em;
  font-weight: 800;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.026em;
}
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 7px 14px;
  border-radius: 999px;
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.55;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--accent-tint);
  color: var(--accent-deep);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ---------------- Layout containers ---------------- */

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

section { padding: 110px 0; }

/* ---------------- Top nav ---------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  /* No backdrop-filter: a sticky element with backdrop-filter triggers
     a long-standing WebKit bug where cursor: pointer stops updating
     (page-wide), so links never show the hand in Safari while Chrome
     is fine. Near-opaque background keeps the nav legible over
     scrolled content without the frosted blur. */
  background: rgba(243, 248, 254, 0.96);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav__brand:hover { color: var(--text); }
.nav__brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: block;
  box-shadow: 0 3px 8px var(--accent-glow);
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__link:hover { background: var(--accent-soft); color: var(--accent-deep); }
.nav__link--active { color: var(--accent-deep); font-weight: 600; }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  padding: 110px 0 110px;
  text-align: center;
  background:
    radial-gradient(900px 600px at 80% 10%, rgba(93, 181, 252, 0.30), transparent 65%),
    radial-gradient(900px 600px at 20% 30%, rgba(41, 128, 244, 0.20), transparent 70%),
    linear-gradient(180deg, var(--bg-cool) 0%, var(--bg-soft) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 101, 216, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero__icon {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  display: block;
  margin: 0 auto 28px;
  box-shadow: 0 18px 40px rgba(21, 101, 216, 0.30);
}

.hero__title {
  margin: 0 auto 26px;
  max-width: 940px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #5db5fc 0%, var(--accent) 50%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mas-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}
.mas-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  color: #fff;
}
.mas-btn__icon { width: 28px; height: 28px; display: inline-flex; }
.mas-btn__text { line-height: 1.2; text-align: left; }
.mas-btn__text small { display: block; font-size: 0.7rem; opacity: 0.7; letter-spacing: 0.04em; }
.mas-btn__text strong { display: block; font-weight: 600; font-size: 1.02rem; }

/* "Coming soon" variant — looks like the App Store button but reads as
   a non-interactive placeholder: muted fill, no hover lift, default
   cursor. Used in the pricing card while the app is pre-release. */
.mas-btn--soon {
  background: #6b6b70;
  cursor: default;
  box-shadow: none;
}
.mas-btn--soon:hover {
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  transition: all 150ms ease;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  color: var(--accent-deep);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------------- Section heading ---------------- */

.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head__sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

/* ---------------- Collage lead-in ---------------- */

.collage {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  text-align: center;
  padding: 80px 0;
}
.collage .section-head { margin-bottom: 36px; }
.collage__frame {
  margin: 0 auto;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border) inset;
  background: var(--bg-cool);
}
.collage__frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------------- Numbered feature bands ---------------- */

.feature-band {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.feature-band:nth-of-type(odd) { background: var(--bg); }
.feature-band:nth-of-type(even) {
  background: var(--bg-soft);
  background-image: radial-gradient(rgba(21, 101, 216, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.feature-band__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.feature-band--flipped .feature-band__grid {
  grid-template-columns: 1.15fr 1fr;
}
.feature-band--flipped .feature-band__text { order: 2; }
.feature-band--flipped .feature-band__media { order: 1; }

.feature-band__number {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5db5fc 0%, var(--accent) 55%, var(--accent-deep) 100%);
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 3px 8px var(--accent-glow);
}
.feature-band__text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  margin-bottom: 18px;
}
.feature-band__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.feature-band__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.feature-band__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.98rem;
}
.feature-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}
.feature-band__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.75em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--accent-deep);
  border-bottom: 2px solid var(--accent-deep);
  transform: rotate(-45deg);
}

/* ---------------- Media placeholder (GIF frame) ---------------- */

.media {
  position: relative;
  background:
    linear-gradient(135deg, #eaf3fd 0%, #c8dcf3 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border) inset;
  aspect-ratio: 16 / 10;
}

.media__chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(21, 101, 216, 0.08);
  z-index: 2;
}
.media__dot { width: 12px; height: 12px; border-radius: 50%; }
.media__dot--r { background: #ff5f56; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.media__dot--y { background: #ffbd2e; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.media__dot--g { background: #27c93f; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }

.media__body {
  position: absolute;
  inset: 34px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
.media__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-soft) 100%);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 22px var(--accent-glow);
}
.media__icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--accent-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
}
.media__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.media__caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 340px;
  line-height: 1.5;
}
.media__badge {
  position: absolute;
  top: 46px;
  right: 16px;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 3px 8px var(--accent-glow);
}

/* Real video / GIF loop sitting inside the .media frame. Fills the
   entire frame edge-to-edge — the loops are already desktop captures
   (menu bar + wallpaper visible), so wrapping them in a faux Mac
   window with traffic-light dots would read as a window-in-a-window.
   object-fit: contain preserves the loop's native aspect ratio;
   letterbox bars fall back to the .media gradient. */
.media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}
/* Suppress the placeholder chrome / grid pattern / body label when a
   video loop is present in the same frame. The traffic-light dots and
   "GIF" badge stay on the placeholder bands (Stocks, System &
   Network, Timers, Designer & Dev) so those still read as mockups. */
.media:has(.media__video) .media__chrome,
.media:has(.media__video) .media__body,
.media:has(.media__video) .media__badge { display: none; }
.media:has(.media__video)::before { display: none; }

.media::before {
  content: "";
  position: absolute;
  inset: 34px 0 0 0;
  background-image:
    linear-gradient(rgba(21, 101, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 101, 216, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ---------------- Principles strip ---------------- */

.principles {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--border);
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.principle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 180ms ease;
  position: relative;
  overflow: hidden;
}
.principle::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5db5fc, var(--accent), var(--accent-deep));
  opacity: 0.9;
}
.principle:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.principle__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #eaf3fd 0%, var(--accent-soft) 100%);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px var(--accent-glow);
}
.principle h3 { font-size: 1.1rem; margin-bottom: 8px; }
.principle p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ---------------- Pricing ---------------- */

.pricing {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-card {
  background:
    radial-gradient(800px 300px at 50% -10%, var(--accent-tint), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px 48px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #5db5fc, var(--accent), var(--accent-deep));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5db5fc 0%, var(--accent) 55%, var(--accent-deep) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px var(--accent-glow);
}
.pricing-card__price {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  margin: 14px 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
.pricing-card__price small {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ---------------- Press kit (single download button) ---------------- */

.presskit-cta {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  text-align: center;
}
.presskit-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 180ms ease;
  box-shadow: 0 8px 22px var(--accent-glow);
  margin-top: 8px;
}
.presskit-cta__btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px var(--accent-glow);
  color: #fff;
}

/* ---------------- Widget catalog ---------------- */

.catalog {
  background: var(--bg-cool);
  border-top: 1px solid var(--border);
  position: relative;
}
.catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 101, 216, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.catalog > .container { position: relative; z-index: 1; }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 180ms ease;
  box-shadow: var(--shadow-sm);
}
.widget-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.widget-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
/* Rendered SF Symbol PNGs (white-on-transparent) — exact match to the
   icons each widget shows in the app. */
.widget-card__icon img {
  width: 21px;
  height: 21px;
  display: block;
  object-fit: contain;
}
/* Cool palette rotation — all blue/teal/indigo family, no warm colors. */
.widget-card:nth-child(6n+1) .widget-card__icon { background: linear-gradient(135deg, #5db5fc, var(--accent)); }
.widget-card:nth-child(6n+2) .widget-card__icon { background: linear-gradient(135deg, #4dc0c8, var(--teal)); }
.widget-card:nth-child(6n+3) .widget-card__icon { background: linear-gradient(135deg, #7177e0, var(--indigo)); }
.widget-card:nth-child(6n+4) .widget-card__icon { background: linear-gradient(135deg, #6c7c95, var(--slate)); }
.widget-card:nth-child(6n+5) .widget-card__icon { background: linear-gradient(135deg, #9a7be0, var(--purple)); }
.widget-card:nth-child(6n+6) .widget-card__icon { background: linear-gradient(135deg, #3573c8, var(--navy)); }

.widget-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------------- Footer ---------------- */

.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ---------------- Support page ---------------- */

.support-hero {
  padding: 100px 0 60px;
  text-align: center;
  background:
    radial-gradient(700px 360px at 50% -10%, var(--accent-tint), transparent 70%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.support-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 18px 0 16px; }

.support-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 72px 0;
}
@media (max-width: 900px) {
  .support-layout { grid-template-columns: 1fr; gap: 32px; }
}

.support-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.support-toc h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  margin-bottom: 14px;
  font-weight: 800;
}
.support-toc ul { list-style: none; margin: 0; padding: 0; }
.support-toc a {
  display: block;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.support-toc a:hover { background: var(--bg-card); color: var(--accent-deep); }

.support-content { min-width: 0; }
.support-section { scroll-margin-top: 88px; margin-bottom: 56px; }
.support-section h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-soft);
}
.support-section p { color: var(--text); }

.support-bullet {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--text);
}
.support-bullet::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.shortcut-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
}
.shortcut-row + .shortcut-row { border-top: 1px solid var(--border); }
.shortcut-row__keys {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 5px 12px;
  border-radius: 6px;
  justify-self: start;
}
.shortcut-row__desc { color: var(--text-muted); }

.support-callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  margin: 18px 0;
}

.support-section .media { margin: 22px 0; }

.support-figure {
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.support-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.support-figure figcaption {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 540px;
}

/* ---------------- Mobile ---------------- */

@media (max-width: 820px) {
  section { padding: 72px 0; }
  .feature-band { padding: 64px 0; }
  .feature-band__grid,
  .feature-band--flipped .feature-band__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-band--flipped .feature-band__text { order: 1; }
  .feature-band--flipped .feature-band__media { order: 2; }
  .nav__brand span:last-child { display: none; }
}

@media (max-width: 540px) {
  .hero { padding: 80px 0 80px; }
  .hero__icon { width: 88px; height: 88px; }
  .container { padding: 0 18px; }
  .nav__inner { padding: 0 18px; }
  .pricing-card { padding: 44px 28px 32px; }
}
