:root {
  --bg: #1b1c1f;
  --bg-deep: #17181b;
  --bg-soft: #25272c;
  --bg-panel: #202225;
  --field: #17181b;
  --line: rgba(143, 152, 164, 0.1);
  --line-strong: rgba(143, 152, 164, 0.18);
  --text: #f3f5f7;
  --muted: #98a0aa;
  --muted-strong: #c8ccd2;
  --muted-soft: #888f99;
  --accent: #7c6ed6;
  --accent-hover: #897be2;
  --accent-soft: rgba(124, 110, 214, 0.14);
  --gold-soft: #d9c58a;
  --green: #72bc7e;
  --green-soft: rgba(114, 188, 126, 0.13);
  --max: 1160px;
  --radius: 8px;
  --shadow: none;
  --mobile-phone-width: 360px;
  --mobile-phone-height: 700px;
  --mobile-phone-padding-x: 20px;
  --mobile-phone-padding-y: 22px;
  --mobile-phone-radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

figure {
  margin: 0;
}

.mobile-site-shell {
  min-height: 100vh;
}

.mobile-site-header {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.mobile-brand img {
  width: 32px;
  height: 32px;
}

.mobile-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.mobile-brand-copy small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-brand-copy strong {
  color: var(--text);
  font-size: 1rem;
}

.mobile-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mobile-nav a {
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.mobile-nav a:hover {
  color: var(--text);
}

.ghost-link,
.header-actions {
  color: var(--muted);
  font-size: 0.94rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.teaser-main,
.lab-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px 64px;
}

.teaser-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 104px);
}

.lab-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
}

.kicker,
.card-label,
.launcher-label,
.mini-label,
.gate-label {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.lede,
.gate-copy,
.role-item p,
.pricing-block li,
.feature-column li,
.sync-steps li,
.not-yet-list li,
.teaser-points li {
  color: var(--muted);
}

.lede {
  margin-top: 18px;
  max-width: 44rem;
  font-size: 1.06rem;
  line-height: 1.6;
}

.teaser-copy {
  max-width: 40rem;
}

.teaser-points,
.sync-steps,
.not-yet-list,
.pricing-block ul,
.feature-column ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.preview-gate,
.teaser-copy,
.phone-preview,
.lab-card {
  min-width: 0;
}

.preview-gate {
  padding-top: 0;
}

.gate-card,
.lab-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.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;
}

.preview-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.preview-form input {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
}

.status-copy,
.quiet-note {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.status-copy.error {
  color: #f2a2b2;
}

.public-mobile-page .mobile-site-shell {
  overflow: hidden;
}

.lab-page.mobile-preview-locked .lab-main {
  display: none;
}

.mobile-preview-locked .mobile-hero,
.mobile-preview-locked .mobile-section:not(.private-preview-section),
.mobile-preview-locked .mobile-footer,
.mobile-preview-locked .site-footer {
  display: none;
}

.mobile-preview-locked .private-preview-section {
  min-height: calc(100vh - 96px);
  margin-top: 36px;
  margin-bottom: 36px;
}

.mobile-preview-unlocked .private-preview-section {
  display: none;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(27, 28, 31, 0.94);
  backdrop-filter: blur(14px);
}

.mobile-hero,
.mobile-section,
.mobile-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.mobile-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.mobile-hero-copy {
  max-width: 46rem;
}

.mobile-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 6vw, 4.55rem);
  line-height: 0.98;
}

.mobile-hero-copy .lede {
  max-width: 39rem;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.mobile-note {
  margin: 18px 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.store-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-actions-stacked {
  margin-top: 0;
  justify-content: flex-end;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg-panel);
  color: var(--text);
}

.store-link.is-coming {
  color: var(--muted-strong);
}

.store-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
  background: var(--field);
  color: var(--text);
  font-weight: 800;
}

.store-link strong,
.store-link small {
  display: block;
  line-height: 1.1;
}

.store-link small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.public-mobile-page .quiet-note {
  margin-top: 14px;
  max-width: 34rem;
}

.public-mobile-page .hero-meta span {
  background: transparent;
  padding: 0;
  min-height: auto;
  border-radius: 0;
  color: var(--muted);
}

.public-mobile-page .hero-meta span + span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.82rem;
  margin: 0 10px 0 0;
  vertical-align: -0.1rem;
  background: var(--line-strong);
}

.mobile-section {
  padding-top: clamp(56px, 6vw, 72px);
  padding-bottom: clamp(56px, 6vw, 72px);
}

.mobile-section + .mobile-section {
  border-top: 0;
}

.section-heading {
  max-width: 58rem;
}

.screenshot-showcase .section-heading {
  max-width: 72rem;
}

.section-heading h2,
.workflow-row h2,
.launch-cta h2,
.private-preview-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1.06;
}

.section-copy {
  margin: 14px 0 0;
  max-width: 48rem;
  color: var(--muted-strong);
  font-size: 1rem;
}

.screenshot-showcase .section-copy {
  max-width: 62rem;
}

.principle-grid,
.platform-grid,
.trust-grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-item,
.platform-card,
.trust-grid article {
  border-radius: 8px;
  background: var(--bg-panel);
}

.principle-item {
  padding: 20px;
}

.principle-item h3,
.platform-card h3,
.workflow-steps h3,
.trust-grid strong {
  margin: 0;
  font-size: 1.08rem;
}

.principle-item p,
.platform-card p,
.platform-card li,
.workflow-steps p,
.trust-grid span {
  color: var(--muted-strong);
}

.principle-item p,
.platform-card p,
.workflow-steps p {
  margin: 10px 0 0;
}

.screenshot-showcase {
  padding-top: 70px;
}

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

.platform-card {
  padding: 22px;
}

.platform-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.platform-mark,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-mark {
  background: var(--accent-soft);
  color: var(--text);
}

.status-pill {
  background: var(--green-soft);
  color: var(--green);
}

.platform-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.platform-card li + li {
  margin-top: 8px;
}

.workflow-row,
.launch-cta,
.private-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 48px;
  align-items: center;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.workflow-steps article {
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.workflow-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.trust-grid article {
  padding: 20px;
}

.trust-grid strong {
  display: block;
}

.trust-grid span {
  display: block;
  margin-top: 10px;
}

.launch-cta,
.private-preview-section {
  padding: 38px 32px;
  border-radius: 8px;
  background: var(--bg-panel);
}

.private-preview-section {
  margin-bottom: 56px;
}

.private-preview-form {
  align-self: center;
  margin-top: 0;
}

.mobile-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 34px;
  color: var(--muted);
}

.mobile-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-footer a:hover {
  color: var(--text);
}

.phone-frame {
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, #262830, #0d0f13);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.5);
}

.large-phone {
  max-width: 380px;
  justify-self: end;
}

.phone-screen {
  border-radius: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(143, 107, 232, 0.16), transparent 26%),
    #08090d;
  min-height: 620px;
}

.phone-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.phone-title {
  display: flex;
  flex-direction: column;
}

.app-name {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}

.app-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-icons {
  display: flex;
  gap: 10px;
}

.phone-icons span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.launcher-block,
.mini-section {
  margin-top: 18px;
}

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

.launcher-tile,
.mini-card,
.role-item,
.pricing-block,
.feature-column {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.launcher-tile strong,
.mini-card strong,
.role-item strong,
.pricing-block strong,
.feature-column strong {
  display: block;
  font-size: 1rem;
}

.launcher-tile span,
.mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
}

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

.wide-card {
  grid-column: 1 / -1;
}

.role-stack,
.pricing-columns,
.feature-map {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

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

.accent-block {
  border-color: rgba(143, 107, 232, 0.26);
  background: rgba(143, 107, 232, 0.08);
}

.capability-matrix {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.05fr) minmax(120px, 0.7fr) minmax(120px, 0.7fr) minmax(180px, 1.2fr);
  gap: 0;
}

.matrix-row span {
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.matrix-row span:first-child {
  color: var(--text);
  font-weight: 600;
}

.matrix-head span {
  background: rgba(143, 107, 232, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-lede {
  margin-top: 12px;
  font-size: 1rem;
}

.feedback-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.mobile-screenshot-frame {
  padding: 10px;
  border-radius: 30px;
  background: #050609;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.mobile-screenshot-frame img {
  width: 100%;
  border-radius: 22px;
}

.mobile-screenshot-frame figcaption {
  margin: 10px 4px 2px;
  color: var(--muted-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-screenshot {
  width: min(100%, 390px);
  justify-self: end;
  align-self: start;
  margin-top: 2px;
}

.screenshot-section {
  margin: 0 0 36px;
  padding: 28px 0 4px;
}

.screenshot-section .section-heading {
  max-width: 46rem;
  margin-bottom: 20px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.screenshot-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.screenshot-card p:not(.card-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.screenshot-card .card-label {
  margin-bottom: 0;
}

.screenshot-card .mobile-screenshot-frame {
  box-shadow: none;
}

.feature-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 340px) minmax(260px, 390px);
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: 22px 32px;
  background: rgba(143, 107, 232, 0.075);
  border-color: rgba(143, 107, 232, 0.22);
}

.feature-wide .mobile-screenshot-frame {
  max-width: 330px;
}

.feature-wide > div {
  max-width: 28rem;
}

.mobile-story-page {
  background: var(--bg);
}

.mobile-voice-hero {
  align-items: center;
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 90px);
}

.mobile-voice-hero .mobile-hero-copy {
  margin-top: 0;
}

.mobile-voice-hero .mobile-hero-copy h1 {
  max-width: 12ch;
}

.mobile-story-page .mobile-section {
  padding-top: clamp(48px, 5vw, 64px);
  padding-bottom: clamp(48px, 5vw, 64px);
}

.mobile-story-page .section-heading h2,
.mobile-story-page .launch-cta h2 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}

.mobile-motion-frame {
  min-width: 0;
}

.phone-art {
  position: relative;
  width: min(100%, 350px);
  min-height: 640px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: #07080c;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.38);
}

.phone-art::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  background: #0d0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-art > * {
  position: relative;
  z-index: 1;
}

.voice-motion .phone-art {
  width: min(100%, 330px);
  height: 640px;
  min-height: 0;
  padding: var(--mobile-phone-padding-y) var(--mobile-phone-padding-x);
  background: #030304;
}

.voice-motion .phone-art::before {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.06);
  background: #000;
}

.phone-status,
.phone-art-head,
.workspace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-status {
  padding: 4px 8px 0;
  color: var(--muted-soft);
  font-size: 0.76rem;
}

.phone-status span:last-child {
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.phone-art-head {
  margin-top: 26px;
  padding: 0 4px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.voice-statusbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: #f7f7f8;
  font-weight: 800;
}

.voice-time {
  font-size: 1.42rem;
  letter-spacing: -0.02em;
}

.voice-privacy-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f2993a;
}

.voice-privacy-dot.is-quiet {
  background: transparent;
}

.voice-system-icons {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  margin-right: 5px;
}

.cell-bars {
  width: 25px;
  height: 18px;
  display: inline-block;
  background:
    linear-gradient(to top, #f7f7f8 0 40%, transparent 40%) 0 0 / 5px 100% no-repeat,
    linear-gradient(to top, #f7f7f8 0 58%, transparent 58%) 8px 0 / 5px 100% no-repeat,
    linear-gradient(to top, #f7f7f8 0 78%, transparent 78%) 16px 0 / 5px 100% no-repeat,
    linear-gradient(to top, rgba(247, 247, 248, 0.28) 0 100%, transparent 0) 24px 0 / 5px 100% no-repeat;
  border-radius: 2px;
}

.wifi-mark {
  width: 25px;
  height: 17px;
  display: inline-block;
  position: relative;
}

.wifi-mark::before,
.wifi-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 4px solid #f7f7f8;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%);
}

.wifi-mark::before {
  top: 0;
  width: 27px;
  height: 14px;
}

.wifi-mark::after {
  top: 8px;
  width: 13px;
  height: 7px;
}

.battery-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 24px;
  border-radius: 7px;
  background: #f7f7f8;
  color: #050506;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
}

.battery-mark::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 3px;
  height: 12px;
  border-radius: 0 3px 3px 0;
  background: rgba(247, 247, 248, 0.56);
}

.voice-screen-title {
  margin: 40px 0 0;
  color: #f7f7f8;
  font-size: 1.34rem;
  line-height: 1.1;
  text-align: center;
}

.voice-destination {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  margin: 24px auto 0;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #a0a0a8;
  font-size: 1.22rem;
  font-weight: 760;
}

.destination-icon-svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.destination-chevron {
  width: 14px;
  height: 14px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.listening-pill {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 24px 0 0;
  padding: 0 18px;
  border-radius: 999px;
  background: #100a1a;
  color: #a47cff;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
}

.listening-pill span {
  animation: listeningPulse 1.6s ease-in-out infinite;
}

.voice-live-copy {
  display: grid;
  gap: 3px;
  margin-top: 30px;
  color: #f8f8fa;
  font-size: clamp(1.02rem, 4vw, 1.12rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.voice-live-copy span {
  opacity: 0.92;
}

.voice-live-copy span:last-child {
  animation: voiceLineIn 4.8s ease-in-out infinite;
  animation-delay: -3.2s;
}

.voice-control-tray {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(27, 27, 29, 0.86);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.32);
}

.voice-control {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #9a9aa2;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
}

.voice-control.is-selected {
  justify-content: space-between;
  padding: 0 14px;
  background: rgba(139, 110, 237, 0.18);
  color: #9a74ff;
}

.task-glyph,
.date-glyph {
  flex: none;
  width: 24px;
  height: 24px;
}

.task-glyph {
  position: relative;
}

.task-glyph::before,
.task-glyph::after {
  content: "";
  position: absolute;
  left: 9px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.task-glyph::before {
  top: 6px;
}

.task-glyph::after {
  bottom: 6px;
}

.task-glyph {
  background:
    radial-gradient(circle at 3px 7px, transparent 0 2px, currentColor 2px 4px, transparent 4px),
    radial-gradient(circle at 3px 17px, transparent 0 2px, currentColor 2px 4px, transparent 4px);
}

.date-glyph {
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(currentColor, currentColor) 0 7px / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 6px, currentColor 6px 8px) 4px 12px / 18px 2px no-repeat;
}

.check-dot {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #8b6eed;
  color: #22183a;
}

.check-dot::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.voice-cancel {
  color: #a8a8ad;
}

.voice-stop {
  background: #8b6eed;
  color: #fff;
  font-size: 0.76rem;
  white-space: nowrap;
}

.root-dot {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(143, 152, 164, 0.34);
  border-radius: 9px;
  background: #171a22;
  color: var(--accent);
  font-weight: 850;
}

.root-dot::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold-soft);
}

.mic-orb {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 52px auto 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 0 0 rgba(124, 110, 214, 0.28);
  animation: voicePulse 2.8s ease-in-out infinite;
}

.mic-orb span {
  width: 42px;
  height: 62px;
  border: 3px solid rgba(243, 245, 247, 0.86);
  border-radius: 22px;
  position: relative;
}

.mic-orb span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 34px;
  height: 20px;
  border-bottom: 3px solid rgba(243, 245, 247, 0.86);
  border-left: 3px solid rgba(243, 245, 247, 0.86);
  border-right: 3px solid rgba(243, 245, 247, 0.86);
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.waveform {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 56px;
}

.waveform i {
  width: 7px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold-soft);
  animation: waveLift 1.2s ease-in-out infinite;
}

.waveform i:nth-child(2) { animation-delay: 0.08s; }
.waveform i:nth-child(3) { animation-delay: 0.16s; }
.waveform i:nth-child(4) { animation-delay: 0.24s; }
.waveform i:nth-child(5) { animation-delay: 0.32s; }
.waveform i:nth-child(6) { animation-delay: 0.40s; }
.waveform i:nth-child(7) { animation-delay: 0.48s; }

.transcript-card,
.inbox-result,
.safari-card,
.ios-sheet,
.share-inbox-card,
.inbox-board,
.shape-card,
.connect-device,
.connect-file {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.transcript-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
}

.transcript-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.45;
  opacity: 0.72;
  transform: translateY(0);
  animation: lineReveal 8s ease-in-out infinite;
}

.transcript-card p:nth-child(2) {
  animation-delay: 1.1s;
}

.transcript-card p:nth-child(3) {
  animation-delay: 2.2s;
}

.motion-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 15px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #1b1c1f;
  font: inherit;
  font-weight: 800;
}

.voice-motion .motion-button {
  width: 100%;
  animation: buttonSettle 8s ease-in-out infinite;
}

.inbox-result {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px;
  background: rgba(114, 188, 126, 0.10);
  animation: inboxGlow 8s ease-in-out infinite;
}

.inbox-result strong,
.share-inbox-card strong {
  color: var(--text);
}

.inbox-result span,
.share-inbox-card span {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.shape-grid,
.connect-principles {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.connect-principles article {
  padding: 18px;
  border-radius: 8px;
  background: var(--bg-panel);
}

.connect-principles strong,
.connect-principles span {
  display: block;
}

.connect-principles span {
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.split-visual-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
}

.story-copy-stack {
  display: grid;
  gap: 16px;
}

.story-copy-stack article {
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.story-copy-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.story-copy-stack strong,
.story-copy-stack p {
  display: block;
  margin: 0;
}

.story-copy-stack p {
  margin-top: 8px;
  color: var(--muted-strong);
}

.share-motion {
  position: relative;
  min-height: 680px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(180deg, #242730, #111318);
}

.share-sheet-image-visual {
  min-height: auto;
  display: grid;
  justify-items: center;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.share-sheet-image-wrap {
  position: relative;
  min-width: 0;
  width: min(100%, 400px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.share-clean-menu {
  width: 100%;
  padding: 16px;
  border-radius: 32px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #151517;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.share-source-mini,
.share-inbox-mini {
  display: grid;
  gap: 4px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.share-source-mini span,
.share-inbox-mini span,
.share-inbox-mini small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.share-source-mini strong,
.share-inbox-mini strong {
  color: var(--text);
  line-height: 1.12;
}

.share-inbox-mini {
  border-color: rgba(114, 188, 126, 0.22);
  background: rgba(114, 188, 126, 0.08);
}

.share-inbox-mini p {
  margin: 2px 0 0;
  color: var(--muted-strong);
}

.share-menu-item-primary {
  min-height: 60px;
  margin: -4px -4px 4px;
  padding: 0 14px;
  border: 2px solid rgba(217, 197, 138, 0.84);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.015);
  box-shadow:
    0 0 0 5px rgba(217, 197, 138, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.22);
}

.share-root-menu-item {
  margin: 7px -1px 2px;
  padding: 10px 12px;
  border: 1px solid rgba(124, 110, 214, 0.36);
  border-radius: 17px;
  background: rgba(124, 110, 214, 0.12);
}

.share-root-menu-item img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.share-root-menu-item span {
  display: grid;
  gap: 3px;
}

.share-root-menu-item span strong {
  font-size: 1.18rem;
}

.share-root-menu-item small {
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 760;
}

.share-toolbox-visual {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr) minmax(0, 0.48fr);
  gap: 22px;
  align-items: center;
  background: #050506;
}

.share-browser-hint,
.share-big-menu,
.share-root-target {
  min-width: 0;
}

.share-browser-hint {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 22px;
  border-radius: 24px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.share-browser-hint .share-statusbar {
  padding: 0;
}

.share-source-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #f7f7f8;
}

.share-source-card p,
.share-source-card h3 {
  margin: 0;
}

.share-source-card p {
  color: var(--muted);
  font-weight: 800;
}

.share-source-card h3 {
  max-width: none;
  color: #f7f7f8;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.03;
}

.share-source-card a {
  color: #8b6eed;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.share-big-menu {
  display: grid;
  gap: 0;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #18181a;
  color: #f7f7f8;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.52);
}

.share-menu-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 52px;
  color: #f7f7f8;
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  line-height: 1.08;
}

.share-menu-item strong {
  font-size: clamp(1.35rem, 2.4vw, 1.88rem);
}

.share-menu-divider {
  height: 1px;
  margin: 7px 0;
  background: rgba(255, 255, 255, 0.12);
}

.share-menu-icon {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: #f7f7f8;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-menu-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 11px;
  color: #f7f7f8;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.share-root-target {
  display: grid;
  gap: 20px;
  align-content: center;
  justify-items: start;
  color: #f7f7f8;
}

.share-to-root-arrow {
  position: relative;
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 118px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.share-to-root-arrow::before {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: translateY(-50%);
  box-shadow: 0 0 24px rgba(217, 197, 138, 0.24);
}

.share-to-root-arrow::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-right: 4px solid var(--gold-soft);
  border-bottom: 4px solid var(--gold-soft);
  transform: translateY(-50%) rotate(-45deg);
}

.root-mobile-badge {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.root-mobile-badge img {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(124, 110, 214, 0.34),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.root-mobile-badge strong {
  color: var(--muted-strong);
  font-size: 0.96rem;
}

.share-phone-story {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(238px, 1fr) 38px minmax(238px, 1fr);
  gap: 16px;
  align-items: center;
  background: #050506;
}

.share-phone {
  position: relative;
  min-width: 0;
  min-height: 658px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
}

.share-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 0;
  color: #f7f7f8;
  font-size: 1.12rem;
  font-weight: 800;
}

.share-system-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-system-icons i:first-child {
  width: 22px;
  height: 16px;
  background:
    linear-gradient(to top, #f7f7f8 0 42%, transparent 42%) 0 0 / 4px 100% no-repeat,
    linear-gradient(to top, #f7f7f8 0 60%, transparent 60%) 7px 0 / 4px 100% no-repeat,
    linear-gradient(to top, #f7f7f8 0 82%, transparent 82%) 14px 0 / 4px 100% no-repeat;
}

.share-system-icons i:nth-child(2) {
  width: 23px;
  height: 15px;
  border: 4px solid #f7f7f8;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.share-system-icons b {
  min-width: 30px;
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: #f7f7f8;
  color: #050506;
  font-size: 0.76rem;
  line-height: 1;
}

.share-browser-top {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 58px;
  padding: 0 20px;
  color: #f7f7f8;
}

.share-browser-top strong {
  font-size: 1.58rem;
  line-height: 1;
}

.share-browser-top span:last-child {
  color: #f7f7f8;
  font-weight: 700;
}

.share-menu-lines {
  width: 26px;
  height: 20px;
  background:
    linear-gradient(#f7f7f8, #f7f7f8) 0 1px / 100% 3px no-repeat,
    linear-gradient(#f7f7f8, #f7f7f8) 0 9px / 100% 3px no-repeat,
    linear-gradient(#f7f7f8, #f7f7f8) 0 17px / 100% 3px no-repeat;
}

.share-page-card {
  position: relative;
  min-height: 266px;
  margin: 28px 20px 0;
  padding: 24px 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  color: #f7f7f8;
  text-align: center;
}

.share-page-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.share-page-card h3 {
  margin: 28px auto 0;
  max-width: 12ch;
  color: #f7f7f8;
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.share-page-card button {
  position: relative;
  z-index: 1;
  min-height: 44px;
  margin-top: 30px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #5b8ff4;
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.share-page-shapes {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -16px;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.85fr;
  gap: 6px;
  align-items: end;
  opacity: 0.9;
}

.share-page-shapes span {
  height: 54px;
  border-radius: 18px 18px 0 0;
  background: #76c56f;
}

.share-page-shapes span:nth-child(2) {
  height: 82px;
  background: #846bea;
  transform: skewX(-14deg);
}

.share-page-shapes span:nth-child(3) {
  height: 66px;
  background: #f0c55f;
}

.share-menu-card {
  position: absolute;
  right: 20px;
  top: 384px;
  width: min(76%, 250px);
  display: grid;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(28, 28, 30, 0.98);
  color: #f7f7f8;
  font-size: 1.08rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.share-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px 20px;
  border-radius: 28px 28px 0 0;
  background: rgba(28, 29, 31, 0.98);
}

.share-sheet-source {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
  padding: 0 2px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sheet-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #76c56f 0 32%, #5b8ff4 32% 60%, #f0c55f 60% 100%);
}

.share-sheet-source strong,
.share-sheet-source span {
  display: block;
}

.share-sheet-source span {
  color: var(--muted);
}

.share-action-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.share-action-row span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border-radius: 18px;
  background: #2c2d30;
  color: #f7f7f8;
  font-size: 0.74rem;
  text-align: center;
}

.share-action-row .root-mobile-action {
  gap: 5px;
  border: 1px solid rgba(124, 110, 214, 0.38);
  background: #24212f;
  color: #f7f7f8;
}

.root-mobile-action b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #191a20;
  color: #9f82ff;
  font-size: 1.15rem;
}

.share-flow-arrow {
  height: 2px;
  width: 100%;
  background: rgba(217, 197, 138, 0.5);
  position: relative;
}

.share-flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(217, 197, 138, 0.82);
  border-bottom: 2px solid rgba(217, 197, 138, 0.82);
  transform: translateY(-50%) rotate(-45deg);
}

.review-share-screen {
  padding-bottom: 120px;
}

.review-share-screen h3 {
  margin: 34px 0 22px;
  color: #f7f7f8;
  font-size: 1.58rem;
  line-height: 1.1;
  text-align: center;
}

.review-card,
.review-options-card {
  margin: 0 18px 18px;
  padding: 16px;
  border-radius: 18px;
  background: #2a2a2d;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong,
.review-row strong {
  color: #a8a8ad;
  font-size: 0.86rem;
}

.review-card span {
  margin-top: 10px;
  color: #f7f7f8;
  overflow-wrap: anywhere;
}

.review-note-card {
  min-height: 132px;
}

.review-note-card span {
  color: #77777f;
  font-size: 1.02rem;
}

.review-options-card {
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
}

.review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
}

.review-row + .review-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-row span:not(.toggle) {
  color: #f7f7f8;
  font-size: 1.24rem;
}

.toggle {
  width: 58px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  background: #686970;
}

.toggle::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f7f7f8;
}

.toggle.is-on {
  background: #65cf68;
}

.toggle.is-on::before {
  margin-left: auto;
}

.review-action-tray {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.6fr);
  gap: 12px;
}

.review-action-tray button {
  min-height: 58px;
  border: 0;
  border-radius: 22px;
  color: #f7f7f8;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 800;
}

.review-cancel {
  background: #2a2a2c;
  color: #adadb4;
}

.review-append {
  background: #5b8ff4;
}

.safari-card {
  min-height: 236px;
  padding: 18px;
  background: #f3f1ec;
  color: #202225;
}

.safari-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dedbd3;
  color: #3c3d41;
  font-size: 0.86rem;
}

.safari-bar i {
  width: 18px;
  height: 18px;
  margin-left: auto;
  border-radius: 999px;
  background: #c6c1b8;
}

.safari-card h3 {
  margin-top: 26px;
  max-width: 20rem;
  color: #17181b;
  font-size: 1.5rem;
}

.safari-card p {
  max-width: 22rem;
  color: #555963;
}

.safari-card button {
  min-height: 36px;
  margin-top: 18px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #17181b;
  color: #f3f1ec;
  font: inherit;
  font-weight: 700;
}

.ios-sheet {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 32px;
  padding: 18px;
  background: rgba(32, 34, 37, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  animation: sheetRise 5.8s ease-in-out infinite;
  animation-delay: -4.4s;
}

.sheet-handle {
  width: 50px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.share-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.share-row span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.share-row .root-action {
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(124, 110, 214, 0.22);
}

.ios-sheet label {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.thought-field {
  min-height: 76px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 12px;
  background: var(--field);
  color: var(--muted-strong);
}

.share-inbox-card {
  position: absolute;
  right: 26px;
  top: 254px;
  display: grid;
  gap: 4px;
  width: 190px;
  padding: 14px;
  background: rgba(114, 188, 126, 0.11);
  animation: shareInboxPulse 5.8s ease-in-out infinite;
  animation-delay: -4.4s;
}

.inbox-zone-visual {
  margin-top: 34px;
}

.inbox-board {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 410px;
  margin-top: 18px;
  overflow: hidden;
  background: var(--bg-panel);
}

.board-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line-strong);
}

.board-sidebar strong {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.4rem;
}

.board-sidebar span {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
}

.board-sidebar .active {
  color: var(--text);
  background: var(--accent-soft);
}

.board-content {
  padding: 28px;
}

.board-content h3 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.board-content article {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.board-content article + article {
  margin-top: 12px;
}

.board-content span {
  color: var(--muted-strong);
}

.mobile-inbox-visual {
  display: grid;
  grid-template-columns: minmax(320px, var(--mobile-phone-width));
  justify-content: center;
  margin-top: 42px;
}

.mobile-inbox-phone {
  position: relative;
  width: min(100%, var(--mobile-phone-width));
  height: var(--mobile-phone-height);
  min-height: 0;
  overflow: hidden;
  padding: var(--mobile-phone-padding-y) var(--mobile-phone-padding-x);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mobile-phone-radius);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}

.mobile-inbox-phone h3 {
  margin: 50px 0 0;
  color: #f7f7f8;
  font-size: 1.52rem;
  line-height: 1.1;
  text-align: center;
}

.mobile-inbox-scroll {
  display: grid;
  gap: 18px;
  padding: 46px 4px 122px;
}

.mobile-inbox-note {
  display: grid;
  gap: 10px;
  padding: 0;
}

.mobile-inbox-scroll time {
  color: #f7f7f8;
  font-size: clamp(1.02rem, 3vw, 1.22rem);
  line-height: 1.18;
}

.mobile-inbox-scroll p {
  margin: 0;
  color: #f7f7f8;
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  line-height: 1.26;
}

.mobile-inbox-url {
  color: #9d7cff;
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.mobile-inbox-scroll label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  color: #f7f7f8;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  line-height: 1.24;
}

.mobile-inbox-scroll label i {
  width: 21px;
  height: 21px;
  margin-top: 3px;
  border: 2px solid #8d8d96;
  border-radius: 5px;
}

.mobile-inbox-link {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-inbox-link strong {
  color: #f7f7f8;
  font-size: 1.02rem;
  line-height: 1.1;
}

.mobile-inbox-tray {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(27, 27, 29, 0.84);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.32);
}

.mobile-inbox-tray button {
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
}

.handoff-button {
  background: #292238;
  color: #9d7cff;
}

.done-button {
  background: #242426;
  color: #a8a8ad;
}

.clear-button {
  grid-column: 1 / -1;
  background: #202022;
  color: #c15f5f;
}

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

.shape-card {
  padding: 22px;
}

.shape-card h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.task-rollup,
.handoff-packet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.source-note,
.task-list,
.packet-source,
.packet-preview {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.source-note span,
.task-list span,
.packet-source span,
.packet-preview p {
  color: var(--muted-strong);
}

.task-list span {
  padding-left: 20px;
  position: relative;
}

.task-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
}

.task-list {
  animation: taskGlow 4.8s ease-in-out infinite;
}

.packet-preview {
  background: rgba(124, 110, 214, 0.10);
  animation: packetGlow 5.6s ease-in-out infinite;
}

.packet-preview button {
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--bg);
  font: inherit;
  font-weight: 800;
}

.connect-preview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: clamp(48px, 5vw, 64px);
  padding-bottom: clamp(48px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.mobile-basics-section .section-heading,
.mobile-faq-section .section-heading,
.root-connect-one-block .section-heading {
  max-width: 720px;
}

.quick-capture-grid,
.mobile-workspace-grid,
.connect-simple-grid {
  display: grid;
  gap: 16px;
}

.quick-capture-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.quick-capture-card,
.connect-simple-grid article,
.minimal-faq-list details,
.mini-feature-list span {
  border: 1px solid var(--line-strong);
  background: var(--bg-panel);
}

.quick-capture-card {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.capture-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(217, 197, 138, 0.08);
  color: var(--gold-soft);
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1;
}

.quick-capture-card h3,
.connect-simple-grid strong {
  margin: 0;
  color: var(--text);
}

.quick-capture-card p,
.connect-simple-grid span,
.minimal-faq-list p {
  margin: 0;
  color: var(--muted);
}

.mobile-workspace-grid {
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(30px, 5vw, 58px);
}

.mini-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-feature-list span {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
}

.mobile-connect-strip {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.minimal-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.minimal-faq-list details {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.022);
}

.minimal-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

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

.minimal-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold-soft);
  font-weight: 900;
}

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

.minimal-faq-list p {
  padding: 0 20px 18px;
  line-height: 1.55;
}

.root-connect-main-minimal .mobile-hero {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.86fr);
  min-height: min(690px, calc(100svh - 72px));
}

.root-connect-main-minimal .mobile-section {
  padding-top: clamp(44px, 5vw, 58px);
  padding-bottom: clamp(44px, 5vw, 58px);
}

.root-connect-one-block {
  border-top: 1px solid var(--line);
}

.connect-simple-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.connect-simple-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
}

.root-connect-hero .mobile-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.7rem, 5vw, 4.15rem);
}

.root-connect-main .mobile-hero {
  padding-bottom: clamp(46px, 5vw, 70px);
}

.root-connect-main .mobile-section {
  padding-top: clamp(52px, 6vw, 68px);
  padding-bottom: clamp(52px, 6vw, 68px);
}

.connect-motion-frame {
  display: grid;
  grid-template-columns: minmax(105px, 1fr) minmax(140px, 1.08fr) minmax(105px, 1fr);
  gap: 12px;
  align-items: center;
  justify-self: end;
  width: min(100%, 440px);
  min-width: 0;
  padding: 10px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.connect-device,
.connect-file {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 14px 10px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.024);
}

.connect-device .root-dot {
  margin: 0 auto;
}

.connect-device p,
.connect-file span {
  margin: 0;
  color: var(--muted-strong);
}

.connect-file {
  position: relative;
  background: rgba(124, 110, 214, 0.07);
}

.connect-file::before,
.connect-file::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}

.connect-file::before {
  right: 100%;
}

.connect-file::after {
  left: 100%;
}

.connect-file button {
  justify-self: center;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--bg);
  font: inherit;
  font-weight: 800;
}

.connect-principles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.connect-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 18px;
}

.connect-detail-card,
.connect-tradeoff-grid article {
  padding: 28px;
  border-radius: 8px;
  background: var(--bg-panel);
}

.connect-detail-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: 1.04;
}

.connect-detail-card p,
.connect-tradeoff-grid p {
  margin: 16px 0 0;
  color: var(--muted-strong);
}

.connect-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted-strong);
}

.connect-detail-card li {
  position: relative;
  padding-left: 18px;
}

.connect-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-soft);
}

.connect-tradeoff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.connect-tradeoff-grid strong {
  display: block;
  color: var(--text);
  font-size: 1.03rem;
}

@keyframes voicePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 110, 214, 0.24); transform: scale(1); }
  50% { box-shadow: 0 0 0 18px rgba(124, 110, 214, 0); transform: scale(1.03); }
}

@keyframes listeningPulse {
  0%, 100% { opacity: 0.76; }
  50% { opacity: 1; }
}

@keyframes voiceLineIn {
  0%, 16% { opacity: 0; transform: translateY(6px); }
  28%, 100% { opacity: 0.92; transform: translateY(0); }
}

@keyframes waveLift {
  0%, 100% { height: 16px; opacity: 0.55; }
  50% { height: 48px; opacity: 1; }
}

@keyframes lineReveal {
  0%, 12% { opacity: 0.54; transform: translateY(0); }
  22%, 78% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0.62; transform: translateY(0); }
}

@keyframes buttonSettle {
  0%, 48% { opacity: 0.6; transform: translateY(8px); }
  58%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes inboxGlow {
  0%, 58% { opacity: 0.45; transform: translateY(8px); }
  70%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes sheetRise {
  0%, 18% { transform: translateY(66%); }
  34%, 100% { transform: translateY(0); }
}

@keyframes shareInboxPulse {
  0%, 56% { opacity: 0; transform: translateY(10px); }
  72%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes reviewSettle {
  0%, 34% { opacity: 0.56; transform: translateX(14px); }
  48%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes taskGlow {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(217, 197, 138, 0); }
  50% { box-shadow: inset 0 0 0 1px rgba(217, 197, 138, 0.35); }
}

@keyframes packetGlow {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(124, 110, 214, 0); }
  50% { box-shadow: inset 0 0 0 1px rgba(124, 110, 214, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .mic-orb,
  .waveform i,
  .transcript-card p,
  .voice-motion .motion-button,
  .inbox-result,
  .ios-sheet,
  .share-inbox-card,
  .share-sheet-panel,
  .review-share-screen,
  .task-list,
  .packet-preview,
  .listening-pill span,
  .voice-live-copy span:last-child {
    animation: none;
  }

  .transcript-card p,
  .share-inbox-card,
  .share-sheet-panel,
  .review-share-screen,
  .inbox-result,
  .listening-pill span,
  .voice-live-copy span:last-child {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .mobile-hero,
  .principle-grid,
  .platform-grid,
  .trust-grid,
  .workflow-row,
  .workflow-steps,
  .launch-cta,
  .connect-preview-card,
  .private-preview-section,
  .teaser-main,
  .lab-hero,
  .lab-grid,
  .pricing-columns,
  .feature-map,
  .split-visual-block,
  .shape-grid,
  .quick-capture-grid,
  .mobile-workspace-grid,
  .mobile-inbox-visual,
  .root-connect-main-minimal .mobile-hero,
  .connect-simple-grid,
  .connect-principles,
  .connect-detail-grid,
  .connect-tradeoff-grid {
    grid-template-columns: 1fr;
  }

  .teaser-main {
    min-height: auto;
    align-items: start;
  }

  .mobile-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .mobile-voice-hero .mobile-hero-copy {
    margin-top: 0;
  }

  .preview-gate {
    padding-top: 0;
  }

  .large-phone {
    justify-self: start;
  }

  .hero-screenshot {
    justify-self: start;
  }

  .store-actions-stacked {
    justify-content: flex-start;
  }

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

  .matrix-row {
    grid-template-columns: 1fr;
  }

  .phone-art {
    width: min(100%, 390px);
  }

  .connect-preview-card {
    justify-items: start;
  }

  .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .mobile-site-header,
  .mobile-hero,
  .mobile-section,
  .mobile-footer,
  .teaser-main,
  .lab-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-site-header {
    align-items: flex-start;
  }

  .public-header {
    flex-direction: column;
  }

  .mobile-nav {
    justify-content: flex-start;
  }

  .mobile-hero-copy h1 {
    max-width: 15ch;
    font-size: clamp(2.55rem, 13vw, 3.65rem);
    line-height: 0.98;
  }

  .store-link {
    width: 100%;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .phone-screen {
    min-height: auto;
  }

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

  .screenshot-grid,
  .feature-wide,
  .inbox-board,
  .share-phone-story,
  .share-toolbox-visual,
  .share-sheet-image-visual,
  .task-rollup,
  .handoff-packet,
  .connect-motion-frame {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-column: auto;
    gap: 16px;
    padding: 14px;
  }

  .screenshot-card .mobile-screenshot-frame {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .phone-art {
    min-height: 640px;
  }

  .share-motion {
    min-height: auto;
    padding: 16px;
  }

  .share-phone-story {
    gap: 18px;
  }

  .share-toolbox-visual {
    gap: 18px;
  }

  .share-sheet-image-visual {
    justify-items: center;
  }

  .share-sheet-image-wrap {
    width: min(100%, 340px);
  }

  .share-browser-hint {
    align-self: auto;
    padding: 18px;
  }

  .share-source-card h3 {
    max-width: 11ch;
    font-size: 2.05rem;
  }

  .share-big-menu {
    padding: 15px;
    border-radius: 26px;
  }

  .share-menu-item {
    min-height: 48px;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    font-size: 1.04rem;
  }

  .share-menu-item strong {
    font-size: 1.26rem;
  }

  .share-root-target {
    gap: 18px;
    justify-items: center;
  }

  .share-root-target-simple {
    justify-self: center;
  }

  .share-to-root-arrow {
    width: auto;
    min-height: 42px;
    align-self: center;
    padding-right: 90px;
  }

  .share-to-root-arrow::before {
    right: 17px;
    width: 64px;
    height: 3px;
  }

  .share-to-root-arrow::after {
    right: 15px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .root-mobile-badge img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .share-flow-arrow {
    width: 2px;
    height: 42px;
    justify-self: center;
  }

  .share-flow-arrow::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%) rotate(45deg);
  }

  .ios-sheet {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .share-inbox-card {
    right: 20px;
    top: 244px;
  }

  .share-phone {
    min-height: 640px;
  }

  .share-browser-top {
    margin-top: 38px;
  }

  .share-page-card h3 {
    font-size: 2rem;
  }

  .review-share-screen {
    padding-bottom: 112px;
  }

  .mobile-inbox-scroll {
    padding-top: 46px;
  }

  .board-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .connect-file::before,
  .connect-file::after {
    display: none;
  }
}

/* Minimal public mobile pass: keep the page aligned with the main root site. */
.public-mobile-page .mobile-site-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 280px),
    var(--bg);
}

.mobile-story-page,
.root-connect-page {
  background: var(--bg);
}

.mobile-clean-hero,
.root-connect-hero {
  align-items: center;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(58px, 7vw, 84px);
}

.root-connect-main-minimal .mobile-hero {
  min-height: calc(100svh - 180px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.9fr);
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 108px);
}

.mobile-clean-hero .mobile-hero-copy,
.root-connect-hero .mobile-hero-copy {
  max-width: 38rem;
}

.mobile-clean-hero .mobile-hero-copy h1,
.root-connect-hero .mobile-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.root-connect-hero .mobile-hero-copy h1 {
  max-width: 9ch;
}

.mobile-clean-hero .mobile-hero-copy .lede,
.root-connect-hero .mobile-hero-copy .lede {
  max-width: 34rem;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.65;
}

.mobile-voice-hero .mobile-hero-copy {
  margin-top: 0;
}

.public-mobile-page .hero-meta {
  margin-top: 24px;
  gap: 0;
}

.public-mobile-page .hero-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-store-row {
  display: flex;
  margin-top: 28px;
}

.app-store-placeholder {
  display: inline-grid;
  min-width: 190px;
  gap: 3px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  cursor: default;
}

.app-store-placeholder span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.app-store-placeholder strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.12;
}

.mobile-home-shot {
  width: min(100%, 300px);
}

.mobile-home-shot img {
  height: min(62vh, 590px);
  object-fit: cover;
  object-position: top center;
}

.voice-motion {
  justify-self: end;
}

.voice-motion .phone-art {
  width: min(100%, 320px);
  height: 620px;
  padding: 20px 18px;
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.voice-screen-title {
  margin-top: 38px;
}

.voice-live-copy {
  font-size: 1rem;
  line-height: 1.25;
}

.voice-control {
  min-height: 44px;
  border-radius: 15px;
  font-size: 0.92rem;
}

.voice-stop {
  font-size: 0.72rem;
}

.mobile-story-page .mobile-section,
.root-connect-main .mobile-section {
  padding-top: clamp(46px, 5vw, 64px);
  padding-bottom: clamp(46px, 5vw, 64px);
}

.mobile-story-page .section-heading h2,
.mobile-story-page .launch-cta h2,
.root-connect-main .section-heading h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.section-copy {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1rem;
}

.quick-capture-grid {
  gap: 12px;
  margin-top: 24px;
}

.quick-capture-card {
  min-height: 140px;
  padding: 18px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.capture-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(217, 197, 138, 0.1);
  color: var(--gold-soft);
  font-size: 1.35rem;
}

.mobile-workspace-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
}

.mini-feature-list span {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

.mobile-connect-strip {
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding-right: 24px;
  padding-left: 24px;
}

.minimal-faq-list details {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.connect-motion-frame {
  width: min(100%, 440px);
  padding: 14px;
  border-color: var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.connect-device,
.connect-file {
  min-height: 126px;
  border-color: var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.024);
}

.connect-file {
  background: rgba(124, 110, 214, 0.055);
}

.connect-file button {
  border-radius: 8px;
  background: rgba(217, 197, 138, 0.13);
  color: var(--gold-soft);
}

@media (max-width: 1080px) {
  .voice-motion,
  .connect-motion-frame {
    justify-self: start;
  }

  .root-connect-main-minimal .mobile-hero {
    grid-template-columns: 1fr;
  }

  .root-connect-main-minimal .mobile-hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .mobile-clean-hero,
  .root-connect-main-minimal .mobile-hero {
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 34px;
  }

  .mobile-clean-hero .mobile-hero-copy h1,
  .root-connect-hero .mobile-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .public-mobile-page .hero-meta {
    gap: 4px 13px;
  }

  .public-mobile-page .hero-meta span + span::before {
    display: none;
  }

  .voice-motion,
  .connect-motion-frame {
    justify-self: center;
  }

  .mobile-home-shot {
    width: min(100%, 220px);
    justify-self: start;
  }

  .mobile-home-shot img {
    height: 260px;
  }

  .voice-motion .phone-art {
    width: min(100%, 300px);
    height: 580px;
  }

  .quick-capture-card {
    min-height: auto;
  }

  .connect-motion-frame {
    width: min(100%, 340px);
    gap: 10px;
  }

  .mobile-connect-strip {
    padding-right: 16px;
    padding-left: 16px;
  }
}
