:root {
  --bg: #f8fbff;
  --bg-soft: #eaf0ff;
  --bg-warm: #fbfcf8;
  --surface: #ffffff;
  --surface-tint: #f2f5ff;
  --text: #151922;
  --muted: #626b7c;
  --faint: #dce4f6;
  --line: rgba(21, 25, 34, 0.11);
  --accent: #536cff;
  --accent-strong: #3146cf;
  --accent-soft: #eaf0ff;
  --green: #287a5f;
  --green-soft: #eaf8f1;
  --amber: #9a6419;
  --amber-soft: #fff4df;
  --shadow: 0 18px 46px rgba(42, 53, 84, 0.13);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(21, 25, 34, 0.08);
  background: rgba(248, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  box-shadow: 0 12px 34px rgba(42, 53, 84, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(83, 108, 255, 0.22);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--text);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--text);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--accent-strong);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1fr);
  gap: 64px;
  align-items: center;
  padding: 42px 0 50px;
}

.hero-copy,
.product-demo,
.demo-main,
.clip-row,
.slot-card {
  min-width: 0;
}

.hero-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 0 16px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 5.4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.button-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 25, 34, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
  outline: none;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(83, 108, 255, 0.35);
  background: var(--accent-soft);
  outline: none;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.proof-row span {
  border: 1px solid rgba(83, 108, 255, 0.22);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #3e4860;
  font-size: 13px;
  font-weight: 720;
}

.product-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(83, 108, 255, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--faint);
  background: #f6f8ff;
}

.demo-titlebar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9e0f5;
}

.demo-titlebar span:first-child {
  background: #ff7f73;
}

.demo-titlebar span:nth-child(2) {
  background: #f1c75b;
}

.demo-titlebar span:nth-child(3) {
  background: #62c985;
}

.demo-titlebar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.demo-shell {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 430px;
}

.demo-sidebar {
  border-right: 1px solid var(--faint);
  padding: 20px 14px;
  background: #fbfcff;
}

.demo-sidebar img {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  object-fit: contain;
}

.demo-sidebar nav {
  display: grid;
  gap: 7px;
}

.demo-sidebar span {
  border-radius: var(--radius);
  padding: 9px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.demo-sidebar .is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.demo-main {
  padding: 22px;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.demo-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.demo-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-status {
  border-radius: var(--radius);
  padding: 7px 9px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.clip-list {
  display: grid;
  gap: 10px;
}

.clip-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}

.clip-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-tint);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 860;
}

.clip-row strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clip-row p {
  overflow: hidden;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

kbd {
  min-width: 28px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 4px 7px;
  background: #fff;
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 820;
  text-align: center;
}

.slot-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.slot-card {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--accent-soft);
}

.slot-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.slot-card strong {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--text);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overlay-strip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-top: 1px solid var(--faint);
  background: var(--surface-tint);
  color: var(--text);
}

.overlay-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.overlay-strip kbd {
  border-color: var(--faint);
  background: #fff;
  color: var(--accent-strong);
}

.overlay-strip strong {
  margin-left: auto;
  font-size: 13px;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading h2,
.apps-copy h2,
.download-panel h2,
.legal-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.apps-copy p,
.download-panel p,
.legal-intro p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.trust-card,
.terms-grid article,
.setup-timeline article,
.profile-board article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card {
  min-height: 246px;
  padding: 22px;
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 880;
}

.feature-card h3,
.workflow-item h3,
.trust-card h3,
.terms-grid h3,
.setup-timeline h3,
.profile-board h3 {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-card p,
.workflow-item p,
.trust-card p,
.terms-grid p,
.setup-timeline p,
.profile-board p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.split-section,
.install-section,
.privacy-section {
  border-top: 1px solid var(--faint);
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--faint);
  padding: 24px 0;
}

.workflow-item:first-child {
  border-top: 0;
}

.workflow-item > span {
  display: inline-flex;
  width: fit-content;
  border-radius: var(--radius);
  padding: 8px 10px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 820;
}

.workflow-item h3 {
  margin-top: 0;
  font-size: 24px;
}

.setup-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.setup-timeline article {
  min-height: 226px;
  padding: 24px;
}

.setup-timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 880;
}

.apps-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  border-radius: var(--radius);
  padding: 64px;
  background: var(--bg-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 820;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

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

.profile-board article {
  min-height: 210px;
  padding: 22px;
}

.profile-dot {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}

.profile-dot.mail {
  background: #cce8ff;
}

.profile-dot.code {
  background: #d8f4df;
}

.profile-dot.design {
  background: #f6dfef;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  padding: 24px;
}

.trust-card:first-child {
  background: var(--accent-soft);
}

.trust-card:nth-child(2) {
  background: var(--green-soft);
}

.trust-card:nth-child(3) {
  background: var(--amber-soft);
}

.trust-card h3,
.terms-grid h3,
.profile-board h3 {
  margin-top: 0;
}

.trust-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.permissions-section {
  border-top: 1px solid var(--faint);
}

.permission-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.permission-list article {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 24px;
  border-top: 1px solid var(--faint);
}

.permission-list article:first-child {
  border-top: 0;
}

.permission-list strong {
  font-size: 16px;
}

.permission-list p {
  margin: 0;
  color: var(--muted);
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(83, 108, 255, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(42, 53, 84, 0.1);
  color: var(--text);
}

.download-panel p {
  max-width: 760px;
  color: var(--muted);
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.download-meta div {
  min-width: 0;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--surface-tint);
}

.download-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.download-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.download-panel .button-primary {
  background: var(--text);
  color: #fff;
}

.download-panel[data-download-state="pending"] .button-primary {
  cursor: default;
  opacity: 0.72;
}

.download-panel .button-primary:hover,
.download-panel .button-primary:focus-visible {
  background: var(--accent-strong);
}

.download-panel .button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.download-panel .button-secondary:hover,
.download-panel .button-secondary:focus-visible {
  border-color: rgba(83, 108, 255, 0.35);
  background: var(--accent-soft);
}

.download-note {
  max-width: 220px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
}

.terms-section {
  padding-top: 64px;
}

.legal-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border: 1px solid rgba(83, 108, 255, 0.18);
  border-radius: var(--radius);
  padding: 40px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(42, 53, 84, 0.08);
}

.legal-intro {
  position: sticky;
  top: 106px;
}

.legal-meta {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.legal-meta div {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--surface-tint);
}

.legal-meta dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.terms-grid article {
  padding: 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  border-radius: var(--radius);
  margin-top: 16px;
  padding: 42px;
  background: var(--bg-soft);
}

.final-cta img {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta p {
  max-width: 760px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 46px;
  border-top: 1px solid var(--faint);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.site-footer p,
.footer-fineprint {
  margin: 0;
}

.footer-brand p {
  margin-top: 4px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-nav div {
  display: grid;
  gap: 9px;
}

.footer-nav strong {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--text);
  font-weight: 760;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-strong);
  outline: none;
}

.footer-fineprint {
  grid-column: 1 / -1;
  padding-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-demo {
    max-width: 760px;
  }

  .feature-grid,
  .trust-grid,
  .setup-timeline,
  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apps-section {
    grid-template-columns: 1fr;
  }

  .legal-panel,
  .final-cta,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .legal-intro {
    position: static;
  }

  .download-actions {
    align-items: flex-start;
  }

  .download-note {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark img {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: fixed;
    inset: 64px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .section,
  .site-footer {
    width: min(100% - 32px, 480px);
    max-width: min(100% - 32px, 480px);
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero-logo {
    width: min(150px, 44vw);
    margin: 0 0 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .hero-copy,
  .product-demo {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy p,
  .section-heading p,
  .apps-copy p,
  .download-panel p,
  .legal-intro p,
  .final-cta p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions,
  .download-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .proof-row {
    gap: 8px;
    margin-top: 24px;
  }

  .download-actions {
    align-items: stretch;
  }

  .download-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-row span {
    flex: 1 1 auto;
    min-width: calc(50% - 4px);
    text-align: center;
  }

  .proof-row span:last-child {
    min-width: 100%;
  }

  .product-demo {
    border-radius: var(--radius);
  }

  .demo-titlebar {
    min-height: 38px;
    padding: 0 14px;
  }

  .demo-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .demo-sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--faint);
    padding: 14px;
  }

  .demo-sidebar img {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .demo-sidebar nav {
    display: flex;
    overflow-x: auto;
  }

  .demo-main {
    padding: 14px;
  }

  .demo-header,
  .overlay-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .demo-header h2 {
    font-size: 21px;
  }

  .clip-list {
    gap: 8px;
  }

  .clip-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
  }

  .clip-icon {
    width: 38px;
    height: 38px;
  }

  .clip-row p {
    display: none;
  }

  .slot-preview {
    gap: 8px;
  }

  .slot-card {
    padding: 10px;
  }

  .overlay-strip strong {
    margin-left: 0;
  }

  .slot-preview,
  .feature-grid,
  .trust-grid,
  .terms-grid,
  .setup-timeline,
  .profile-board {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading h2,
  .apps-copy h2,
  .download-panel h2,
  .legal-intro h2,
  .final-cta h2 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .feature-card,
  .setup-timeline article,
  .profile-board article {
    min-height: auto;
  }

  .workflow-item,
  .permission-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apps-section {
    width: min(100% - 32px, 480px);
    max-width: min(100% - 32px, 480px);
    padding: 34px 18px;
  }

  .download-panel {
    padding: 28px 18px;
  }

  .legal-panel,
  .final-cta {
    padding: 28px 18px;
  }

  .final-actions {
    justify-content: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

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