/* Shared design tokens from the original Menu Launcher website. */
:root {
  --primary-bg: #fff;
  --secondary-bg: #f5f5f7;
  --text-color: #1d1d1f;
  --subtext-color: #6e6e73;
  --accent-color: #0071e3;
  --footer-bg: #fbfbfd;
  --border-color: rgba(0, 0, 0, .08);
  --content-width: 1000px;
}
* { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; scroll-padding-top: 85px; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: var(--primary-bg);
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, video { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(32px, 4vw, 44px); }
h3 { font-size: 23px; font-weight: 600; letter-spacing: -.015em; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--accent-color); outline-offset: 5px; }
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.wrap { width: calc(100% - 40px); max-width: var(--content-width); margin-inline: auto; }
#main { flex: 1 0 auto; display: flex; flex-direction: column; }
.apps-page .page-intro { padding: 70px 0 32px; text-align: center; }
.apps-page .page-intro h1 { margin-bottom: 0; }
.apps-page .page-intro:has(.eyebrow) h1 { margin-bottom: 20px; }
.apps-page .page-intro .eyebrow { margin-bottom: 0; }
.apps-page .project-grid { margin-bottom: 80px; }
.apps-page .apps-dashboard { margin-bottom: 8px; }
.apps-dashboard {
  display: grid; grid-template-columns: repeat(4, 128px);
  justify-content: center; justify-items: center; align-items: start;
  gap: 32px 48px; margin: 0 auto 80px; max-width: 720px;
}
.apps-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 14px; width: 128px; padding: 0; background: transparent;
  border-radius: 0; text-align: center;
  transform: translateY(0);
  transition: transform .22s ease;
}
.apps-tile .app-icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 10px 24px rgba(0, 0, 0, .08); }
.apps-tile h2 {
  width: 100%; margin: 0; font-size: 15px; font-weight: 600; letter-spacing: -.02em;
  line-height: 1.25; text-align: center;
}
.apps-tile:hover { transform: translateY(-6px); }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 2000; background: var(--text-color); color: white; padding: 12px 20px; border-radius: 8px; }
.skip-link:focus { top: 65px; }

/* Compact translucent navigation. */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; min-height: 52px;
  padding: 8px max(20px, calc((100vw - 1200px) / 2));
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  z-index: 1000; background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; letter-spacing: -.025em; white-space: nowrap; }
.wordmark .wordmark-rest { color: #86868b; }
.brand-mark { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.main-navigation { display: flex; gap: 30px; align-items: center; }
.main-navigation a { padding: 8px 0; font-size: 12px; color: #515154; }
.main-navigation a:hover, .main-navigation a[aria-current] { color: var(--text-color); }
.store-link {
  display: inline-flex; align-items: center; gap: .18em;
  background: var(--accent-color); color: #fff; border-radius: 999px;
  padding: 6px 15px; font-size: 12px; font-weight: 500;
  transition: background .2s, opacity .2s; white-space: nowrap;
}
.store-link span { font-size: 1em; line-height: 1; transform: translateY(-.08em); }
.store-link:hover { background: #0077ed; opacity: 1; }
.header-panel { display: contents; }
.header-end { justify-self: end; display: flex; align-items: center; gap: 14px; }
.lang-switch { padding: 8px 0; font-size: 12px; color: #515154; }
.lang-switch:hover { color: var(--text-color); }
.menu-toggle {
  display: none; width: 44px; height: 44px; margin: -8px -6px -8px 0;
  border: 0; background: none; padding: 0; color: var(--text-color);
  align-items: center; justify-content: center;
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block; width: 18px; height: 1.5px; border-radius: 1px;
  background: currentColor; position: relative; transition: transform .2s, opacity .2s;
}
.menu-toggle-bars::before,
.menu-toggle-bars::after { content: ""; position: absolute; left: 0; }
.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after { top: 0; transform: rotate(-45deg); }

/* Centered publication and product heroes. */
.home-hero, .product-hero { text-align: center; max-width: 900px; margin: auto; }
.product-page { padding-bottom: 30px; }
.product-intro { padding: 72px 0 44px; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.product-brand { display: flex; align-items: flex-start; gap: 22px; }
.product-brand .app-icon { width: 104px; height: 104px; border-radius: 24px; box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.product-brand .product-label { margin: 3px 0 12px; }
.product-brand h1 { text-align: left; margin: 0; }
.product-intro > .button { flex-shrink: 0; margin-bottom: 4px; }
.product-gallery-section { padding: 26px 0 68px; }
.product-gallery-section .section-heading { margin-bottom: 22px; }
.product-description { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 52px; align-items: start; }
.product-description h2 { font-size: clamp(32px, 4vw, 48px); }
.case-carousel { position: relative; display: flex; align-items: center; gap: 16px; max-width: 1040px; margin: 0 auto; }
.case-carousel__viewport { flex: 1; min-width: 0; overflow: hidden; }
.case-carousel__track { display: flex; gap: 18px; transform: translate3d(calc(var(--case-index, 0) * -1 * (50% + 9px)), 0, 0); } .case-carousel__track.is-animating { transition: transform .35s ease; }
.case-card { flex: 0 0 calc((100% - 18px) / 2); min-height: 310px; padding: 34px 28px 38px; border: 1px solid var(--border-color); border-radius: 28px; background: var(--secondary-bg); text-align: center; }
.case-card__avatar { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: var(--background-color); font-size: 42px; box-shadow: 0 8px 22px rgba(0,0,0,.08); }
.case-card h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.2; }
.case-card p { max-width: 560px; margin: 0; color: var(--subtext-color); font-size: 16px; line-height: 1.6; text-align: left; }
.case-carousel__nav,
.gallery-nav { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; padding: 0 0 3px; border: 1px solid var(--border-color); border-radius: 50%; background: var(--primary-bg); color: var(--text-color); box-shadow: 0 4px 16px rgba(0, 0, 0, .12); font-size: 28px; line-height: 1; cursor: pointer; }
.case-carousel__nav:hover,
.gallery-nav:hover { background: var(--secondary-bg); }
.case-carousel__nav:disabled,
.gallery-nav:disabled { opacity: .35; cursor: default; }
.case-carousel__dots { position: absolute; left: 50%; bottom: -30px; display: flex; gap: 7px; transform: translateX(-50%); }
.case-carousel__dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: var(--border-color); cursor: pointer; }
.case-carousel__dots button.is-active { background: var(--text-color); transform: scale(1.35); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; justify-content: start; align-items: start; }
.pricing-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.price-note { margin: -12px 0 18px; color: var(--subtext-color); font-size: 14px; line-height: 1.45; }
.pricing-grid:has(> :only-child) { grid-template-columns: minmax(0, 560px); justify-content: center; margin-inline: auto; }
.price-card { padding: 34px 30px; border: 1px solid var(--border-color); border-radius: 24px; }
.price-card--featured { background: var(--secondary-bg); border-color: transparent; }
.price-eyebrow { color: var(--accent-color); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.price-card h3 { font-size: 25px; margin-bottom: 8px; }
.price { font-size: 34px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 22px; }
.price-card ul { margin: 0; padding-left: 20px; color: var(--subtext-color); line-height: 1.8; }
.product-final-cta { text-align: center; padding: 76px 20px 90px; }
.product-final-cta h2 { margin-bottom: 24px; }
.gallery-controls { display: flex; gap: 8px; }
.gallery-button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--secondary-bg); color: var(--text-color); font-size: 25px; line-height: 1; }
.gallery-button:hover { background: #e8e8ed; }
.home-hero { padding: 200px 0 180px; }
.product-hero { padding: 68px 0 40px; }
.eyebrow { color: var(--subtext-color); font-size: 14px; font-weight: 500; margin-bottom: 25px; }
.app-icon { width: 120px; height: 120px; object-fit: cover; border-radius: 27px; flex-shrink: 0; }
.home-hero > .app-icon, .product-hero > .app-icon { margin: 0 auto 28px; box-shadow: 0 10px 24px rgba(0, 0, 0, .1); }
.product-label { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 16px; }
.home-hero h1, .product-hero h1 { font-size: clamp(48px, 6vw, 68px); line-height: 1.03; letter-spacing: -.045em; margin-bottom: 22px; }
.hero-description { max-width: 670px; margin: 0 auto 30px; color: var(--subtext-color); font-size: 22px; line-height: 1.45; }
.product-copy { max-width: none; width: 100%; margin: 0 auto 28px; text-align: left; }
.product-copy p { color: var(--subtext-color); font-size: 18px; line-height: 1.55; }
.product-copy ul { margin: 0 0 18px; padding-left: 22px; color: var(--subtext-color); font-size: 18px; line-height: 1.55; }
.product-copy li + li { margin-top: 8px; }
.product-copy p:last-child,
.product-copy ul:last-child { margin-bottom: 0; }
.actions { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--accent-color); border-radius: 999px; background: var(--accent-color); color: #fff; padding: 12px 27px; font-size: 16px; font-weight: 500; transition: background .2s, transform .2s; }
.button:hover { background: #0077ed; }
.button:active { transform: scale(.98); }
.button-secondary { background: transparent; color: var(--accent-color); }
.button-secondary:hover { background: #eef6ff; }
.text-link { color: var(--accent-color); font-size: 16px; display: inline-flex; align-items: center; gap: .18em; padding-bottom: 2px; text-decoration: none; }
.text-link:hover, .project-card:hover .text-link, .support-card:hover .text-link { text-decoration: none; background-image: linear-gradient(currentColor, currentColor); background-position: 0 100%; background-repeat: no-repeat; background-size: 100% 1px; }
.text-link span { font-size: 1em; line-height: 1; transform: translateY(-.08em); }
.pill { display: inline-block; padding: 5px 12px; font-size: 12px; border-radius: 999px; background: var(--secondary-bg); color: var(--subtext-color); margin-bottom: 20px; }
.monogram-icon { display: grid; place-items: center; background: linear-gradient(145deg, #fbfbfd, #e8e8ed); color: var(--text-color); font-size: 32px; font-weight: 600; letter-spacing: -.04em; border: 1px solid var(--border-color); }

/* Large, quiet product tiles. */
.section { padding: 65px 0 85px; }
.section-heading { text-align: center; margin-bottom: 45px; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { font-size: 19px; color: var(--subtext-color); margin: 0; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.project-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--secondary-bg); border-radius: 24px; overflow: hidden; }
.project-info { padding: 36px 28px 0; }
.project-info h3 { font-size: 34px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 13px; }
.project-info > p {
  max-width: 380px; font-size: 17px; line-height: 1.45; color: var(--subtext-color); margin: 0 auto 18px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.project-card:hover .text-link { text-decoration: none; }
.project-art { width: 100%; padding: 38px 20px 43px; display: flex; justify-content: center; }
.project-art .app-icon { width: 140px; height: 140px; border-radius: 31px; box-shadow: 0 14px 30px rgba(0, 0, 0, .09); }
.project-art .monogram-icon { font-size: 38px; background: #fff; }
.about-section { padding: 80px 0 100px; text-align: center; }
.about-photo { display: block; width: 180px; height: 180px; object-fit: cover; object-position: center 20%; margin: 0 auto 28px; border-radius: 50%; box-shadow: 0 14px 30px rgba(0, 0, 0, .09); }
.about-section h2 { margin-bottom: 28px; }
.about-section .eyebrow { margin-bottom: 12px; }
.about-copy { max-width: 650px; margin: auto; }
.about-copy p { font-size: 19px; color: var(--subtext-color); line-height: 1.55; }
.about-copy .actions { margin-top: 28px; }

/* Full About page: circular photo left, story right. */
.about-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: start;
  padding: 72px 0 110px;
  max-width: 1100px;
}
.about-layout__profile {
  /* Sticky top matches initial offset (header + section padding) so it does not drift before locking. */
  position: sticky;
  top: 124px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-layout__photo {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
}
.about-layout__name {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text-color);
}
.about-layout__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.about-layout__social a { color: var(--text-color); opacity: .55; }
.about-layout__social a:hover { opacity: 1; }
.about-layout__social svg { display: block; }
.about-layout__body h1 {
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -.045em;
  margin: 0 0 18px;
}
.about-layout__body .about-lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--text-color);
  margin: 0 0 28px;
}
.about-layout__body.prose p,
.about-layout__body.prose li {
  font-size: 17px;
}

/* Product details. */
.product-media { margin: 0 auto 36px; max-width: 900px; }
.media-section { margin: 0 0 20px; }
.product-gallery-section.is-loading .media-frame,
.product-gallery-section.is-empty { display: none; }
.media-frame { position: relative; }
.media-gallery { position: relative; overflow: hidden; padding: 4px 0 0; cursor: grab; }
.media-gallery__track { display: flex; gap: 18px; width: 100%; transform: translate3d(calc(var(--gallery-index, 0) * -1 * (100% + 18px)), 0, 0); }
.media-gallery__track.is-animating { transition: transform .35s ease; }
.media-gallery .media-card { flex: 0 0 100%; width: 100%; min-width: 0; }
.media-gallery::-webkit-scrollbar { display: none; }
.media-gallery.is-dragging { cursor: grabbing; }
.media-gallery__dots { position: static; display: flex; justify-content: center; align-items: center; gap: 7px; min-height: 32px; margin: 12px auto 0; transform: none; }
.media-gallery__dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: var(--border-color); cursor: pointer; }
.media-gallery__dots button.is-active { background: var(--text-color); transform: scale(1.35); }
.media-card { flex: 0 0 100%; margin: 0; background: transparent; border: 0; border-radius: 0; overflow: visible; scroll-snap-align: start; user-select: none; display: flex; flex-direction: column; align-items: center; }
.media-card img, .media-card video { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: contain; -webkit-user-drag: none; }
.product-gallery-section + .product-description { padding-top: 18px; }
.media-card video { background: #000; }
.gallery-nav { display: none; position: absolute; top: 50%; z-index: 2; place-items: center; transform: translateY(-50%); }
.js .product-gallery-section:not(.is-empty):not(.is-loading) .gallery-nav { display: grid; }
.gallery-nav[data-gallery-prev] { left: 12px; }
.gallery-nav[data-gallery-next] { right: 12px; }
.gallery-nav:disabled { opacity: .35; cursor: default; }
.gallery-nav svg { display: block; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.feature-grid > div { padding: 36px 28px; border-radius: 22px; background: var(--secondary-bg); }
.feature-number { display: inline-block; font-size: 28px; margin-bottom: 18px; }
.feature-grid h3 { font-size: 21px; margin-bottom: 9px; }
.feature-grid p { color: var(--subtext-color); font-size: 15px; line-height: 1.55; margin: 0; }

.case-card[hidden] { display: block; }

.resource-strip { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--border-color); padding: 30px 0; margin-bottom: 30px; }
.resource-strip p { margin: 0; font-size: 14px; color: var(--subtext-color); }
.resource-strip nav { display: flex; gap: 22px; color: var(--accent-color); font-size: 14px; }
.resource-strip a:hover { text-decoration: underline; }
.coming-soon { text-align: center; max-width: 800px; width: calc(100% - 40px); margin: 0 auto 85px; padding: 60px; background: var(--secondary-bg); border-radius: 24px; }
.coming-soon h2 { margin-bottom: 22px; }
.coming-soon p { font-size: 18px; color: var(--subtext-color); }
.coming-soon .text-link { margin-top: 12px; }

/* Shared information pages. */
.page-intro { padding: 70px 0 55px; text-align: center; }
.page-intro h1 { font-size: clamp(44px, 6vw, 64px); letter-spacing: -.045em; margin-bottom: 20px; }
.page-intro > p:not(.eyebrow) { max-width: 660px; margin: 0 auto 16px; color: var(--subtext-color); font-size: 21px; }
.page-intro > p.last-updated { font-size: 13px; }
.document-layout { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 55px; padding-bottom: 85px; }
.document-nav { position: sticky; top: 85px; align-self: start; display: grid; gap: 16px; font-size: 13px; color: var(--subtext-color); }
.document-nav a:hover { color: var(--accent-color); }
.prose { font-size: 16px; overflow-wrap: anywhere; }
.prose h2, .prose h3 { font-size: 24px; line-height: 1.25; margin: 35px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { line-height: 1.75; color: #515154; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--accent-color); }
.prose a:hover { text-decoration: underline; }
.prose a.button {
  color: #fff;
  text-decoration: none;
}
.prose a.button:hover {
  color: #fff;
  text-decoration: none;
}
.prose section + section { margin-top: 38px; }
.prose address { font-style: normal; line-height: 1.8; color: #515154; }
.developer-box { margin: 0 0 1em; line-height: 1.8; color: #515154; }
.notice { background: var(--secondary-bg); border-radius: 18px; color: #515154; padding: 23px 26px; margin-bottom: 32px; font-size: 14px; line-height: 1.6; }
.notice strong { color: var(--text-color); }
.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 40px; }
.support-grid.legal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
a.support-card { color: inherit; display: block; }
.support-card:hover .text-link { text-decoration: none; }
.support-card { padding: 36px; background: var(--secondary-bg); border-radius: 24px; }
a.support-card:hover { background: #ececf1; }
.support-card.is-selected { box-shadow: inset 0 0 0 2px var(--text-color); }
.support-card .app-icon { width: 70px; height: 70px; border-radius: 16px; margin-bottom: 25px; font-size: 24px; }
.support-card h2 { font-size: 30px; margin-bottom: 15px; }
.support-card p { font-size: 16px; color: var(--subtext-color); }
.support-card .actions { justify-content: start; margin-top: 22px; gap: 16px; }
.support-card .button, .support-card .text-link { font-size: 14px; }
.support-page-header { max-width: 900px; margin: 0 auto; }
.support-hero { padding-bottom: 28px; }
.support-hero > .app-icon { margin: 0 auto 22px; box-shadow: 0 10px 24px rgba(0, 0, 0, .1); }
.support-search { max-width: 800px; margin: 0 auto 28px; }
.support-search label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.support-search input { width: 100%; box-sizing: border-box; padding: 16px 20px; border: 1px solid var(--border-color); border-radius: 14px; background: var(--secondary-bg); color: var(--text-color); font: inherit; font-size: 16px; outline: none; }
.support-search input:focus { border-color: var(--text-color); box-shadow: 0 0 0 3px rgba(0, 0, 0, .08); }
.support-answers { margin-bottom: 50px; }
.answer-group { display: none; max-width: 800px; margin: 0 auto; }
.answer-group, .answer-group:target, .js .answer-group.is-open { display: block; }
.answer-group[hidden], .answer-group details[hidden] { display: none !important; }
.answer-group h2 { font-size: 34px; margin-bottom: 24px; }
.answer-group details { border-bottom: 1px solid var(--border-color); }
.answer-group summary { list-style: none; display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; cursor: pointer; font-size: 17px; font-weight: 500; }
.answer-group summary::-webkit-details-marker { display: none; }
.answer-group summary::after { content: "+"; color: var(--subtext-color); }
.answer-group details[open] summary::after { content: "−"; }
.answer-group details > div { padding: 0 30px 24px 0; font-size: 16px; line-height: 1.65; color: var(--subtext-color); }
.answer-group details a { color: var(--accent-color); }
.answer-group details a:hover { text-decoration: underline; }
.answer-group details > div p:last-of-type { margin-bottom: 0; }
.answers-empty { color: var(--subtext-color); font-size: 16px; line-height: 1.65; }
.answers-empty a { color: var(--accent-color); }
.answers-empty a:hover { text-decoration: underline; }
.answer-screenshot { margin: 20px 0 0; border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; background: var(--secondary-bg); }
.answer-screenshot img { margin: 0 auto; max-height: 420px; width: auto; object-fit: contain; }
.support-contact-link { display: flex; justify-content: center; margin: 36px 0 85px; }
.contact-page { padding-bottom: 85px; }
.contact-form { width: 100%; min-height: 240px; }
.contact-panel { width: 100%; margin: 0 0 85px; padding: 50px; border-radius: 24px; background: var(--secondary-bg); text-align: center; }
.contact-panel h2 { font-size: 36px; margin-bottom: 22px; }
.contact-panel p { font-size: 16px; color: var(--subtext-color); }
.contact-panel .actions { margin-top: 27px; }
.empty-state { padding: 60px 20px 80px; border-radius: 24px; background: var(--secondary-bg); margin: 70px 0 80px; text-align: center; }
.empty-state h1, .empty-state h2 { font-size: 36px; margin-bottom: 23px; }
.empty-state p { color: var(--subtext-color); max-width: 520px; margin: 0 auto 20px; font-size: 18px; }

/* Footer. */
.site-footer { margin-top: auto; background: var(--footer-bg); border-top: 1px solid var(--border-color); padding: 34px 0; color: var(--subtext-color); }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-top { padding-bottom: 24px; margin-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.footer-follow { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-follow-label { margin: 0; font-size: 14px; color: var(--text-color); }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a { color: var(--text-color); opacity: .55; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { display: block; }
.footer-credit-wrap { margin: 0; font-size: 12px; text-align: right; }
.footer-credit:hover { color: var(--text-color); text-decoration: underline; }
.footer-bottom { font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--text-color); text-decoration: underline; }
.back-to-top { white-space: nowrap; }

@media (max-width: 900px) {
  .site-header { gap: 20px; }
  .main-navigation { gap: 24px; }
  .pricing-grid--3,
  .pricing-grid--5 { grid-template-columns: 1fr; }
  .feature-grid { gap: 16px; }
  .feature-grid > div { padding: 28px 20px; }
  .document-layout { grid-template-columns: 155px minmax(0, 1fr); gap: 30px; }
  .support-grid.legal-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .site-header { grid-template-columns: 1fr auto; gap: 12px; }
  .wordmark { font-size: 18px; }
  .brand-mark { width: 28px; height: 28px; border-radius: 7px; }
  .store-link { padding: 10px 16px; font-size: 13px; }
  .js .menu-toggle { display: flex; }
  .header-panel {
    display: none; grid-column: 1 / -1;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 8px 0 12px;
  }
  .header-panel.is-open { display: flex; }
  html:not(.js) .header-panel { display: flex; }
  html:not(.js) .menu-toggle { display: none; }
  .main-navigation { flex-direction: column; gap: 0; padding: 4px 0 10px; }
  .main-navigation a { padding: 12px 0; font-size: 17px; }
  .header-end { justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border-color); }
  .lang-switch { padding: 12px 0; font-size: 17px; }
  html:not(.js) body { padding-top: 220px; }
  .home-hero { padding: 120px 0 100px; }
  .product-hero { padding: 48px 0 32px; }
  .product-intro { padding: 48px 0 32px; display: block; }
  .product-brand { gap: 16px; }
  .product-brand .app-icon { width: 82px; height: 82px; border-radius: 20px; }
  .product-brand h1 { font-size: clamp(34px, 8vw, 48px); }
  .product-intro > .button { margin-top: 26px; }
  .product-description { grid-template-columns: 1fr; gap: 22px; }
  .pricing-grid,
  .pricing-grid--3,
  .pricing-grid--5 { grid-template-columns: 1fr; }
  .case-carousel { gap: 8px; }
  .case-carousel__track { gap: 14px; transform: translate3d(calc(var(--case-index, 0) * -1 * (100% + 7px)), 0, 0); }
  .pricing-grid:has(> :only-child) { grid-template-columns: minmax(0, 560px); max-width: 560px; justify-content: center; margin-inline: auto; }
  .case-card { flex-basis: 100%; min-height: 330px; padding: 28px 22px 32px; }
  .case-card h3 { font-size: 21px; }
  .case-carousel__nav,
  .gallery-nav { width: 40px; height: 40px; flex-basis: 40px; font-size: 26px; }

  .product-gallery-section { padding-bottom: 46px; }
  .product-gallery-section + .product-description { padding-top: 12px; }
  .product-final-cta { padding: 54px 20px 64px; }
  .home-hero > .app-icon, .product-hero > .app-icon { width: 100px; height: 100px; border-radius: 23px; margin-bottom: 25px; }
  .home-hero h1, .product-hero h1 { font-size: clamp(36px, 8.6vw, 48px); }
  .product-label { font-size: 19px; }
  .hero-description { font-size: 19px; max-width: 440px; }
  .product-copy { max-width: none; }
  .product-copy p { font-size: 17px; }
  /* Shared carousel navigation sizing is defined above. */
  .actions { gap: 18px; }
  .button { font-size: 15px; padding: 11px 23px; }
  .section { padding: 45px 0 60px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 32px; }
  .section-heading p { font-size: 17px; }
  .project-grid, .support-grid, .feature-grid, .support-grid.legal-grid { grid-template-columns: 1fr; }
  .page-intro,
  .apps-page .page-intro,
  .blog-index .page-intro { text-align: center; }
  .apps-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start; max-width: none; gap: 28px 24px;
  }
  .apps-tile { width: auto; max-width: none; }
  .project-grid { gap: 20px; }
  .project-info { padding-top: 32px; }
  .project-info h3 { font-size: 32px; }
  .project-art { padding-block: 30px 35px; }
  .project-art .app-icon { width: 120px; height: 120px; border-radius: 27px; }
  .about-section { padding-block: 50px 65px; }
  .about-photo { width: 140px; height: 140px; margin-bottom: 22px; }
  .about-copy p { font-size: 18px; }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 72px;
  }
  .about-layout__profile {
    position: static;
    max-width: none;
  }
  .about-layout__photo {
    width: 140px;
    height: 140px;
  }
  .about-layout__body .about-lead { font-size: 19px; }
  .about-layout__body.prose p,
  .about-layout__body.prose li { font-size: 16px; }
  .feature-grid > div { padding: 30px; }
  .page-intro { padding: 50px 0 35px; }
  .page-intro > p:not(.eyebrow) { font-size: 19px; }
  .document-layout { grid-template-columns: 1fr; gap: 35px; }
  .document-nav { position: static; display: flex; flex-wrap: wrap; gap: 14px 20px; }
  .support-card { padding: 30px; }
  .answer-group h2 { font-size: 30px; }
  .contact-panel, .coming-soon { padding: 35px 25px; }
  .contact-panel h2 { font-size: 32px; }
  .empty-state { padding: 45px 25px; }
  .empty-state h1, .empty-state h2 { font-size: 30px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-follow { justify-content: center; }
  .footer-credit-wrap { text-align: center; }
  .footer-bottom { font-size: 11px; gap: 20px; }
  .footer-bottom nav { width: 100%; order: -1; }
  .back-to-top { margin-left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html, .media-gallery { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Product pages use the same left-profile composition as About me. */
.product-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 110px;
  max-width: 1100px;
}
.product-layout__profile {
  position: sticky;
  top: 124px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-layout__profile .app-icon {
  width: 180px;
  height: 180px;
  border-radius: 42px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
}
.product-layout__name {
  margin: 18px 0 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.product-layout__store { font-size: 14px; padding: 9px 18px; }
.product-layout__body { min-width: 0; }
.product-hero--left { max-width: none; margin: 0; padding: 0 0 42px; text-align: center; }
.product-hero--left .product-label { margin-bottom: 16px; }
.product-hero--left h1 { margin: 0; }
.app-store-badge { display: inline-flex; align-items: center; gap: 10px; width: max-content; min-height: 48px; box-sizing: border-box; padding: 7px 13px 7px 11px; border-radius: 8px; background: #050505; color: #fff; text-align: left; text-decoration: none; transition: transform .2s ease, opacity .2s ease; }
.app-store-badge:hover { color: #fff; opacity: .88; transform: translateY(-1px); }
.app-store-badge__apple { font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 31px; line-height: .9; letter-spacing: -.08em; }
.app-store-badge__copy { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.app-store-badge__copy span { font-size: 10px; font-weight: 400; letter-spacing: .01em; }
.app-store-badge__copy strong { font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.product-layout__profile .app-store-badge { align-self: center; }
.product-coming-soon { margin: 0; font-size: 14px; font-weight: 500; letter-spacing: -.01em; color: #6e6e73; }
.product-final-cta .app-store-badge { margin-top: 18px; }
.product-gallery-section { margin: 0 0 12px; padding-bottom: 0; }
.product-gallery-section .media-frame { max-width: 900px; margin: 0 auto; padding: 0 58px; box-sizing: border-box; position: relative; }
.product-gallery-section .media-gallery { width: 100%; }
.product-gallery-section .media-gallery__track { width: 100%; }
.product-gallery-section .gallery-nav[data-gallery-prev] { left: 0; }
.product-gallery-section .gallery-nav[data-gallery-next] { right: 0; }
.product-layout__body .product-description {
  margin-top: 0;
  padding-top: 0;
  grid-column: 1 / -1;
}
.product-layout__body .product-description .product-copy,
.product-layout__body .product-copy {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
}
.product-layout__body .pricing .product-copy { margin-bottom: 22px; }
.product-layout__body .pricing .product-copy:last-child { margin: 22px 0 0; }
@media (max-width: 760px) {
  .product-layout { display: block; padding-top: 48px; padding-bottom: 65px; }
  .product-layout__profile { position: static; margin-bottom: 54px; }
  .product-layout__profile .app-icon { width: 140px; height: 140px; border-radius: 32px; }
  .product-hero--left { padding-bottom: 30px; }
  .product-gallery-section .media-frame { padding: 0 48px; }
  .app-store-badge__copy strong { font-size: 16px; }
}

.confirmation-page {
  min-height: min(620px, calc(100vh - 230px));
  display: grid;
  place-items: center;
  padding-top: 72px;
  padding-bottom: 96px;
}
.confirmation-content {
  width: min(100%, 760px);
  text-align: center;
}
.confirmation-content h1 {
  max-width: 700px;
  margin: 0 auto 34px;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.confirmation-card {
  width: min(100%, 680px);
  box-sizing: border-box;
  padding: clamp(42px, 8vw, 86px) clamp(26px, 7vw, 76px);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f7f7f9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
  text-align: center;
}
.confirmation-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #1d1d1f;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}
.confirmation-card .eyebrow { margin-bottom: 18px; }
.confirmation-card h1 {
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.confirmation-copy {
  margin: 24px auto 34px;
  color: #6e6e73;
  font-size: clamp(18px, 2.2vw, 22px);
}
@media (max-width: 600px) {
  .confirmation-page { min-height: auto; padding-top: 50px; padding-bottom: 70px; }
  .confirmation-card { border-radius: 22px; }
}

.error-page {
  min-height: min(620px, calc(100vh - 230px));
  display: grid;
  place-items: center;
  padding-top: 72px;
  padding-bottom: 96px;
}
.error-content {
  width: min(100%, 760px);
  text-align: center;
}
.error-code {
  margin: 0 0 14px;
  color: #6e6e73;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: .08em;
}
.error-content h1 {
  margin: 0 auto 20px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.error-content > p:not(.error-code) {
  max-width: 520px;
  margin: 0 auto 34px;
  color: #6e6e73;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
}
@media (max-width: 600px) {
  .error-page { min-height: auto; padding-top: 50px; padding-bottom: 70px; }
}

/* Blog */
.blog-index { box-sizing: border-box; width: min(820px, calc(100% - 40px)); max-width: 820px; margin-inline: auto; padding: 0 0 80px; }
.blog-index .page-intro { padding: 70px 0 40px; text-align: center; }
.blog-index .page-intro h1 { margin-bottom: 0; }
.eyebrow, .blog-card__meta { color: #6e6e73; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-grid { box-sizing: border-box; display: grid; grid-template-columns: minmax(0, 820px); width: min(100%, 820px); max-width: 820px; margin-inline: auto; }
.blog-card {
  display: block; box-sizing: border-box; width: 100%; margin: 0;
  padding: 44px 24px 48px; color: inherit; text-decoration: none; text-align: center;
  border-radius: 18px; background: transparent;
  transition: background .2s ease;
}
.blog-card__post { display: block; color: inherit; text-decoration: none; }
.blog-card + .blog-card { margin-top: 8px; }
.blog-card__meta {
  margin: 0 0 16px; color: var(--subtext-color);
  font-size: 11px; font-weight: 400; letter-spacing: .02em; text-transform: none;
}
.blog-card h2 {
  max-width: 520px; margin: 0 auto;
  font-size: clamp(27px, 3.4vw, 32px); line-height: 1.22; letter-spacing: -.02em;
  text-wrap: balance;
}
.blog-card__thumb { overflow: hidden; margin-top: 34px; border-radius: 14px; background: #f5f5f7; }
.blog-card__thumb img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card__preview {
  display: -webkit-box;
  position: relative;
  max-width: 520px;
  height: 3.36em;
  margin: 18px auto 0;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 15px;
  line-height: 1.68;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog-image-credit {
  margin: 11px 0 0;
  color: var(--subtext-color);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.blog-image-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(110, 110, 115, .4);
  text-underline-offset: 2px;
}
.blog-image-credit a:hover { color: var(--text-color); text-decoration-color: currentColor; }
.blog-card:hover, .blog-card:focus-within {
  background: #f5f5f7;
}
.blog-card__post:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 4px; border-radius: 12px; }
.text-link { color: #0071e3; font-weight: 600; }
.blog-article { min-width: 0; }
.blog-article__header .eyebrow { margin: 0 0 18px; }
.blog-article__header h1 {
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -.045em;
  margin: 0 0 18px;
}
.blog-article__hero { margin: 28px 0 34px; }
.blog-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.blog-article__hero figcaption { text-align: center; }
.about-layout__body.prose .blog-article__hero .blog-image-credit {
  margin: 11px 0 0;
  color: var(--subtext-color);
  font-size: 12px;
  line-height: 1.45;
}
.blog-article__intro { margin: 0 0 28px; }
.blog-article__section { padding: 0; border-top: 0; }
.blog-article__section h2 { margin: 35px 0 16px; }
.blog-article__section p { margin: 0 0 1em; }
.blog-article__back { margin: 0; }
.blog-article__back.actions { justify-content: flex-start; margin-top: 40px; }
.button--secondary { background: transparent; color: var(--accent-color); }

/* Editorial blog layout: single centered column, newsletter style. */
.blog-editorial {
  box-sizing: border-box;
  width: min(520px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 104px;
  color: #1d1d1f;
}
.blog-editorial__meta {
  margin: 0 0 16px;
  color: var(--subtext-color);
  font-size: 11px;
  letter-spacing: .02em;
  text-align: center;
}
.blog-editorial__header { text-align: center; }
.blog-editorial__header h1 {
  margin: 0;
  font-size: clamp(27px, 3.4vw, 32px);
  line-height: 1.22;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.blog-editorial p {
  margin: 0 0 1.2em;
  font-size: 15px;
  line-height: 1.68;
  color: #1d1d1f;
}
.blog-editorial p.blog-editorial__intro { margin-top: 38px; }
.blog-editorial__section { margin-top: 38px; }
.blog-editorial__section h3 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
.blog-editorial__chapter {
  margin-top: 96px;
  padding-top: 80px;
  border-top: 1px solid var(--border-color);
}
.blog-editorial__chapter > h2 {
  margin: 0 0 40px;
  font-size: clamp(25px, 3.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.02em;
  text-align: center;
}
.blog-figure { margin: 52px 0 56px; }
.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.blog-figure figcaption {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--subtext-color);
  text-align: center;
}
.blog-figure--wide { margin-inline: calc(-1 * clamp(0px, 5vw, 56px)); }
.blog-figure--inset { margin-inline: 0; }
.blog-figure-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 52px calc(-1 * clamp(0px, 3vw, 32px)) 56px;
}
.blog-figure-row .blog-figure { margin: 0; }
.blog-figure-row .blog-figure img { border-radius: 12px; }
.blog-editorial__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 88px;
  padding-top: 44px;
  border-top: 1px solid var(--border-color);
}
@media (max-width: 700px) {
  .blog-editorial { width: calc(100% - 36px); padding: 48px 0 76px; }
  .blog-editorial__chapter { margin-top: 64px; padding-top: 56px; }
  .blog-figure { margin: 40px 0 44px; }
  .blog-figure--wide { margin-inline: 0; }
  .blog-figure-row { gap: 8px; margin: 40px 0 44px; }
}
@media (max-width: 760px) {
  .about-layout { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; padding-bottom: 72px; }
  .about-layout__profile { position: static; }
  .about-layout__photo { width: 132px; height: 132px; }
  .about-layout__body > h1, .blog-article__header h1 { font-size: clamp(40px, 12vw, 58px); }
  .about-layout__body h2, .blog-article__section h2 { margin-top: 44px; }
  .about-layout__body p, .blog-article__section p { font-size: 16px; }
}

@media (max-width: 700px) {
  .blog-index { box-sizing: border-box; width: calc(100% - 32px); max-width: 820px; margin-left: auto; margin-right: auto; padding: 0 0 76px; }
  .blog-grid { width: 100%; max-width: none; margin-left: auto; margin-right: auto; }
  .blog-card { padding: 32px 16px 36px; }
  .blog-card__thumb { margin-top: 26px; }
  .blog-card h2 { font-size: clamp(24px, 7vw, 30px); }
  .blog-card__preview { height: 3em; font-size: 16px; }
  .blog-article__intro { margin-bottom: 40px; }
  .blog-article__section { padding: 24px 0; }
}

.review-page { padding-bottom: 85px; }
.review-page .highlight { color: var(--accent-color); }
.review-page .page-intro .review-note {
  display: block; width: 100%; max-width: none;
  margin: 10px 0 0; text-align: center;
  font-size: 11px; font-weight: 400; letter-spacing: 0;
  color: var(--subtext-color); text-transform: none;
}
.review-steps > div { padding: 32px; }
.review-steps .review-step-num {
  display: grid; place-items: center;
  width: 80px; height: 80px; margin: 0 0 24px;
  border-radius: 50%; background: #fff;
  color: var(--text-color); font-size: 36px; font-weight: 700;
  letter-spacing: -.04em; line-height: 1;
}
.review-steps, .review-quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-quotes p { margin: 0; }
.review-author { margin-top: 16px !important; font-size: 13px; font-weight: 600; color: var(--subtext-color); }
.review-table-wrap { overflow-x: auto; border: 1px solid var(--border-color); border-radius: 24px; background: var(--primary-bg); }
.review-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.review-table th, .review-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-color); vertical-align: top; }
.review-table thead th { background: var(--secondary-bg); font-weight: 600; color: var(--text-color); }
.review-table tbody tr:last-child td { border-bottom: none; }
.review-table td:first-child { color: var(--text-color); font-weight: 500; }
.review-table td:nth-child(2) { color: var(--accent-color); font-weight: 600; background: rgba(0, 113, 227, .04); }
.review-table th:nth-child(2) { color: var(--accent-color); }
.review-page .price-card .actions { justify-content: center; margin: 22px 0 0; }
.review-strike { text-decoration: line-through; color: var(--subtext-color); font-size: .55em; font-weight: 500; }
.review-price-meta { font-size: 16px; font-weight: 500; color: var(--subtext-color); letter-spacing: 0; }
.review-addon { margin: 22px 0 0; padding: 18px 20px; border-radius: 18px; background: var(--primary-bg); }
.review-addon p { margin: 6px 0 0; font-size: 14px; color: var(--subtext-color); }
.review-guarantee { margin: 22px 0 0; text-align: left; }
.review-guarantee strong { display: block; font-size: 15px; }
.review-guarantee p { margin: 6px 0 0; font-size: 14px; color: var(--subtext-color); }
.review-page .answer-group { margin-top: 20px; }
@media (max-width: 640px) {
  .review-steps, .review-quotes { grid-template-columns: 1fr; }
}

/* Kanboa coming-soon landing */
.kanboa-soon {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  padding-bottom: 72px;
}
.kanboa-soon__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 0 40px;
  max-width: 820px;
}
.kanboa-soon__badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 28px;
  padding: 7px 14px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--secondary-bg);
  color: var(--subtext-color);
  font-size: 13px;
  font-weight: 500;
}
.kanboa-soon__main h1 {
  max-width: 14ch;
  margin: 0 0 20px;
  font-size: clamp(44px, 8vw, 72px);
  letter-spacing: -.045em;
  line-height: 1.05;
}
.kanboa-soon__lead {
  max-width: 520px;
  margin: 0 0 44px;
  color: var(--subtext-color);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
}
.kanboa-soon__lead strong { color: var(--text-color); font-weight: 600; }
.kanboa-soon__countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 640px;
  margin-bottom: 44px;
}
.kanboa-soon__countdown.is-live {
  grid-template-columns: 1fr;
}
.kanboa-soon__unit,
.kanboa-soon__live {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 22px 12px;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: var(--secondary-bg);
}
.kanboa-soon__unit span:first-child {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kanboa-soon__label {
  margin-top: 10px;
  color: var(--subtext-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kanboa-soon__live {
  min-height: 88px;
  background: var(--text-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.kanboa-soon__form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.kanboa-soon__form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--secondary-bg);
  color: var(--text-color);
}
.kanboa-soon__form input[type="email"]::placeholder { color: #a1a1a6; }
.kanboa-soon__form input[type="email"]:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}
.kanboa-soon__form .button { flex: 0 0 auto; white-space: nowrap; }
.kanboa-soon__success,
.kanboa-soon__error {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
}
.kanboa-soon__success { color: #0f7b4c; }
.kanboa-soon__error { color: #b42318; }
@media (max-width: 640px) {
  .kanboa-soon__main { padding-top: 56px; }
  .kanboa-soon__countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kanboa-soon__unit { min-height: 104px; }
  .kanboa-soon__form { flex-direction: column; }
  .kanboa-soon__form .button { width: 100%; }
}

.kanboa-project {
  max-width: 1100px;
  padding-bottom: 110px;
  text-align: center;
}
.kanboa-project .product-copy {
  max-width: 720px;
  text-align: center;
}
.kanboa-project .product-copy ul {
  display: inline-block;
  text-align: left;
}
.kanboa-project__intro { padding-bottom: 24px; }
.kanboa-project__video {
  max-width: 920px;
  margin: 36px auto 0;
}
.kanboa-project__demo { margin: 32px 0 0; }
.kanboa-project__password {
  margin: 14px 0 0;
  font-size: 16px;
  color: var(--subtext-color);
}
.kanboa-project__password code {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}
.kanboa-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.kanboa-tiers article {
  flex: 1 1 148px;
  max-width: 172px;
  min-width: 0;
  padding: 28px 12px 26px;
  border-radius: 22px;
  background: var(--secondary-bg);
}
.kanboa-tiers__name {
  margin: 0 0 10px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}
.kanboa-tiers__price {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.kanboa-tiers__users {
  margin: 0;
  color: var(--subtext-color);
  font-size: 14px;
  white-space: nowrap;
}
.kanboa-tiers__shared {
  max-width: 820px;
  margin: 36px auto 0;
}
.kanboa-tiers__shared-label {
  margin: 0 0 14px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
}
.kanboa-tiers__shared ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kanboa-tiers__shared li {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--secondary-bg);
  color: var(--subtext-color);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .kanboa-project { padding-bottom: 65px; }
  .kanboa-tiers {
    max-width: 420px;
    gap: 10px;
  }
  .kanboa-tiers article {
    flex: 1 1 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    text-align: left;
  }
  .kanboa-tiers__name,
  .kanboa-tiers__price,
  .kanboa-tiers__users { margin: 0; }
  .kanboa-tiers__price { font-size: 24px; }
  .kanboa-tiers__shared li { white-space: normal; }
}

