:root {
  color-scheme: dark;
  --bg: #080a09;
  --bg-raised: #111411;
  --bg-soft: #171b17;
  --surface: #151815;
  --surface-2: #1b201c;
  --text: #f4f7f3;
  --muted: #9ca49d;
  --muted-strong: #c1c7c1;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --green: #31d566;
  --green-strong: #1fb854;
  --green-soft: rgba(49, 213, 102, 0.12);
  --red: #ff625d;
  --amber: #efb51b;
  --blue: #6f8cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --page: min(1180px, calc(100% - 40px));
  --nav-height: 66px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7f4;
  --bg-raised: #ffffff;
  --bg-soft: #e9ede8;
  --surface: #ffffff;
  --surface-2: #eef2ed;
  --text: #181c18;
  --muted: #626a63;
  --muted-strong: #454c46;
  --line: rgba(18, 27, 19, 0.11);
  --line-strong: rgba(18, 27, 19, 0.2);
  --green: #179743;
  --green-strong: #117b35;
  --green-soft: rgba(23, 151, 67, 0.1);
  --shadow: 0 24px 70px rgba(40, 52, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 9, 0.9);
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .site-nav {
  border-bottom-color: rgba(18, 27, 19, 0.1);
  background: rgba(245, 247, 244, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-links a,
.footer-links a {
  color: var(--muted-strong);
  font-size: 13px;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green);
}

.theme-toggle {
  justify-self: end;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--green);
  outline: none;
}

.theme-icon {
  font-size: 21px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: min(820px, 91svh);
  overflow: hidden;
  background: #050706;
  color: #f6f8f5;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 18%;
  transform: scale(1.04);
}

.hero-shade {
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(820px, 91svh);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 76px) 0 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 10vw, 124px);
  line-height: 0.92;
  font-weight: 780;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #d4d9d4;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.48;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #071008;
}

.button-primary:hover {
  background: #55e57e;
}

html[data-theme="light"] .button-primary {
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(8, 10, 9, 0.65);
  color: #f4f7f3;
}

.button-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-outline:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-facts span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #d2d8d2;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.38);
}

.hero-next {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: #d1d6d1;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.hero-next span {
  color: var(--green);
  margin-left: 8px;
}

.band {
  padding: clamp(80px, 10vw, 132px) 0;
  background: var(--bg);
}

.band-contrast {
  background: #050706;
  color: #f4f7f3;
}

.band-light {
  background: #edf1ec;
  color: #171b17;
}

.band-light .section-kicker {
  color: #168d3d;
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.5fr 1fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.statement h2,
.section-heading h2,
.theme-copy h2,
.shortcuts-heading h2,
.continuity h2,
.detail-copy h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-intro,
.section-heading > p,
.shortcuts-heading > p,
.theme-copy > p,
.continuity p,
.detail-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.band-light .theme-copy > p,
.band-light .detail-copy > p {
  color: #5f685f;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row > div {
  min-height: 138px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-row > div:first-child {
  padding-left: 0;
}

.trust-row > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 8px;
  font-size: 16px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-heading,
.shortcuts-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

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

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.screen-item {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
}

.screen-item img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: top;
  transition: transform 350ms ease;
}

.screen-item:hover img {
  transform: scale(1.025);
}

.screen-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 56px 18px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92) 48%);
}

.screen-item figcaption strong,
.screen-item figcaption span {
  display: block;
}

.screen-item figcaption strong {
  color: #fff;
  font-size: 15px;
}

.screen-item figcaption span {
  margin-top: 5px;
  color: #b7bdb7;
  font-size: 12px;
  line-height: 1.45;
}

.capability-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-group {
  padding: 30px 26px 34px;
  border-right: 1px solid var(--line);
}

.capability-group:first-child {
  padding-left: 0;
}

.capability-group:last-child {
  padding-right: 0;
  border-right: 0;
}

.group-index {
  margin-bottom: 44px;
  color: var(--green);
  font: 700 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.capability-group h3 {
  margin: 0 0 20px;
  font-size: 22px;
}

.capability-group ul,
.included ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-group li,
.included li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.capability-group li::before,
.included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.theme-layout,
.continuity-layout,
.detail-grid,
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.theme-copy > p,
.continuity p,
.detail-copy > p {
  margin-top: 26px;
}

.mode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.mode-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(18, 27, 19, 0.14);
  border-radius: 4px;
  color: #414941;
  font-size: 12px;
  background: #fff;
}

.mode-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.swatch-dark { background: #0a0b0a; }
.swatch-light { background: #fff; border: 1px solid #c4cac4; }
.swatch-private { background: #31d566; }

.theme-demo {
  border: 1px solid rgba(18, 27, 19, 0.13);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(48, 60, 50, 0.14);
  background: #f8faf7;
}

.demo-toolbar {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(18, 27, 19, 0.1);
  color: #586058;
  font-size: 12px;
}

.demo-toggle {
  border: 1px solid rgba(18, 27, 19, 0.16);
  border-radius: 4px;
  background: #fff;
  color: #202520;
  padding: 8px 10px;
  cursor: pointer;
}

.demo-app {
  padding: 28px;
  color: #181c18;
  background: #fff;
  transition: color 180ms ease, background 180ms ease;
}

.theme-demo.demo-dark .demo-app {
  color: #f3f6f2;
  background: #0a0c0a;
}

.theme-demo.demo-dark .demo-toolbar {
  color: #b5bbb5;
  background: #131613;
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-demo.demo-dark .demo-toggle {
  border-color: rgba(255, 255, 255, 0.14);
  color: #f2f5f1;
  background: #1c211c;
}

.demo-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.demo-header span {
  color: #7b837b;
  font-size: 12px;
}

.demo-label {
  color: #7c847c;
  font-size: 12px;
}

.demo-total {
  margin-top: 6px;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.demo-progress {
  height: 5px;
  margin: 22px 0 28px;
  background: rgba(120, 130, 121, 0.17);
}

.demo-progress span {
  display: block;
  width: 46%;
  height: 100%;
  background: #25c95a;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(110, 120, 111, 0.16);
  border-bottom: 1px solid rgba(110, 120, 111, 0.16);
}

.demo-stats > div {
  padding: 16px 10px;
  border-right: 1px solid rgba(110, 120, 111, 0.16);
}

.demo-stats > div:first-child { padding-left: 0; }
.demo-stats > div:last-child { border-right: 0; }
.demo-stats small,
.demo-stats strong { display: block; }
.demo-stats small { color: #7c847c; font-size: 10px; }
.demo-stats strong { margin-top: 5px; font-size: 12px; font-variant-numeric: tabular-nums; }
.demo-stats > div:first-child strong,
.demo-stats > div:last-child strong { color: #1ba54a; }

.demo-payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(110, 120, 111, 0.16);
  border-radius: 6px;
}

.demo-payment span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-payment i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #efb51b;
}

.demo-payment strong { color: #b47b00; font-size: 12px; }

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

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 630px;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
}

.ios-card::before {
  background: var(--blue);
}

.platform-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-topline span:first-child {
  color: var(--green);
  font-weight: 800;
}

.ios-card .platform-topline span:first-child {
  color: var(--blue);
}

.platform-card h3 {
  margin: 38px 0 14px;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.08;
}

.platform-summary {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.platform-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.platform-price strong {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.platform-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.included {
  margin: 42px 0 36px;
}

.included h4 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.platform-card .platform-actions .button {
  width: 100%;
  margin-top: 0;
}

.platform-note {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.delivery-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.delivery-note h3 {
  margin: 8px 0 10px;
  font-size: clamp(23px, 3vw, 32px);
}

.delivery-note p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.delivery-note .button {
  min-width: 210px;
}

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

.shortcut-flow figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #0d100e;
}

.shortcut-flow img {
  width: 100%;
  aspect-ratio: 0.64;
  object-fit: cover;
  object-position: top;
}

.shortcut-flow figcaption {
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shortcut-flow figcaption strong,
.shortcut-flow figcaption span {
  display: block;
}

.shortcut-flow figcaption span {
  margin-top: 6px;
  color: #a9b0aa;
  font-size: 12px;
  line-height: 1.5;
}

.step-number {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #081009;
  background: var(--green);
  font-weight: 800;
}

.shortcut-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.shortcut-options > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #0d100e;
}

.shortcut-options img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.shortcut-options strong,
.shortcut-options span {
  display: block;
}

.shortcut-options span {
  margin-top: 7px;
  color: #a9b0aa;
  font-size: 13px;
  line-height: 1.5;
}

.precision-note {
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  font-size: 14px !important;
}

.device-map {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 38px 38px;
  overflow: hidden;
}

.drive-core,
.device-node {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.drive-core {
  left: 50%;
  top: 50%;
  width: 180px;
  padding: 25px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.drive-core span,
.drive-core strong,
.device-node span,
.device-node small {
  display: block;
}

.drive-core span {
  color: var(--green);
  font: 800 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.drive-core strong { margin-top: 9px; }

.device-node {
  width: 150px;
  padding: 14px;
}

.device-node span { font-weight: 750; }
.device-node small { margin-top: 4px; color: var(--muted); }
.node-android { left: 18px; top: 42px; }
.node-iphone { right: 18px; top: 42px; }
.node-windows { left: 18px; bottom: 42px; }
.node-mac { right: 18px; bottom: 42px; }

.status-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(18, 27, 19, 0.12);
}

.status-list li {
  display: grid;
  grid-template-columns: 14px 0.45fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 27, 19, 0.12);
}

.status-list small { color: #657066; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; }
.status-dot.amber { background: var(--amber); }
.status-dot.green { background: var(--green-strong); }
.status-dot.blue { background: var(--blue); }

.detail-screen {
  max-width: 390px;
  margin: 0 auto;
}

.detail-screen img {
  width: 100%;
  border: 8px solid #0b0d0b;
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(36, 47, 38, 0.2);
}

.detail-screen figcaption {
  margin-top: 14px;
  color: #69726a;
  font-size: 12px;
  line-height: 1.5;
}

.testimonial {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-layout {
  display: grid;
  gap: 46px;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 60px;
  align-items: end;
}

.reviews-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.reviews-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.reviews-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.review-card-featured {
  grid-column: 1 / -1;
  border-color: color-mix(in srgb, var(--green) 38%, var(--line));
  background: linear-gradient(135deg, var(--green-soft), var(--surface) 68%);
}

.review-label {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 32px 0 24px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 780;
  line-height: 1.2;
}

.review-card:not(.review-card-featured) blockquote {
  font-size: 21px;
}

.review-card p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 12px;
}

.review-disclosure {
  max-width: 740px;
  margin: -18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-list summary {
  position: relative;
  padding: 20px 36px 20px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--green);
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin: 0;
  padding: 0 42px 22px 0;
  color: #aab1aa;
  font-size: 14px;
  line-height: 1.65;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta-inner > img { border-radius: 14px; margin-bottom: 22px; }
.final-cta-inner h2 { max-width: 820px; }
.final-cta-inner > p:not(.section-kicker) { max-width: 620px; color: var(--muted); line-height: 1.6; }
.final-cta .button-secondary { border-color: var(--line-strong); background: var(--surface); color: var(--text); }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.platform-dialog {
  width: min(560px, calc(100% - 28px));
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.platform-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.platform-dialog h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.platform-dialog p,
.platform-dialog li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.platform-dialog ul { padding-left: 18px; }
.dialog-confirm { width: 100%; margin-top: 12px; }
.dialog-payment-note,
.cta-payment-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cta-payment-note {
  margin: 14px 0 0;
}

.support-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.support-line a,
.site-footer a {
  color: inherit;
  text-underline-offset: 3px;
}

.final-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 22px 0 0;
}

.final-price strong {
  color: var(--green);
  font-size: clamp(30px, 4vw, 46px);
}

.final-price span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  :root { --page: min(100% - 32px, 760px); }
  .site-nav { grid-template-columns: 1fr auto; padding: 0 18px; }
  .nav-links { display: none; }
  .statement-grid,
  .section-heading,
  .shortcuts-heading,
  .theme-layout,
  .continuity-layout,
  .detail-grid,
  .faq-layout,
  .reviews-heading {
    grid-template-columns: 1fr;
  }
  .reviews-heading .section-kicker { grid-column: auto; margin-bottom: -20px; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading,
  .shortcuts-heading { gap: 24px; }
  .trust-row,
  .capability-groups { grid-template-columns: repeat(2, 1fr); }
  .trust-row > div:nth-child(2),
  .capability-group:nth-child(2) { border-right: 0; }
  .trust-row > div:nth-child(-n+2),
  .capability-group:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-row > div:first-child,
  .capability-group:first-child { padding-left: 26px; }
  .trust-row > div:last-child,
  .capability-group:last-child { padding-right: 26px; }
  .screen-gallery { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .shortcut-options > div { grid-template-columns: 100px 1fr; }
  .shortcut-options img { width: 100px; height: 100px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; }
}

@media (max-width: 680px) {
  :root { --nav-height: 60px; --page: calc(100% - 28px); }
  .site-nav { height: var(--nav-height); }
  .hero { min-height: 88svh; }
  .hero-content {
    min-height: 88svh;
    padding: calc(var(--nav-height) + 58px) 0 88px;
    justify-content: flex-end;
  }
  .hero-media img { object-position: 56% top; opacity: 0.72; }
  .hero-shade { background: rgba(0, 0, 0, 0.68); }
  .hero h1 { font-size: clamp(52px, 19vw, 78px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; }
  .hero-facts span { flex: 1 1 calc(50% - 9px); text-align: center; }
  .band { padding: 74px 0; }
  .statement-grid { gap: 20px; }
  .statement h2,
  .section-heading h2,
  .theme-copy h2,
  .shortcuts-heading h2,
  .continuity h2,
  .detail-copy h2,
  .faq h2,
  .final-cta h2 { font-size: 36px; }
  .trust-row,
  .capability-groups,
  .screen-gallery,
  .shortcut-flow,
  .shortcut-options { grid-template-columns: 1fr; }
  .trust-row > div,
  .trust-row > div:first-child,
  .trust-row > div:last-child,
  .capability-group,
  .capability-group:first-child,
  .capability-group:last-child {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-row > div:last-child,
  .capability-group:last-child { border-bottom: 0; }
  .group-index { margin-bottom: 18px; }
  .screen-item,
  .screen-item img { min-height: 640px; }
  .demo-app { padding: 20px; }
  .demo-header { margin-bottom: 34px; }
  .demo-stats { grid-template-columns: 1fr; }
  .demo-stats > div,
  .demo-stats > div:first-child {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(110, 120, 111, 0.16);
  }
  .demo-stats > div:last-child { border-bottom: 0; }
  .platform-card { min-height: 0; padding: 26px 22px; }
  .platform-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
  .shortcut-flow img { aspect-ratio: 0.68; }
  .shortcut-options > div { grid-template-columns: 80px 1fr; }
  .shortcut-options img { width: 80px; height: 80px; }
  .device-map { min-height: 520px; }
  .device-node { width: 132px; }
  .node-android, .node-windows { left: 10px; }
  .node-iphone, .node-mac { right: 10px; }
  .status-list li { grid-template-columns: 14px 1fr; }
  .status-list small { grid-column: 2; }
  .reviews-layout { gap: 32px; }
  .reviews-heading { gap: 22px; }
  .reviews-heading .section-kicker { margin-bottom: 0; }
  .reviews-heading h2 { font-size: 36px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card-featured { grid-column: auto; }
  .review-card { min-height: 210px; padding: 22px; }
  .review-card blockquote,
  .review-card:not(.review-card-featured) blockquote { font-size: 22px; }
  .platform-actions { grid-template-columns: 1fr; }
  .platform-price { align-items: flex-start; flex-direction: column; gap: 6px; }
  .delivery-note { grid-template-columns: 1fr; gap: 22px; padding: 22px; }
  .delivery-note .button { width: 100%; min-width: 0; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .platform-dialog { padding: 28px 22px 22px; }
}

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