:root {
  color-scheme: light;
  --page-top: #dde7fb;
  --page-middle: #eef3fa;
  --page-bottom: #f6f9fc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-inset: #f3f3fb;
  --surface-dock: #ebedf9;
  --surface-border: #f2f4fa;
  --surface-shadow: rgba(213, 223, 237, 0.9);
  --ink: #43536c;
  --content-accent: #556397;
  --text-secondary: #7b8997;
  --sky: #4cc8ff;
  --sky-label: #0073cc;
  --sky-glow: rgba(0, 240, 255, 0.53);
  --sky-inner: #499df1;
  --leaf: #0fea94;
  --leaf-label: #007c69;
  --gold: #ffd100;
  --gold-label: #bd4e04;
  --coral: #ff5553;
  --coral-label: #af0036;
  --drop-shadow: rgba(0, 0, 0, 0.102);
  --page-max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: linear-gradient(180deg, var(--page-top), var(--page-middle) 42%, var(--page-bottom));
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--page-top), var(--page-middle) 42%, var(--page-bottom));
  background-attachment: fixed;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

img {
  display: block;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px clamp(16px, 4vw, 36px);
  background: rgba(221, 231, 251, 0.78);
  border-bottom: 1px solid rgba(242, 244, 250, 0.86);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--content-accent);
  font-size: 17px;
  font-weight: 800;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 0 var(--drop-shadow);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.nav-pill,
.language-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0)),
    var(--surface-strong);
  box-shadow: 0 1.5px 0 var(--drop-shadow);
}

.language-menu {
  position: relative;
}

.language-menu summary {
  cursor: pointer;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-start: 8px;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu div {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  width: min(78vw, 260px);
  max-height: min(62vh, 430px);
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  background: var(--surface-strong);
  box-shadow: 0 8px 18px var(--surface-shadow);
}

.language-menu:not([open]) div {
  display: none;
}

.language-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text-secondary);
}

.language-menu a[aria-current="page"] {
  color: var(--sky-label);
  background: var(--sky);
}

.page-shell {
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 116px;
}

.home-page {
  width: min(1120px, calc(100% - 32px));
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  min-height: calc(100vh - 88px);
}

.home-copy {
  max-width: 640px;
}

.home-copy h1,
.page-title h1,
.answer-article h1 {
  margin: 0;
  color: var(--content-accent);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-copy p:not(.app-section-title),
.page-title p,
.article-lead {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-actions,
.dock-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
  margin-top: 22px;
}

.app-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 0;
  overflow: hidden;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 1.5px 0 var(--drop-shadow);
}

.app-action span {
  position: relative;
  z-index: 1;
}

.app-action::before,
.app-action::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
}

.app-action::before {
  top: 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0));
}

.app-action::after {
  bottom: 0;
  height: 2px;
}

.app-action.sky {
  color: var(--sky-label);
  background:
    linear-gradient(180deg, var(--sky-glow), rgba(0, 240, 255, 0)),
    var(--sky);
}

.app-action.sky::after {
  background: var(--sky-inner);
}

.app-action.neutral {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0)),
    var(--surface-strong);
  border: 1px solid var(--surface-border);
}

.app-action.neutral::after {
  background: var(--surface-dock);
}

.app-action:active {
  transform: translateY(1.5px) scale(0.985);
  box-shadow: none;
}

.app-preview {
  display: flex;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 410px);
  min-height: 640px;
  padding: 16px 14px 18px;
  border: 1px solid var(--surface-border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.32)),
    var(--page-top);
  box-shadow: 0 16px 32px rgba(85, 99, 151, 0.14);
}

.phone-status {
  width: 92px;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 0 0 12px 12px;
  background: rgba(85, 99, 151, 0.22);
}

.phone-nav {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--content-accent);
  text-align: center;
}

.nav-icon-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: 0 2px 0 var(--drop-shadow);
}

.tiny-icon {
  width: 22px;
  height: 22px;
}

.mock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin: 12px 4px 14px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--surface-inset);
  color: var(--text-secondary);
  font-size: 14px;
}

.mock-search span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-secondary);
  border-radius: 999px;
}

.mock-search em {
  font-style: normal;
}

.mock-list {
  margin: 0 4px;
}

.mock-row .row-status,
.mock-row .chevron {
  display: none;
}

.mock-dock {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 14px 18px 22px;
  border-radius: 28px 28px 34px 34px;
  background: var(--surface-dock);
  box-shadow: 0 -5px 14px var(--surface-shadow);
}

.app-section {
  margin-top: 24px;
}

.app-section-title {
  margin: 0 0 8px;
  padding-inline-start: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.app-list-group {
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-strong);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.app-list-divider {
  display: block;
  height: 1px;
  margin-inline-start: 56px;
  background: var(--surface-dock);
}

.app-list-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto 14px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px;
  background: var(--surface-strong);
}

.app-list-row:hover {
  background: rgba(243, 243, 251, 0.72);
}

.colored-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.row-text {
  min-width: 0;
}

.row-text strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
}

.row-text em {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 14px;
  font-style: normal;
  line-height: 1.3;
}

.row-status {
  max-width: 190px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chevron {
  width: 10px;
  height: 10px;
  border-block-start: 2px solid var(--text-secondary);
  border-inline-end: 2px solid var(--text-secondary);
  transform: rotate(45deg);
}

[dir="rtl"] .chevron {
  transform: rotate(225deg);
}

.page-title {
  margin: 18px 0 28px;
}

.page-title.app-surface,
.app-surface {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.title-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.download-note {
  margin: 16px 4px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.store-badges.compact {
  gap: 8px;
}

.store-badge-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.store-badge-link:focus-visible {
  outline: 3px solid rgba(76, 200, 255, 0.5);
  outline-offset: 4px;
}

.store-badge-link:active {
  transform: translateY(1.5px) scale(0.985);
}

.store-badge-image {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.store-badges.compact .store-badge-image {
  height: 42px;
}

.store-badge-link.unavailable .store-badge-image {
  filter: grayscale(1);
  opacity: 0.46;
}

.store-badge-link.waitlist-trigger .store-badge-image {
  opacity: 0.92;
}

.store-badge-status {
  position: absolute;
  inset-inline-end: -7px;
  top: -7px;
  max-width: 112px;
  padding: 4px 7px;
  border: 1px solid rgba(242, 244, 250, 0.92);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--content-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 2px 0 var(--drop-shadow);
}

.waitlist-dialog {
  width: min(430px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.waitlist-dialog::backdrop {
  background: rgba(67, 83, 108, 0.38);
  backdrop-filter: blur(10px);
}

.waitlist-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 18px 44px rgba(67, 83, 108, 0.18);
}

.waitlist-close {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: var(--surface-inset);
  color: var(--content-accent);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.waitlist-close:focus-visible,
.waitlist-field input:focus-visible,
.waitlist-submit:focus-visible {
  outline: 3px solid rgba(76, 200, 255, 0.5);
  outline-offset: 3px;
}

.waitlist-heading {
  display: block;
  padding-inline-end: 42px;
}

.waitlist-heading h2 {
  margin: 0;
  color: var(--content-accent);
  font-size: 23px;
  line-height: 1.18;
}

.waitlist-lead {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.waitlist-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.waitlist-field {
  display: grid;
  gap: 6px;
  color: var(--content-accent);
  font-size: 14px;
  font-weight: 800;
}

.waitlist-field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  background: var(--surface-inset);
  color: var(--ink);
  font: inherit;
}

.waitlist-field input::placeholder {
  color: rgba(123, 137, 151, 0.76);
}

.waitlist-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.waitlist-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.waitlist-form[data-submitted="true"] .waitlist-field,
.waitlist-form[data-submitted="true"] .waitlist-submit {
  display: none;
}

.waitlist-status {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-inset);
  color: var(--text-secondary);
  font-size: 14px;
}

.waitlist-status[data-tone="success"] {
  background: rgba(15, 234, 148, 0.14);
  color: var(--leaf-label);
}

.waitlist-status[data-tone="warning"],
.waitlist-status[data-tone="error"] {
  background: rgba(255, 209, 0, 0.16);
  color: var(--gold-label);
}

.waitlist-gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.landing-page {
  width: min(1120px, calc(100% - 32px));
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px) 0 52px;
}

.landing-hero-copy {
  max-width: 620px;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-brand-lockup img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 2px 0 var(--drop-shadow);
}

.landing-hero h1,
.section-heading h2,
.story-copy h2,
.landing-proof h2,
.landing-final h2 {
  margin: 0;
  color: var(--content-accent);
  letter-spacing: 0;
}

.landing-hero h1 {
  max-width: 680px;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.02;
}

.landing-hero-copy > p:not(.app-section-title) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: clamp(18px, 2.1vw, 22px);
}

.landing-hero .store-badges {
  margin-top: 24px;
}

.hero-device-stage {
  position: relative;
  min-height: 560px;
}

.device-shell {
  position: relative;
  width: 230px;
  min-height: 450px;
  padding: 10px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    var(--content-accent);
  box-shadow: 0 18px 34px rgba(85, 99, 151, 0.2);
}

.device-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 58px;
  height: 14px;
  border-radius: 999px;
  background: rgba(13, 17, 24, 0.72);
  transform: translateX(-50%);
}

.device-screen {
  min-height: 430px;
  padding: 38px 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(242, 244, 250, 0.92);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--page-top), var(--page-middle) 42%, var(--page-bottom));
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--content-accent);
  font-size: 13px;
  font-weight: 900;
}

.device-topbar img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.mini-rows {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mini-rows.compact {
  gap: 7px;
  margin-top: 10px;
}

.mini-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 8px;
  border: 1px solid rgba(242, 244, 250, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.mini-rows.compact .mini-row {
  min-height: 38px;
  grid-template-columns: 20px minmax(0, 1fr);
  padding: 7px;
}

.mini-row-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--sky);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.mini-rows.compact .mini-row-icon {
  width: 20px;
  height: 20px;
}

.mini-row-icon.tone-1,
.proof-tag.tone-1 {
  background: var(--leaf);
}

.mini-row-icon.tone-2,
.proof-tag.tone-2 {
  background: var(--gold);
}

.mini-row-icon.tone-3,
.proof-tag.tone-3 {
  background: var(--coral);
}

.mini-row strong,
.mini-row em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-row strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.mini-row em {
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 11px;
  font-style: normal;
}

.device-footer {
  margin-top: 14px;
}

.device-footer span {
  display: block;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--sky-label);
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 -2px 0 var(--sky-inner), 0 2px 0 var(--drop-shadow);
}

.hero-phone {
  position: absolute;
  top: 54px;
}

.hero-phone.center {
  left: 50%;
  width: 250px;
  min-height: 480px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-phone.side {
  top: 106px;
  width: 190px;
  min-height: 388px;
  opacity: 0.92;
  z-index: 1;
}

.hero-phone.side .device-screen {
  min-height: 368px;
}

.hero-phone.left {
  left: 0;
  transform: rotate(-7deg);
}

.hero-phone.right {
  right: 0;
  transform: rotate(7deg);
}

.landing-band {
  margin-top: 24px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.story-copy h2,
.landing-proof h2,
.landing-final h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.section-heading p:not(.app-section-title),
.story-copy p,
.landing-proof p,
.landing-final p {
  color: var(--text-secondary);
  font-size: 17px;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.feature-card {
  min-width: 0;
  padding: 15px;
  border-radius: 12px;
  background: var(--surface-strong);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 12px 0 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.landing-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.landing-story.reverse .story-copy {
  order: 2;
}

.story-copy p {
  margin: 14px 0 0;
}

.story-bullets {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-bullets li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border-radius: 12px;
  background: var(--surface-inset);
  color: var(--ink);
  font-weight: 750;
}

.story-bullets li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sky);
  transform: translateY(-50%);
  box-shadow: inset 0 -1.5px 0 var(--sky-inner);
}

.story-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-inset);
}

.story-phone {
  width: 230px;
  min-height: 430px;
  transform: rotate(2deg);
}

.story-phone .device-screen {
  min-height: 410px;
}

.agent-canvas {
  position: relative;
  width: min(100%, 430px);
  min-height: 390px;
}

.agent-canvas::before {
  content: "";
  position: absolute;
  inset: 68px 52px 92px;
  border: 2px dashed rgba(196, 126, 255, 0.34);
  border-radius: 42px;
}

.agent-phone-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 174px;
  padding: 16px;
  border-radius: 26px;
  background: var(--surface-strong);
  box-shadow: 0 14px 26px rgba(85, 99, 151, 0.18);
  transform: translate(-50%, -50%);
}

.agent-main-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.agent-phone-card > strong {
  display: block;
  margin-top: 8px;
  color: var(--content-accent);
  font-size: 18px;
}

.agent-node {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: 92px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.agent-node img {
  width: 58px;
  height: 58px;
  padding: 10px;
  border-radius: 17px;
  object-fit: contain;
  background: var(--surface-strong);
  box-shadow: 0 8px 18px rgba(85, 99, 151, 0.18);
}

.agent-node.node-0 {
  left: 6%;
  top: 10%;
}

.agent-node.node-1 {
  right: 6%;
  top: 10%;
}

.agent-node.node-2 {
  left: 6%;
  bottom: 12%;
}

.agent-node.node-3 {
  right: 6%;
  bottom: 12%;
}

.home-screen-mock {
  width: min(100%, 350px);
  min-height: 430px;
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(76, 200, 255, 0.22), rgba(15, 234, 148, 0.14)),
    var(--page-top);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 16px 30px rgba(85, 99, 151, 0.14);
}

.widget-card {
  display: grid;
  gap: 12px;
  min-height: 164px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--content-accent);
  box-shadow: 0 8px 18px rgba(85, 99, 151, 0.12);
}

.widget-card img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
}

.widget-card strong {
  align-self: end;
  font-size: 20px;
}

.home-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.home-icon-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 4px 10px rgba(85, 99, 151, 0.12);
}

.home-icon-grid img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.sync-visual {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 94px minmax(0, 0.68fr);
  gap: 0;
  padding: 28px;
}

.sync-device {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 18px;
  border: 8px solid #111827;
  background: linear-gradient(180deg, var(--page-top), var(--page-bottom));
  box-shadow: 0 12px 24px rgba(85, 99, 151, 0.16);
}

.sync-device.pad {
  width: 210px;
  border-radius: 26px;
}

.sync-device.phone {
  width: 120px;
  min-height: 226px;
  border-radius: 30px;
}

.sync-cloud {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-inline: -8px;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: 0 8px 20px rgba(85, 99, 151, 0.18);
}

.sync-cloud-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.app-guide-visual {
  min-height: 420px;
  overflow: visible;
  background: transparent;
}

.agent-visual.app-guide-visual,
.widget-visual.app-guide-visual,
.sync-visual.app-guide-visual {
  grid-template-columns: 1fr;
  padding: 0;
  place-items: center;
}

.agent-poster {
  width: min(100%, 460px);
  padding: 8px 20px 22px;
}

.agent-poster-header {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.agent-poster h3 {
  display: grid;
  gap: 2px;
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 6vw, 34px);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
}

.agent-poster h3 span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-poster-capability-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.agent-poster-capability-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 11px 8px;
  border-radius: 16px;
  background: rgba(243, 243, 251, 0.72);
  text-align: center;
}

.agent-poster-capability-grid strong,
.agent-poster-capability-grid em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-poster-capability-grid strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.agent-poster-capability-grid em {
  color: var(--text-secondary);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.agent-poster-canvas {
  position: relative;
  height: 390px;
  margin-top: 18px;
}

.agent-poster-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.agent-poster-connections path {
  fill: none;
  stroke: url("#agentConnectionGradient");
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-dasharray: 7 7;
}

.agent-poster-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(136px, 36%, 190px);
  aspect-ratio: 1 / 1.42;
  border-radius: 32px;
  background: var(--content-accent);
  box-shadow: 0 12px 18px rgba(85, 99, 151, 0.24);
  transform: translate(-50%, -50%);
}

.agent-poster-phone-screen {
  position: absolute;
  inset: 8px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 24px 20px;
  border-radius: 25px;
  background: var(--surface-strong);
}

.agent-poster-phone-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.agent-poster-phone-title span {
  min-width: 0;
}

.agent-poster-phone-title em,
.agent-poster-phone-title strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-poster-phone-title em {
  color: var(--content-accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.agent-poster-phone-title strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.agent-poster-phone-title b {
  margin-left: auto;
  color: var(--accent-ai-purple, #c47eff);
  font-size: 16px;
  line-height: 1;
}

.agent-poster-phone-rows {
  display: grid;
  gap: 7px;
}

.agent-poster-project-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(243, 243, 251, 0.72);
}

.agent-poster-check {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(76, 200, 255, 0.88);
}

.agent-poster-check.leaf {
  background: rgba(15, 234, 148, 0.88);
}

.agent-poster-check.gold {
  background: rgba(255, 209, 0, 0.88);
}

.agent-poster-check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 8px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.agent-poster-project-row strong,
.agent-poster-project-row em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-poster-project-row strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.agent-poster-project-row em {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.agent-poster-status {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-inset);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.agent-poster-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf);
}

.agent-poster-node {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: clamp(78px, 23%, 92px);
  transform: translate(-50%, -50%);
}

.agent-poster-node span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 10px;
  border-radius: 18px;
  background: #f8faff;
  box-shadow:
    0 9px 15px rgba(0, 0, 0, 0.22),
    0 0 16px rgba(196, 126, 255, 0.2);
}

.agent-poster-node span::after {
  content: "";
  position: absolute;
}

.agent-poster-node img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agent-poster-node strong {
  max-width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  font-weight: 950;
  text-align: center;
  text-overflow: ellipsis;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.agent-poster-node.node-0 {
  left: 10%;
  top: 18%;
}

.agent-poster-node.node-1 {
  left: 90%;
  top: 18%;
}

.agent-poster-node.node-2 {
  left: 10%;
  top: 48%;
}

.agent-poster-node.node-3 {
  left: 90%;
  top: 48%;
}

.agent-poster-node.node-4 {
  left: 50%;
  top: 82%;
}

.widget-guide-phone {
  position: relative;
  container-type: inline-size;
  width: min(100%, 402px);
  aspect-ratio: 402 / 386;
  overflow: hidden;
  border-radius: 36px;
  background: #7f9dcf;
  box-shadow: 0 7px 12px rgba(213, 223, 237, 0.5);
}

.widget-guide-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  pointer-events: none;
}

.widget-guide-wallpaper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.widget-guide-status {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: calc(62 * 100% / 386);
  padding: calc(22 * 100% / 386) calc(54 * 100% / 402) 0 calc(54 * 100% / 402);
  color: #fff;
  font-size: clamp(10px, 4.2vw, 17px);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.widget-guide-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.widget-guide-status-icons i {
  display: inline-block;
}

.widget-guide-status-icons .cellular {
  width: 16px;
  height: 12px;
  background: linear-gradient(90deg, #fff 3px, transparent 0 5px, #fff 0 8px, transparent 0 10px, #fff 0 13px, transparent 0 15px, #fff 0);
  clip-path: polygon(0 100%, 0 72%, 18% 72%, 18% 100%, 28% 100%, 28% 52%, 46% 52%, 46% 100%, 56% 100%, 56% 30%, 74% 30%, 74% 100%, 84% 100%, 84% 10%, 100% 10%, 100% 100%);
}

.widget-guide-status-icons .wifi {
  width: 15px;
  height: 11px;
  border-top: 3px solid #fff;
  border-radius: 999px 999px 0 0;
}

.widget-guide-status-icons .battery {
  position: relative;
  width: 24px;
  height: 12px;
  border: 1.2px solid rgba(255, 255, 255, 0.86);
  border-radius: 3px;
}

.widget-guide-status-icons .battery::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 6px;
  border-radius: 1.5px;
  background: rgba(255, 255, 255, 0.92);
}

.widget-guide-status-icons .battery::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3px;
  width: 2px;
  height: 5px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.widget-guide-preview {
  position: absolute;
  left: calc(26.667 * 100% / 402);
  top: calc(90 * 100% / 386);
  width: calc(164 * 100% / 402);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 24px;
}

.widget-guide-sample {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: widgetSampleFade 8s ease-in-out infinite;
}

.widget-guide-sample.sample-0 {
  opacity: 1;
  animation-delay: 0s;
}

.widget-guide-sample.sample-1 {
  animation-delay: 2s;
}

.widget-guide-sample.sample-2 {
  animation-delay: 4s;
}

.widget-guide-sample.sample-3 {
  animation-delay: 6s;
}

.widget-guide-sample img {
  width: 106%;
  height: 106%;
  object-fit: cover;
  transform: translate(-3%, -3%);
}

.widget-guide-sample::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.13) 46%, rgba(0, 0, 0, 0.46));
}

.widget-guide-sample span {
  position: absolute;
  inset-inline: 7.3%;
  bottom: 5.5%;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  font-size: clamp(10.5px, 3.3vw, 13.5px);
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  text-shadow:
    0 0.5px 0.28px rgba(0, 0, 0, 0.38),
    0 0.95px 1.25px rgba(0, 0, 0, 0.3),
    0 1.8px 3.2px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

@keyframes widgetSampleFade {
  0%,
  21% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  30%,
  91% {
    opacity: 0;
    transform: translateY(2.5%) scale(1.045);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.widget-guide-widget-label {
  position: absolute;
  left: calc((26.667 + 82) * 100% / 402);
  top: calc(265 * 100% / 386);
  display: block;
  width: calc(88 * 100% / 402);
  overflow: visible;
  color: #fff;
  font-size: clamp(8px, 2.81vw, 11.3px);
  font-size: clamp(8px, 2.81cqw, 11.3px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.widget-guide-home-icon {
  position: absolute;
  left: calc(var(--x) * 100% / 402);
  top: calc(var(--y) * 100% / 386);
  display: grid;
  justify-items: center;
  gap: calc(5 * 100% / 72);
  width: calc(72 * 100% / 402);
  height: calc(83 * 100% / 386);
  overflow: visible;
}

.widget-guide-home-icon img {
  width: calc(64 * 100% / 72);
  aspect-ratio: 1;
  object-fit: cover;
}

.widget-guide-home-icon.own-app img {
  border-radius: calc(14 * 100% / 64);
}

.widget-guide-home-icon em {
  display: block;
  width: calc(88 * 100% / 72);
  overflow: visible;
  color: #fff;
  font-size: clamp(8px, 2.81vw, 11.3px);
  font-size: clamp(8px, 2.81cqw, 11.3px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.widget-guide-focus-marker {
  position: absolute;
  width: calc(36 * 100% / 402);
  height: calc(44 * 100% / 386);
}

.widget-guide-focus-marker.left {
  left: calc(2 * 100% / 402);
  top: calc(67 * 100% / 386);
}

.widget-guide-focus-marker.right {
  left: calc(179.334 * 100% / 402);
  top: calc(67 * 100% / 386);
  transform: scaleX(-1);
}

.widget-guide-focus-arrow {
  position: absolute;
  left: calc(182 * 100% / 402);
  top: calc(237 * 100% / 386);
  width: calc(84 * 100% / 402);
  height: calc(70 * 100% / 386);
}

.widget-guide-search,
.widget-guide-dock {
  position: absolute;
  top: calc(704 * 100% / 386);
}

.icloud-guide-card {
  position: relative;
  width: min(100%, 500px);
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 18% 13%, rgba(255, 255, 255, 0.58) 0 18%, transparent 19%),
    radial-gradient(ellipse at 82% 16%, rgba(255, 255, 255, 0.44) 0 15%, transparent 16%),
    linear-gradient(135deg, #ddf6ff, #eaf8f0 52%, #f7fbf4);
}

.icloud-guide-card::before,
.icloud-guide-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -7%;
  height: 42%;
  border-radius: 50% 50% 0 0 / 32% 38% 0 0;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(-1deg);
}

.icloud-guide-card::after {
  bottom: -1%;
  background: rgba(76, 200, 255, 0.16);
  transform: rotate(2deg);
}

.icloud-guide-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 500 / 236;
  margin-top: 4px;
}

.icloud-guide-device {
  position: absolute;
  z-index: 1;
  border-radius: 22px;
  background: linear-gradient(135deg, #252b36, #05070a);
  box-shadow: 0 5px 8px rgba(213, 223, 237, 0.45);
}

.icloud-guide-device::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.2px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.icloud-guide-device::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.icloud-guide-device.pad {
  left: calc((180 - 93) * 100% / 500);
  top: calc((144 - 66) * 100% / 236);
  width: calc(186 * 100% / 500);
  aspect-ratio: 186 / 132;
}

.icloud-guide-device.phone {
  left: calc((368 - 46) * 100% / 500);
  top: calc((133 - 77) * 100% / 236);
  width: calc(92 * 100% / 500);
  aspect-ratio: 92 / 154;
  border-radius: 20px;
}

.icloud-guide-device-screen {
  position: absolute;
  overflow: hidden;
  border-radius: 17px;
  background: linear-gradient(180deg, var(--page-top), var(--page-middle) 42%, var(--page-bottom));
}

.icloud-guide-device.pad .icloud-guide-device-screen {
  inset: calc(7 * 100% / 132) calc(7 * 100% / 186);
  border-radius: 17px;
}

.icloud-guide-device.phone .icloud-guide-device-screen {
  inset: calc(5 * 100% / 154) calc(5 * 100% / 92);
  border-radius: 15px;
}

.icloud-guide-mini-rows {
  display: grid;
  gap: 7px;
  padding: 9px 12px 0;
}

.icloud-guide-mini-rows.compact {
  gap: 5px;
  padding: 18px 9px 0;
}

.icloud-guide-mini-row {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
}

.icloud-guide-mini-rows.compact .icloud-guide-mini-row {
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 5px;
  padding: 5px 6px;
  border-radius: 9px;
}

.icloud-guide-mini-row > i {
  width: 17px;
  height: 17px;
  border-radius: 6px;
  background: rgba(76, 200, 255, 0.88);
}

.icloud-guide-mini-row.tone-1 > i {
  background: rgba(15, 234, 148, 0.88);
}

.icloud-guide-mini-row.tone-2 > i {
  background: rgba(255, 209, 0, 0.88);
}

.icloud-guide-mini-row.tone-3 > i {
  background: rgba(196, 126, 255, 0.88);
}

.icloud-guide-mini-rows.compact .icloud-guide-mini-row > i {
  width: 15px;
  height: 15px;
  border-radius: 5px;
}

.icloud-guide-mini-row span {
  display: grid;
  gap: 4px;
}

.icloud-guide-mini-row b,
.icloud-guide-mini-row em {
  display: block;
  border-radius: 999px;
}

.icloud-guide-mini-row b {
  width: 74px;
  height: 5px;
  background: rgba(67, 83, 108, 0.56);
}

.icloud-guide-mini-row em {
  width: 48px;
  height: 4px;
  background: rgba(123, 137, 151, 0.36);
}

.icloud-guide-mini-rows.compact .icloud-guide-mini-row b {
  width: 28px;
  height: 4px;
}

.icloud-guide-mini-rows.compact .icloud-guide-mini-row em {
  width: 20px;
  height: 3px;
}

.icloud-guide-sensor {
  position: absolute;
  left: 50%;
  top: calc(17 * 100% / 154);
  width: calc(29 * 100% / 92);
  height: calc(8 * 100% / 154);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.76);
  transform: translate(-50%, -50%);
}

.icloud-guide-sensor::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 3.5px;
  height: 3.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.icloud-guide-camera {
  position: absolute;
  left: 50%;
  top: calc(5.5 * 100% / 132);
  width: 4.5px;
  height: 4.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transform: translate(-50%, -50%);
}

.icloud-guide-camera::after {
  content: "";
  position: absolute;
  inset: 0.95px;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.62);
}

.icloud-guide-home-indicator {
  position: absolute;
  left: 50%;
  bottom: calc(10.5 * 100% / 132);
  width: calc(44 * 100% / 186);
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.icloud-guide-device.phone .icloud-guide-home-indicator {
  bottom: calc(11.5 * 100% / 154);
  width: calc(28 * 100% / 92);
  background: rgba(0, 0, 0, 0.34);
}

.icloud-guide-badge {
  position: absolute;
  left: calc((298 - 42) * 100% / 500);
  top: calc((139 - 42) * 100% / 236);
  z-index: 2;
  display: grid;
  place-items: center;
  width: calc(84 * 100% / 500);
  aspect-ratio: 1;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: 0 5px 9px rgba(213, 223, 237, 0.5);
}

.icloud-guide-icon {
  width: 62%;
  height: 62%;
  animation: icloudGuideSpin 3.2s linear infinite;
  object-fit: contain;
}

@keyframes icloudGuideSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .icloud-guide-icon {
    animation: none;
  }
}

.icloud-guide-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px 30px 32px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.44);
}

.landing-proof,
.landing-final {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.landing-proof p,
.landing-final p {
  margin: 12px 0 0;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--sky);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.landing-final {
  border-radius: 28px 28px 0 0;
  background: var(--surface-dock);
  box-shadow: 0 -5px 14px var(--surface-shadow);
}

.landing-final .store-badges {
  justify-content: flex-end;
}

.store-download-panel {
  margin-top: 24px;
}

.store-download-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.store-download-surface h2 {
  margin: 0 0 5px;
  color: var(--content-accent);
  font-size: 22px;
  line-height: 1.18;
}

.store-download-surface p {
  margin: 0;
  color: var(--text-secondary);
}

.app-store-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.64fr);
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.promo-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.promo-copy h2 {
  margin: 0 0 5px;
  color: var(--content-accent);
  font-size: 22px;
  line-height: 1.18;
}

.promo-copy p:not(.app-section-title) {
  margin: 0;
  color: var(--text-secondary);
}

.promo-copy .store-badges {
  margin-top: 12px;
}

.promo-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1080 / 2337;
  max-height: 560px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface-inset);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.promo-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
  background: var(--surface-strong);
}

.app-store-promo.compact {
  display: block;
  padding: 14px;
}

.app-store-promo.compact .promo-copy {
  margin-bottom: 12px;
}

.app-store-promo.compact .title-icon {
  width: 36px;
  height: 36px;
}

.app-store-promo.compact .promo-copy h2 {
  font-size: 18px;
}

.app-store-promo.compact .promo-copy p:not(.app-section-title) {
  font-size: 14px;
}

.app-store-promo.compact .promo-frame {
  max-height: 430px;
}

.download-dock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  border-radius: 28px 28px 0 0;
  background: var(--surface-dock);
  box-shadow: 0 -5px 14px var(--surface-shadow);
}

.download-dock > .store-badges {
  justify-content: flex-end;
}

.download-dock.compact {
  display: block;
  border-radius: 18px;
  box-shadow: 0 3px 4px var(--surface-shadow);
}

.dock-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dock-copy h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 20px;
}

.dock-copy p:not(.app-section-title) {
  margin: 0;
  color: var(--text-secondary);
}

.download-dock.compact .dock-actions {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.download-dock.compact > .store-badges {
  justify-content: flex-start;
  margin-top: 14px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 22px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
}

.answer-article {
  display: block;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.article-title-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.answer-section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--surface-dock);
}

.answer-section h2 {
  margin: 0 0 8px;
  color: var(--content-accent);
  font-size: 21px;
}

.answer-section p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.native-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.native-list li {
  position: relative;
  padding: 10px 12px 10px 40px;
  border-radius: 14px;
  background: var(--surface-inset);
  color: var(--ink);
}

.native-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sky);
  transform: translateY(-50%);
  box-shadow: inset 0 -1.5px 0 var(--sky-inner);
}

[dir="rtl"] .native-list li {
  padding: 10px 40px 10px 12px;
}

[dir="rtl"] .native-list li::before {
  right: 14px;
  left: auto;
}

.article-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 76px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(16px, 4vw, 36px) 32px;
  border-top: 1px solid rgba(242, 244, 250, 0.86);
  color: var(--text-secondary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand strong {
  color: var(--content-accent);
}

.footer-brand p {
  max-width: 660px;
  margin: 4px 0 0;
  font-size: 14px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--content-accent);
  font-weight: 800;
}

[dir="rtl"] .site-header,
[dir="rtl"] .home-hero,
[dir="rtl"] .landing-hero,
[dir="rtl"] .landing-story,
[dir="rtl"] .landing-proof,
[dir="rtl"] .landing-final,
[dir="rtl"] .download-dock,
[dir="rtl"] .app-store-promo,
[dir="rtl"] .article-shell,
[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .story-bullets li {
  padding: 10px 36px 10px 12px;
}

[dir="rtl"] .story-bullets li::before {
  right: 14px;
  left: auto;
}

@media (max-width: 940px) {
  .home-hero,
  .landing-hero,
  .landing-story,
  .landing-proof,
  .landing-final,
  .article-shell,
  .download-dock,
  .app-store-promo,
  .store-download-surface {
    grid-template-columns: 1fr;
  }

  .download-dock > .store-badges,
  .store-download-surface > .store-badges,
  .landing-final .store-badges {
    justify-content: flex-start;
  }

  .landing-story.reverse .story-copy {
    order: 0;
  }

  .landing-hero {
    min-height: auto;
  }

  .hero-device-stage {
    min-height: 530px;
    overflow: hidden;
  }

  .feature-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sync-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 22px;
  }

  .phone-shell {
    min-height: 590px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    display: block;
    min-height: 64px;
    gap: 0;
  }

  .brand span {
    display: none;
  }

  .brand {
    position: absolute;
    top: 10px;
    inset-inline-start: 20px;
  }

  .site-header nav {
    position: fixed;
    top: 10px;
    inset-inline-start: auto;
    inset-inline-end: 16px;
    display: block;
    flex-wrap: nowrap;
    gap: 6px;
    width: max-content;
    min-width: 0;
  }

  .site-header nav .nav-pill {
    display: none;
  }

  .nav-pill,
  .language-menu summary {
    min-height: 32px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .language-menu {
    display: block;
  }

  .language-menu summary {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-shell,
  .home-page,
  .landing-page,
  .article-shell {
    width: min(100% - 20px, var(--page-max));
    padding-bottom: 92px;
  }

  .home-copy h1,
  .landing-hero h1,
  .page-title h1,
  .answer-article h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .landing-hero {
    gap: 18px;
    padding-top: 14px;
  }

  .hero-device-stage {
    min-height: 306px;
  }

  .hero-phone.center {
    top: 18px;
    width: 158px;
    min-height: 300px;
  }

  .hero-phone.center .device-screen {
    min-height: 280px;
  }

  .hero-phone.side {
    top: 52px;
    width: 122px;
    min-height: 250px;
    opacity: 0.72;
  }

  .hero-phone.side .device-screen {
    min-height: 230px;
  }

  .hero-phone.left {
    left: -10px;
  }

  .hero-phone.right {
    right: -10px;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .landing-story,
  .landing-band,
  .landing-proof,
  .landing-final {
    padding: 16px;
  }

  .story-visual {
    min-height: 330px;
  }

  .agent-visual.app-guide-visual {
    min-height: 470px;
  }

  .agent-poster {
    padding: 4px 4px 18px;
  }

  .agent-poster h3 {
    font-size: clamp(25px, 7.6vw, 30px);
  }

  .agent-poster-capability-grid {
    gap: 6px;
  }

  .agent-poster-capability-grid span {
    padding: 9px 6px;
    border-radius: 14px;
  }

  .agent-poster-capability-grid strong {
    font-size: 12px;
  }

  .agent-poster-capability-grid em {
    font-size: 10px;
  }

  .agent-poster-canvas {
    height: 350px;
    margin-top: 14px;
  }

  .agent-poster-phone {
    top: 47%;
    width: 170px;
    border-radius: 28px;
  }

  .agent-poster-phone-screen {
    inset: 7px;
    gap: 7px;
    padding: 18px 12px;
    border-radius: 22px;
  }

  .agent-poster-phone-title {
    gap: 5px;
  }

  .agent-poster-phone-title em {
    font-size: 9px;
  }

  .agent-poster-phone-title strong {
    font-size: 15px;
  }

  .agent-poster-phone-title b {
    font-size: 13px;
  }

  .agent-poster-phone-rows {
    gap: 5px;
  }

  .agent-poster-project-row {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    padding: 6px;
    border-radius: 10px;
  }

  .agent-poster-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  .agent-poster-check::after {
    left: 7px;
    top: 5px;
    width: 7px;
    height: 9px;
  }

  .agent-poster-project-row strong {
    font-size: 11px;
  }

  .agent-poster-project-row em {
    font-size: 9px;
  }

  .agent-poster-status {
    max-width: 100%;
    padding: 6px 8px;
    font-size: 10px;
  }

  .agent-poster-node {
    width: 70px;
  }

  .agent-poster-node span {
    width: 50px;
    height: 50px;
    padding: 8px;
    border-radius: 15px;
  }

  .agent-poster-node strong {
    font-size: 9px;
  }

  .agent-poster-node.node-0,
  .agent-poster-node.node-2 {
    left: 8%;
  }

  .agent-poster-node.node-1,
  .agent-poster-node.node-3 {
    left: 92%;
  }

  .agent-poster-node.node-4 {
    top: 92%;
  }

  .story-phone {
    width: 205px;
    min-height: 384px;
  }

  .story-phone .device-screen {
    min-height: 364px;
  }

  .agent-canvas {
    min-height: 340px;
  }

  .agent-canvas::before {
    inset: 64px 42px 78px;
  }

  .agent-phone-card {
    width: 152px;
  }

  .agent-node {
    width: 76px;
    font-size: 11px;
  }

  .agent-node img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .home-screen-mock {
    min-height: 350px;
    padding: 16px;
    border-radius: 28px;
  }

  .widget-card {
    min-height: 142px;
  }

  .sync-visual.app-guide-visual {
    min-height: 350px;
  }

  .icloud-guide-card p {
    padding: 14px 24px 28px;
    font-size: 18px;
  }

  .sync-device.pad,
  .sync-device.phone {
    width: min(100%, 230px);
  }

  .landing-final {
    border-radius: 22px 22px 0 0;
  }

  .phone-shell {
    min-height: 560px;
    border-radius: 28px;
  }

  .hero-actions,
  .dock-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .row-status {
    display: none;
  }

  .app-list-row {
    grid-template-columns: 28px minmax(0, 1fr) 14px;
  }

  .article-title-row,
  .page-title.app-surface,
  .dock-copy,
  .footer-brand {
    align-items: flex-start;
  }

  .site-footer {
    display: grid;
  }
}
