:root {
  color-scheme: light;
  --bg: #f8faf7;
  --ink: #111611;
  --muted: #667069;
  --line: rgba(17, 22, 17, 0.11);
  --panel: rgba(255, 255, 252, 0.72);
  --panel-strong: #ffffff;
  --sage: #3c6d54;
  --sage-soft: #dfece4;
  --cyan: #ccedf2;
  --coral: #f4d0c4;
  --violet: #ded8ff;
  --yellow: #f5e5a6;
  --shadow: 0 28px 80px rgba(20, 29, 23, 0.14);
  --max: 1040px;
  --radius: 8px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(60, 109, 84, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(244, 208, 196, 0.3), transparent 30%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(17, 22, 17, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 17, 0.026) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black 0, rgba(0, 0, 0, 0.68) 44%, transparent 86%);
  opacity: 0.78;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.container {
  margin: 0 auto;
  width: min(var(--max), calc(100% - 96px));
}

.topbar {
  backdrop-filter: blur(22px);
  background: rgba(248, 250, 247, 0.74);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 22, 17, 0.12);
  height: 34px;
  width: 34px;
}

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

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 11px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  transform: translateY(-1px);
}

.language-toggle {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  justify-content: center;
  min-height: 34px;
  min-width: 46px;
  padding: 0 10px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-toggle:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 72px);
  padding: 82px 0 78px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.88fr);
}

.eyebrow,
.section-kicker {
  color: var(--sage);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  letter-spacing: 0;
  padding: 7px 11px;
  text-transform: none;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 4.9vw, 62px);
  letter-spacing: -0.026em;
  line-height: 1.04;
  margin-top: 18px;
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: -0.028em;
  line-height: 1.08;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  margin-top: 24px;
  max-width: 650px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0 18px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  content: "";
  inset: 0 auto 0 -100%;
  position: absolute;
  transform: skewX(-18deg);
  transition: left 520ms ease;
  width: 70%;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  left: 130%;
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(17, 22, 17, 0.2);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  color: var(--ink);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-stats span {
  backdrop-filter: blur(18px) saturate(1.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 22, 17, 0.08);
  color: var(--muted);
  font-size: 13px;
  padding: 8px 12px;
}

.hero-stats strong {
  color: var(--ink);
}

.hero-visual {
  min-height: 600px;
  overflow: hidden;
}

.device-stage {
  height: 600px;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.device-stage::before {
  background:
    linear-gradient(135deg, var(--sage-soft), transparent 54%),
    linear-gradient(315deg, var(--coral), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  content: "";
  inset: 52px 22px 54px 48px;
  position: absolute;
  transform: rotate(-4deg);
  z-index: -2;
}

.device-card {
  background: #101410;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  padding: 10px;
  position: absolute;
  width: 238px;
}

.device-card::before {
  background: #0b0d0b;
  border-radius: 0 0 14px 14px;
  content: "";
  height: 22px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 90px;
  z-index: 3;
}

.device-card img {
  aspect-ratio: 1242 / 2688;
  border-radius: 25px;
  object-fit: cover;
  width: 100%;
}

.device-card-front {
  animation: floatOne 6s ease-in-out infinite;
  right: 5%;
  top: 18px;
  z-index: 2;
}

.device-card-back {
  animation: floatTwo 7s ease-in-out infinite;
  left: 4%;
  top: 118px;
  transform: rotate(-7deg);
  z-index: 1;
}

.tool-dock {
  align-items: center;
  backdrop-filter: blur(24px) saturate(1.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  bottom: 36px;
  box-shadow: 0 22px 55px rgba(17, 22, 17, 0.14);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  left: 50%;
  padding: 10px;
  position: absolute;
  transform: translateX(-50%);
  width: min(330px, 82%);
  z-index: 4;
}

.tool-dock span {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 247, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  padding: 10px 12px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tool-dock span::before {
  align-items: center;
  background: rgba(60, 109, 84, 0.1);
  border: 1px solid rgba(60, 109, 84, 0.14);
  border-radius: 999px;
  color: var(--sage);
  content: attr(data-icon);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 5px;
}

.tool-dock span:hover {
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 22, 17, 0.08);
  transform: translateY(-2px);
}

.product-switch-band,
.band {
  padding: 88px 0;
}

.switch-card {
  backdrop-filter: blur(26px) saturate(1.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.switch-tabs {
  background: rgba(17, 22, 17, 0.04);
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
}

.switch-tab {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 850;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.switch-tab::before {
  align-items: center;
  background: rgba(60, 109, 84, 0.1);
  border: 1px solid rgba(60, 109, 84, 0.14);
  border-radius: 999px;
  color: var(--sage);
  content: attr(data-icon);
  display: inline-flex;
  font-size: 12px;
  height: 26px;
  justify-content: center;
  min-width: 26px;
  padding: 0 6px;
}

.switch-tab:hover {
  transform: translateY(-1px);
}

.switch-tab.is-active {
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 22, 17, 0.08);
  color: var(--ink);
}

.switch-panels {
  min-height: 320px;
  padding: 34px 38px 38px;
}

.switch-panel {
  animation: panelIn 360ms ease both;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.72fr 1.28fr;
}

.switch-panel[hidden] {
  display: none;
}

.switch-panel h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  max-width: 520px;
}

.capability-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.capability-grid span,
.ios-points p {
  backdrop-filter: blur(16px) saturate(1.08);
  background: linear-gradient(145deg, rgba(248, 250, 247, 0.82), rgba(255, 255, 255, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 26px rgba(17, 22, 17, 0.045);
}

.capability-grid span {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 10px;
  padding: 14px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.capability-grid span::before,
.ios-points p::before,
.harmony-notes p::before {
  align-items: center;
  background: rgba(60, 109, 84, 0.1);
  border: 1px solid rgba(60, 109, 84, 0.15);
  border-radius: 999px;
  color: var(--sage);
  content: attr(data-icon);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 30px;
  justify-content: center;
  min-width: 30px;
  padding: 0 6px;
}

.capability-grid span:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 18px 36px rgba(17, 22, 17, 0.08);
  transform: translateY(-2px);
}

.ios-points {
  display: grid;
  gap: 12px;
}

.ios-points p {
  display: grid;
  gap: 5px 12px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px;
}

.ios-points p::before {
  grid-row: span 2;
  margin-top: 2px;
}

.ios-points strong {
  font-size: 18px;
}

.ios-points span {
  color: var(--muted);
}

.harmony-preview,
.harmony-notes {
  display: grid;
}

.harmony-notes {
  gap: 12px;
}

.harmony-notes p {
  backdrop-filter: blur(16px) saturate(1.08);
  background: linear-gradient(145deg, rgba(248, 250, 247, 0.82), rgba(255, 255, 255, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 26px rgba(17, 22, 17, 0.045);
  display: grid;
  gap: 5px 12px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 18px;
}

.harmony-notes p::before {
  grid-row: span 2;
  margin-top: 2px;
}

.harmony-notes strong {
  font-size: 18px;
}

.harmony-notes span {
  color: var(--muted);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
  max-width: 780px;
}

.section-head p:last-child,
.ios-copy p {
  color: var(--muted);
  font-size: 18px;
}

.workflow-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.workflow-card,
.note,
.legal-section {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(17, 22, 17, 0.08);
}

.workflow-card {
  min-height: 260px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.workflow-card:hover {
  box-shadow: 0 24px 60px rgba(17, 22, 17, 0.12);
  transform: translateY(-5px);
}

.workflow-index {
  color: var(--sage);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 54px;
}

.workflow-card p {
  color: var(--muted);
  margin-top: 12px;
}

.ios-band {
  background: #101410;
  color: #fff;
  overflow: hidden;
}

.ios-layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
}

.ios-copy {
  display: grid;
  gap: 22px;
}

.ios-copy .section-kicker {
  color: #9fddbd;
}

.ios-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.ios-copy .button-secondary {
  width: fit-content;
}

.ios-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ios-actions .button {
  width: fit-content;
}

.ios-band .button-primary {
  background: #fff;
  color: var(--ink);
}

.ios-band .button-primary:hover {
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.14);
}

.app-store-button {
  width: fit-content;
}

.ios-shot-pair {
  height: 560px;
  overflow: hidden;
  position: relative;
}

.ios-shot-pair img {
  background: #0a0d0b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
  max-width: none;
  object-fit: cover;
  padding: 10px;
  position: absolute;
  width: 238px;
}

.ios-shot-main {
  right: 8%;
  top: 0;
  transform: rotate(4deg);
}

.ios-shot-secondary {
  left: 6%;
  top: 86px;
  transform: rotate(-6deg);
}

.harmony-band {
  background:
    linear-gradient(120deg, rgba(60, 109, 84, 0.1), transparent 38%),
    linear-gradient(300deg, rgba(244, 208, 196, 0.3), transparent 34%),
    #f7f7f3;
  overflow: hidden;
}

.harmony-layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.95fr);
}

.harmony-copy {
  display: grid;
  gap: 22px;
}

.harmony-copy p:last-of-type {
  color: var(--muted);
  font-size: 18px;
}

.harmony-copy .button-secondary {
  width: fit-content;
}

.harmony-shot-pair {
  height: 600px;
  position: relative;
}

.harmony-shot-pair::before {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(17, 22, 17, 0.12);
  content: "";
  inset: 54px 28px 30px;
  position: absolute;
  transform: rotate(-3deg);
}

.harmony-shot-pair img {
  background: #f3f1ec;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(17, 22, 17, 0.18);
  max-width: none;
  object-fit: cover;
  padding: 8px;
  position: absolute;
  width: 224px;
}

.harmony-shot-main {
  right: 10%;
  top: 0;
  transform: rotate(4deg);
  z-index: 2;
}

.harmony-shot-secondary {
  left: 9%;
  top: 80px;
  transform: rotate(-5deg);
  z-index: 1;
}

.cta-band {
  padding: 74px 0;
}

.cta-grid {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.cta-grid h2 {
  max-width: 780px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 30px 0;
}

.footer-grid {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.legal-page {
  padding: 46px 0 86px;
}

.legal-header {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  max-width: 840px;
}

.legal-header .eyebrow {
  justify-self: start;
}

.legal-header h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 8px;
}

.legal-header p {
  color: var(--muted);
  font-size: 19px;
}

.legal-section {
  margin-top: 14px;
  padding: 24px;
}

.legal-section h2 {
  font-size: 23px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.legal-section p,
.legal-section li {
  color: #3f4942;
}

.legal-section p + p,
.legal-section p + ul {
  margin-top: 10px;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.faq-section {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  padding: 28px;
}

.faq-heading {
  display: grid;
  gap: 10px;
  max-width: 300px;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-heading p {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  min-height: 68px;
  padding: 18px 0;
}

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

.faq-item summary span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.35;
}

.faq-item summary::after {
  align-items: center;
  background: rgba(60, 109, 84, 0.09);
  border: 1px solid rgba(60, 109, 84, 0.16);
  border-radius: 999px;
  color: var(--sage);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 650;
  height: 30px;
  justify-content: center;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 30px;
}

.faq-item[open] summary::after {
  background: var(--sage);
  color: #fff;
  content: "-";
  transform: rotate(180deg);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
  background: var(--sage);
  color: #fff;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(60, 109, 84, 0.34);
  outline-offset: 6px;
}

.faq-item p {
  max-width: 780px;
  padding: 0 54px 20px 0;
}

.mail-link {
  color: var(--sage);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOne {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes floatTwo {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(12px) rotate(-6deg); }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .hero-grid,
  .switch-panel,
  .ios-layout,
  .harmony-layout {
    grid-template-columns: 1fr;
  }

  .faq-section {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .faq-heading {
    max-width: 620px;
  }

  .hero-visual,
  .device-stage {
    min-height: 600px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .ios-shot-pair {
    height: 570px;
  }

  .harmony-shot-pair {
    height: 580px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .language-toggle {
    margin-left: auto;
  }

  .hero {
    padding: 44px 0 48px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .switch-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-visual,
  .device-stage {
    min-height: 520px;
  }

  .device-stage::before {
    inset: 34px 0 60px 0;
  }

  .device-card {
    width: 212px;
  }

  .device-card-front {
    right: 0;
    top: 12px;
  }

  .device-card-back {
    left: 18px;
    top: 110px;
  }

  .tool-dock {
    bottom: 12px;
    width: 100%;
  }

  .product-switch-band,
  .band,
  .cta-band {
    padding: 56px 0;
  }

  .switch-panels {
    padding: 20px;
  }

  .switch-tabs {
    gap: 4px;
    padding: 6px;
  }

  .switch-tab {
    flex-direction: column;
    font-size: 12px;
    gap: 4px;
    line-height: 1.15;
    min-height: 58px;
    padding: 4px;
  }

  .switch-tab::before {
    height: 24px;
    min-width: 24px;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ios-shot-pair {
    height: 500px;
  }

  .harmony-shot-pair {
    height: 500px;
  }

  .ios-shot-pair img,
  .harmony-shot-pair img {
    width: 210px;
  }

  .ios-shot-main {
    right: 12px;
  }

  .ios-shot-secondary {
    left: 14px;
    top: 102px;
  }

  .harmony-shot-main {
    right: 8px;
  }

  .harmony-shot-secondary {
    left: 10px;
    top: 96px;
  }

  .cta-grid,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page {
    padding: 34px 0 72px;
  }

  .legal-header {
    margin-bottom: 18px;
  }

  .legal-header h1 {
    font-size: clamp(38px, 13vw, 54px);
    margin-top: 4px;
  }

  .legal-section,
  .faq-section {
    padding: 20px;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 16px 0;
  }

  .faq-item summary span {
    font-size: 16px;
  }

  .faq-item p {
    padding-right: 0;
  }
}
