:root {
  --paper: #F7F5F0;
  --paper-2: #EFEBE3;
  --white: #FFFFFF;
  --ink: #14202E;
  --muted: #4A5462;
  --muted-2: #5A6472;
  --rule: #DDD8CE;
  --rule-2: #CFC8BA;
  --blue: #0060B4;
  --blue-dark: #00478A;
  --on-blue: #E3EEF9;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Public Sans', system-ui, sans-serif;

  --gutter: 96px;
  --section: 112px;
}

/* Platform content: only the visitor's platform shows. */
html[data-platform="mac"] .win,
html:not([data-platform="mac"]) .mac,
html[data-mac-store="soon"] .mac-live,
html[data-mac-store="soon"] .mac-live-any,
html[data-mac-store="live"] .mac-soon { display: none !important; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); }
a:hover { color: var(--blue-dark); }
h1, h2, h3, p, figure { margin: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

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

h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h3 { font-size: 20px; font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; }
.btn-lg { min-height: 54px; padding: 0 26px; font-size: 17px; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2B3644; color: var(--white); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-dark); font-weight: 700; }
.btn-white:hover { background: var(--paper); color: var(--blue-dark); }
.btn-soon { border: 1.5px dashed var(--rule-2); color: var(--muted); cursor: default; }
.link-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}
.link-on-dark { color: var(--white); padding: 0 8px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-family: var(--display); font-size: 21px; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 500; }
.nav-link { color: var(--ink); text-decoration: none; }
.nav-link:hover { color: var(--blue); }
.switch { display: flex; gap: 2px; padding: 3px; border-radius: 9px; background: #E9E4D9; }
.switch button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.switch button[aria-pressed="true"] { background: var(--white); color: var(--ink); box-shadow: 0 1px 2px rgba(20, 32, 46, 0.15); }

/* Screenshots sit in a plain window frame, at a size you can read. */
.window {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule-2);
  box-shadow: 0 1px 2px rgba(20, 32, 46, 0.06), 0 12px 32px -12px rgba(20, 32, 46, 0.18);
}

/* Hero: copy on the left, the app on the right, reaching past the content column toward the page edge. */
.hero { padding-block: 72px 88px; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 1fr); gap: 56px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero h1 { font-size: clamp(40px, 4.4vw, 60px); }
.lead { font-size: 19px; line-height: 1.55; color: var(--muted); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; }
.cta-note { font-size: 15px; color: var(--muted-2); }
.cta-note .link-button { font-size: 15px; margin-left: 4px; }

.hero-visual {
  position: relative;
  padding-bottom: 56px;
  /* stop 24px short of the viewport's right edge whatever the page width */
  margin-right: calc(24px - var(--gutter) - max(0px, (100vw - 1280px) / 2));
}
.hero-window {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(20, 32, 46, 0.06), 0 30px 60px -24px rgba(20, 32, 46, 0.35);
}

/* On load the page inside the app is "scanned in": a light bar runs down the page and the
   page appears behind it. The box is where the page sits in each screenshot (percentages of
   the image, measured from the captures; re-measure if a screenshot changes), and --viewer is
   the app's backdrop colour around the page. */
html[data-platform="mac"] .hero-window { --pl: 47.38%; --pt: 40.55%; --pw: 23.94%; --ph: 48.60%; --viewer: #DBDBDE; }
html:not([data-platform="mac"]) .hero-window { --pl: 37.97%; --pt: 15.17%; --pw: 37.10%; --ph: 76.87%; --viewer: #EEEEEE; }
.scan-page {
  position: absolute;
  left: var(--pl);
  top: var(--pt);
  width: var(--pw);
  height: var(--ph);
  pointer-events: none;
}
.scan-cover {
  position: absolute;
  inset: -3px;
  background: var(--viewer);
  clip-path: inset(100% 0 0 0); /* at rest (and with motion off) the page is simply there */
  animation: scan-cover 1.8s cubic-bezier(0.45, 0, 0.25, 1) 0.4s both;
}
.scan-light {
  position: absolute;
  left: -4px;
  right: -4px;
  top: 0;
  height: 2px;
  background: #CFE6FB;
  box-shadow: 0 0 0 1px var(--blue), 0 0 18px 5px rgba(0, 96, 180, 0.35);
  opacity: 0;
  animation: scan-light 1.8s cubic-bezier(0.45, 0, 0.25, 1) 0.4s both;
}
@keyframes scan-cover { from { clip-path: inset(0 0 0 0); } to { clip-path: inset(100% 0 0 0); } }
@keyframes scan-light {
  0% { top: 0; opacity: 1; }
  92% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ...and then it lands in History. */
.saved-card {
  position: absolute;
  left: -36px;
  bottom: 0;
  width: min(430px, 78%);
  padding: 10px 12px 12px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--rule-2);
  box-shadow: 0 18px 40px -16px rgba(20, 32, 46, 0.35);
  animation: card-in 0.5s ease-out 2.15s both;
}
.saved-card figcaption {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.saved-card figcaption::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / contain no-repeat;
}
.saved-card img { width: 100%; border-radius: 6px; }
@keyframes card-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .scan-cover, .scan-light, .saved-card { animation: none; }
}

/* Brand strip */
.brands { background: var(--white); border-block: 1px solid var(--rule); }
.brands-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-block: 36px; text-align: center; }
.brands-inner > p:first-child { color: var(--muted); font-size: 16px; }
.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 44px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: #2B3644;
}
.brands-note { font-size: 14px; color: var(--muted-2); }
.brands + .row { background: none; }

/* Feature rows */
.row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding-block: 72px;
}
/* Dividers between rows stop at the content edges, not the padded box. */
.row, .specs {
  background: linear-gradient(var(--rule), var(--rule)) center top / calc(100% - 2 * var(--gutter)) 1px no-repeat;
}
.row-flip { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.row-copy { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.row-copy p { color: var(--muted); }
.panel-shot { width: 300px; }

/* Specs */
.specs { padding-block: 88px; }
.specs h2 { margin-bottom: 32px; }
.spec-list { margin: 0; border-top: 2px solid var(--ink); }
.spec-list > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding-block: 16px;
  border-bottom: 1px solid var(--rule);
}
.spec-list dt { font-weight: 700; }
.spec-list dd { margin: 0; color: var(--muted); }

/* Pricing */
.pricing { background: var(--paper-2); border-block: 1px solid var(--rule); padding-block: var(--section); }
.pricing .wrap { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 64px; align-items: start; }
.pricing-head { display: flex; flex-direction: column; gap: 16px; }
.pricing-head p { color: var(--muted); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.plan { display: flex; flex-direction: column; padding: 32px; border-radius: 12px; background: var(--white); border: 1px solid var(--rule); }
.plan-pro { border: 2px solid var(--blue); }
.plan-note { margin-top: auto; font-size: 15px; color: var(--muted-2); }
.plan .btn { margin-top: auto; }
.checks { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; padding: 0; list-style: none; font-size: 16px; line-height: 1.5; }
.checks li { display: flex; gap: 12px; }
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 64px; padding-block: var(--section); }
.faq-list details { border-top: 1px solid var(--rule); }
.faq-list details:last-child { border-bottom: 1px solid var(--rule); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding: 20px 0;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-weight: 400; font-size: 24px; color: var(--blue); }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { padding-bottom: 24px; color: var(--muted); }

/* Maker note */
.maker { display: flex; gap: 24px; align-items: center; padding-block: 0 var(--section); }
.maker p { max-width: 720px; color: var(--muted); }

/* Final CTA */
.final { background: var(--blue); color: var(--white); }
.final-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding-block: 88px; }
.final h2 { font-size: clamp(34px, 3.6vw, 48px); }
.final p { font-size: 19px; color: var(--on-blue); }

/* Footer */
.site-footer { background: var(--ink); color: #BFC7D2; font-size: 14px; }
.site-footer .wrap { display: flex; flex-direction: column; gap: 20px; padding-block: 48px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--paper); }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { color: #BFC7D2; }
.footer-nav a:hover { color: var(--paper); }
.fine { max-width: 1000px; color: #9AA5B4; }

/* Language menu (header) */
.lang { position: relative; }
.lang summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary::before {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.5 2.6 3.8 5.6 3.8 9s-1.3 6.4-3.8 9c-2.5-2.6-3.8-5.6-3.8-9S9.5 5.6 12 3z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.5 2.6 3.8 5.6 3.8 9s-1.3 6.4-3.8 9c-2.5-2.6-3.8-5.6-3.8-9S9.5 5.6 12 3z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.lang summary:hover, .lang[open] summary { background: #E9E4D9; }
.lang ul {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  min-width: 200px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  box-shadow: 0 12px 32px -12px rgba(20, 32, 46, 0.3);
}
.lang a { display: flex; align-items: center; min-height: 40px; padding: 0 12px; border-radius: 6px; color: var(--ink); text-decoration: none; font-size: 15px; }
.lang a:hover { background: var(--paper); }
.lang a[aria-current="page"] { font-weight: 700; color: var(--blue); }

/* Chinese: the Latin faces have no CJK glyphs, so lead with the system CJK fonts. */
:lang(zh) {
  --display: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --body: 'Public Sans', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
}
:lang(zh) h1, :lang(zh) h2 { letter-spacing: 0; font-weight: 700; }

/* Brand pages */
.crumb { font-size: 14px; color: var(--muted-2); }
.crumb a { color: var(--muted-2); }
.affiliation { font-size: 14px; color: var(--muted-2); max-width: 460px; }
.models { background: var(--white); border-block: 1px solid var(--rule); padding-block: 72px; }
.models h2 { margin-bottom: 32px; }
.model-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.model-family h3 { font-size: 17px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 2px solid var(--ink); }
.model-family ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; color: var(--muted); }
.models-note { margin-top: 32px; max-width: 820px; font-size: 15px; color: var(--muted-2); }
.section-block { padding-block: 88px 0; }
.section-block h2 { margin-bottom: 24px; }
.section-intro { max-width: 680px; margin: -8px 0 28px; color: var(--muted); }
.setup-steps { counter-reset: step; margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.setup-steps li { counter-increment: step; display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 2px solid var(--ink); color: var(--muted); }
.setup-steps li::before { content: counter(step); font-family: var(--display); font-size: 32px; font-weight: 600; line-height: 1; color: var(--blue); }
.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.compare-col { padding: 32px; border-radius: 12px; background: var(--white); border: 1px solid var(--rule); }
.compare-ours { border: 2px solid var(--blue); }
.compare-col .checks { margin-bottom: 0; }
.plain-list { margin: 20px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 12px; color: var(--muted); }
.other-brands { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; padding-block: 40px; font-size: 15px; color: var(--muted-2); }
.other-brands a { color: var(--ink); font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.brand-list a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; text-decoration-color: var(--rule-2); }
.brand-list a:hover { color: var(--blue); text-decoration-color: currentColor; }

/* Ratings and testimonials */
.stars { position: relative; display: inline-block; flex-shrink: 0; width: 5.7em; height: 1.1em; font-size: 16px; line-height: 1.1; }
.stars::before, .stars-fill::before { content: "\2605\2605\2605\2605\2605"; position: absolute; left: 0; top: 0; letter-spacing: 0.14em; white-space: nowrap; }
.stars::before { color: #DCD5C8; }
.stars-fill { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden; }
.stars-fill::before { color: #E08A00; }

.hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; color: var(--muted); font-size: 15px; }
.hero-rating .stars { font-size: 22px; }
.hero-rating strong { font-size: 19px; color: var(--ink); }

.reviews { padding-block: var(--section); background: var(--paper-2); border-block: 1px solid var(--rule); }
.reviews .wrap { display: flex; flex-direction: column; gap: 48px; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.reviews-intro { display: flex; flex-direction: column; gap: 12px; max-width: 620px; }
.reviews-intro p { color: var(--muted); }
.score-card { display: flex; align-items: center; gap: 18px; padding: 18px 26px; border-radius: 14px; background: var(--white); border: 1px solid var(--rule); }
.score-num { font-family: var(--display); font-size: 56px; line-height: 1; font-weight: 600; }
.score-detail { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--muted); }
.score-detail .stars { font-size: 24px; }

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 26px 28px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 1px 2px rgba(20, 32, 46, 0.04);
}
.review-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "top top" "quote who" "tr who";
  column-gap: 48px;
  row-gap: 14px;
  align-items: end;
  padding: 36px 44px;
}
.review-featured .review-top { grid-area: top; }
.review-featured blockquote { grid-area: quote; }
.review-featured .review-note { grid-area: tr; }
.review-featured figcaption { grid-area: who; align-self: end; margin-top: 0; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-source { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted-2); }
.review-card blockquote { position: relative; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.review-card blockquote::before {
  content: "\201C";
  display: block;
  height: 0.42em;
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.35;
}
.review-title { font-weight: 700; font-size: 17px; }
.review-text { font-size: 17px; line-height: 1.55; color: var(--ink); }
.review-featured blockquote::before { font-size: 96px; }
.review-featured .review-title { font-family: var(--display); font-size: clamp(28px, 2.6vw, 38px); line-height: 1.1; font-weight: 600; }
.review-featured .review-text { font-size: 21px; line-height: 1.5; }
.review-featured .stars { font-size: 22px; }
.review-note { font-size: 13px; font-style: italic; color: var(--muted-2); }
.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #DCEAF7;
  color: var(--blue-dark);
  font-weight: 700;
}
.review-who { display: flex; flex-direction: column; font-size: 14px; line-height: 1.35; color: var(--muted-2); }
.review-who strong { color: var(--ink); font-size: 15px; }
.reviews-source { font-size: 13px; color: var(--muted-2); }

/* Support page */
.support-head { display: flex; flex-direction: column; gap: 16px; padding-block: 64px 40px; }
.support-head .lead { max-width: 640px; }
.support-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 56px; align-items: start; padding-bottom: 96px; }
.support-tips { display: flex; flex-direction: column; gap: 16px; }
.support-tips h2, .contact-form h2 { font-size: clamp(24px, 2.2vw, 30px); }
.support-tips .plain-list { margin-top: 0; }
.support-direct { color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 18px; padding: 32px; border-radius: 12px; background: var(--white); border: 1px solid var(--rule); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field label { font-weight: 600; font-size: 15px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.field textarea { resize: vertical; min-height: 160px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid color-mix(in srgb, var(--blue) 35%, transparent); border-color: var(--blue); }
.hint { font-size: 14px; color: var(--muted-2); }
.contact-form .btn { align-self: flex-start; border: 0; cursor: pointer; }
.contact-form .btn:disabled { opacity: 0.6; cursor: progress; }
.form-status { min-height: 1.6em; font-weight: 600; }
.form-status.is-success { color: #1B6B3A; }
.form-status.is-error { color: #B42318; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Narrower screens */
@media (max-width: 1080px) {
  :root { --gutter: 40px; --section: 88px; }
  .nav-link { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero-copy { max-width: 640px; }
  .row, .row-flip { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .row-flip .row-copy { order: -1; }
  .pricing .wrap, .faq { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .setup-steps, .compare { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .review-grid { grid-template-columns: minmax(0, 1fr); }
  .review-featured { display: flex; padding: 28px; }
  .review-featured figcaption { margin-top: auto; }
  .reviews-head { align-items: flex-start; }
  .support-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
@media (max-width: 720px) {
  :root { --gutter: 16px; --section: 64px; }
  body { font-size: 16px; }
  .header-row { padding-block: 10px; }
  .brand span { display: none; }
  .nav { gap: 8px; }
  .nav .btn-sm { display: none; } /* the hero's store button is right below */
  .lang summary { padding: 0 8px; }
  .hero { padding-block: 40px 56px; }
  .hero-visual { padding-bottom: 40px; }
  .saved-card { left: 0; width: 88%; }
  .brand-list { gap: 8px 24px; font-size: 20px; }
  .lead { font-size: 18px; }
  .btn-lg { width: 100%; white-space: normal; text-align: center; }
  .row { padding-block: 48px; }
  .panel-shot { width: min(240px, 100%); }
  .specs { padding-block: 56px; }
  .spec-list > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .plans { grid-template-columns: minmax(0, 1fr); }
  .plan { padding: 24px; }
  .compare-col { padding: 24px; }
  .contact-form { padding: 20px; }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .contact-form .btn { align-self: stretch; }
  .support-head { padding-block: 40px 24px; }
  .models { padding-block: 48px; }
  .section-block { padding-block: 56px 0; }
  .maker { align-items: flex-start; }
  .final-inner { padding-block: 56px; }
}
