:root {
  color-scheme: dark;
  --ink: #f5f6f8;
  --ink-soft: #aeb7c8;
  --night: #0a101b;
  --night-raised: #111a2b;
  --fog: #0d1524;
  --paper: #ffffff;
  --surface: #171f2e;
  --line: rgba(255, 255, 255, 0.14);
  --record: #ff3547;
  --record-dark: #d91e35;
  --lens: #1689ee;
  --lens-soft: #152b45;
  --warm: #ffd45a;
  --success: #34c759;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  --radius-small: 0.7rem;
  --radius-medium: 1.25rem;
  --radius-large: 2rem;
  --content: 72rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #111a2b 0, var(--fog) 38rem, #0a101b 100%);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='noise' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 .05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 14%, rgba(22, 137, 238, 0.08), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.025), transparent 24rem);
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: 160px 160px, auto, auto;
  content: "";
  pointer-events: none;
}

a {
  color: var(--lens);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #63b7ff;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
  border-radius: 0.2rem;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  background: #f5f6f8;
  color: #0a101b;
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 16, 27, 0.84);
  backdrop-filter: blur(20px) saturate(125%);
}

.nav-shell,
.content-shell {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  border-radius: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #05080e;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.wordmark-mark::before,
.wordmark-mark::after {
  position: absolute;
  width: 0.82rem;
  height: 1.15rem;
  top: 0.43rem;
  border-radius: 0.25rem;
  content: "";
}

.wordmark-mark::before {
  left: 0.31rem;
  background: var(--lens);
}

.wordmark-mark::after {
  right: 0.31rem;
  background: var(--record);
  opacity: 0.95;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  color: rgba(245, 246, 248, 0.76);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.hero {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  gap: clamp(3rem, 6vw, 5rem);
}

.eyebrow,
.utility-label {
  margin: 0 0 1rem;
  color: var(--lens);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.2vw, 4.25rem);
}

.hero h1 span {
  color: #ffffff;
}

.hero-deck {
  max-width: 37rem;
  margin: 1.7rem 0 0;
  color: rgba(235, 239, 246, 0.72);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 7px 18px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  border-color: #ff6a78;
  background: linear-gradient(180deg, #f45463, #e92d42);
  color: #ffffff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.22), 0 8px 20px rgba(255, 53, 71, 0.18);
}

.button-primary:hover {
  background: linear-gradient(180deg, #f85f6d, var(--record-dark));
  color: #ffffff;
}

.button-secondary {
  background: linear-gradient(180deg, #303744, #202733);
}

.hero-note {
  margin: 1rem 0 0;
  color: rgba(215, 221, 231, 0.56);
  font-size: 0.84rem;
}

.capture-figure {
  position: relative;
  max-width: 27rem;
  margin-inline: auto;
}

.phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.53;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.8rem;
  background: linear-gradient(160deg, #192338 0%, #111a2b 50%, #080d16 100%);
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  z-index: 4;
  width: 32%;
  height: 1.35rem;
  border-radius: 999px;
  background: #05080e;
  content: "";
  transform: translateX(-50%);
}

.preview {
  position: absolute;
  inset: 3.9rem 0.85rem 10.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2rem;
  background: linear-gradient(145deg, #1c2939 0 33%, #3f5a6e 33% 50%, #26384b 50% 67%, #785a48 67% 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 18px 36px rgba(0, 0, 0, 0.34);
}

.preview::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), transparent 32%, rgba(0, 0, 0, 0.42));
  content: "";
}

.preview-label,
.pip-label {
  position: absolute;
  z-index: 2;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  background: rgba(8, 13, 22, 0.72);
  color: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-label {
  bottom: 0.8rem;
  left: 3.9rem;
}

.pip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 39%;
  aspect-ratio: 0.76;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.15rem;
  background: linear-gradient(150deg, #845f54 0 46%, #172436 46% 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
}

.pip-label {
  right: 0.45rem;
  bottom: 0.45rem;
}

.floating-control {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(6, 9, 15, 0.58);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 7px 14px rgba(0, 0, 0, 0.36);
  color: #ffffff;
  place-items: center;
}

.settings-control {
  top: 0.8rem;
  left: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.pip-control {
  bottom: 0.8rem;
  left: 0.8rem;
}

.pip-control::before,
.pip-control i {
  position: absolute;
  width: 1.05rem;
  height: 0.78rem;
  border: 0.14rem solid #ffffff;
  border-radius: 0.18rem;
  content: "";
}

.pip-control::before {
  top: 0.82rem;
  left: 0.72rem;
}

.pip-control i {
  right: 0.66rem;
  bottom: 0.72rem;
  background: #ffffff;
}

.capture-status {
  position: absolute;
  top: 2.65rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  transform: translateX(-50%);
}

.record-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f05a4d;
  box-shadow: 0 0 0 0.3rem rgba(240, 90, 77, 0.14);
  animation: record-pulse 2s ease-in-out infinite;
}

.lens-stops {
  position: absolute;
  right: 1rem;
  bottom: 6.8rem;
  left: 1rem;
  display: grid;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #424852;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  grid-template-columns: repeat(4, 1fr);
}

.lens-stops span {
  padding: 0.38rem 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.lens-stops .selected {
  border-radius: 999px;
  background: var(--paper);
  color: #0a101b;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
}

.phone-controls {
  position: absolute;
  right: 1.4rem;
  bottom: 1.55rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.control-small,
.control-record {
  display: grid;
  border-radius: 50%;
  place-items: center;
}

.control-small {
  width: 4.25rem;
  height: 4.25rem;
  border: 2px solid #56adf6;
  background: linear-gradient(180deg, #63b8ff, var(--lens) 58%, #0872cd);
  color: var(--paper);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.28), 0 10px 24px rgba(0, 0, 0, 0.42);
  font-size: 2.05rem;
  font-weight: 700;
}

.control-record {
  width: 4.8rem;
  height: 4.8rem;
  border: 2px solid #ff6d79;
  background: linear-gradient(180deg, #ff6a77, var(--record) 62%, #e52137);
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.3), 0 10px 24px rgba(0, 0, 0, 0.46);
}

.control-record::after {
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.decision-strip {
  position: absolute;
  right: -2.2rem;
  bottom: 24%;
  width: min(24rem, 85%);
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.05rem;
  background: rgba(23, 31, 46, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.48rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-track {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 1fr 0.72fr 1.2fr;
  gap: 0.18rem;
}

.strip-track span {
  min-height: 2.2rem;
  border-radius: 0.34rem;
}

.strip-rear {
  background: linear-gradient(135deg, #1689ee, #0d609f);
}

.strip-front {
  background: linear-gradient(135deg, #ff3547, #b8172c);
}

.strip-marker {
  position: absolute;
  top: 1.85rem;
  left: 48%;
  width: 2px;
  height: 3rem;
  background: var(--warm);
  box-shadow: 0 0 0 0.22rem rgba(244, 199, 104, 0.16);
}

.figure-caption {
  margin: 1.2rem auto 0;
  color: rgba(215, 221, 231, 0.5);
  font-size: 0.78rem;
  text-align: center;
}

.product-facts {
  display: grid;
  margin-top: 2.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-facts p {
  margin: 0;
  color: rgba(235, 239, 246, 0.62);
  font-size: 0.86rem;
}

.product-facts strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 650;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080d16;
  color: var(--paper);
}

.section-dark::after {
  display: none;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 0.55fr);
  gap: 2rem;
}

.section-heading h2,
.closing h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.workflow-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.workflow-card {
  min-height: 16rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.workflow-number {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.28);
  background: #424852;
  color: #ffffff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  place-items: center;
}

.workflow-card h3,
.feature h3,
.support-card h2,
.policy-section h2 {
  margin: 2.1rem 0 0.65rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.workflow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.timeline-demo {
  display: grid;
  margin: 3.8rem 0 0;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
}

.timeline-labels {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.timeline-tracks {
  position: relative;
  display: grid;
  gap: 0.48rem;
}

.timeline-row {
  display: grid;
  height: 2rem;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.18rem;
}

.timeline-row span {
  border-radius: 0.22rem;
  opacity: 0.35;
}

.timeline-row .active {
  opacity: 1;
}

.timeline-rear span {
  background: var(--lens);
}

.timeline-front span {
  background: var(--record);
}

.timeline-playhead {
  position: absolute;
  top: -0.3rem;
  bottom: -0.3rem;
  left: 58%;
  width: 2px;
  background: var(--warm);
}

.matrix-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.04);
}

.matrix-wrap:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.retention-table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
}

.retention-table th,
.retention-table td {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.retention-table th {
  background: #252c37;
  color: rgba(245, 246, 248, 0.68);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.retention-table tr:last-child td {
  border-bottom: 0;
}

.retention-table td:first-child {
  width: 27%;
  color: var(--ink);
  font-weight: 650;
}

.table-note {
  margin: 1rem 0 0;
  color: rgba(215, 221, 231, 0.56);
  font-size: 0.86rem;
}

.feature-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: linear-gradient(155deg, #1a2333, #121a27);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.feature h3 {
  margin-top: 0;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
}

.feature .utility-label {
  margin-bottom: 1.4rem;
}

.compatibility {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(19rem, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.compatibility-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-medium);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.compatibility-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compatibility-card li {
  position: relative;
  padding: 1rem 0 1rem 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
}

.compatibility-card li:last-child {
  border-bottom: 0;
}

.compatibility-card li::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lens);
  box-shadow: 0 0 0 0.2rem rgba(22, 137, 238, 0.14);
  content: "";
}

.faq-list {
  max-width: 52rem;
  margin: 3rem auto 0;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.28rem;
  right: 0;
  color: var(--lens);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 46rem;
  margin: -0.3rem 0 1.5rem;
  color: var(--ink-soft);
}

.closing {
  padding: clamp(3.6rem, 7vw, 5.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-large);
  background: linear-gradient(145deg, #1b2538, #101722);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.closing h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.closing p {
  max-width: 40rem;
  margin: 1.4rem auto 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.closing .button-row {
  justify-content: center;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  color: rgba(215, 221, 231, 0.52);
  font-size: 0.84rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.footer-links a {
  color: rgba(235, 239, 246, 0.68);
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 3.5rem;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5.5vw, 4.4rem);
}

.page-hero p {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.page-meta {
  margin-top: 1.2rem;
  color: rgba(215, 221, 231, 0.52);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.article-shell {
  width: min(calc(100% - 2.5rem), 54rem);
  margin: 0 auto;
  padding-bottom: 7rem;
}

.policy-section,
.support-card {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.policy-section h2,
.support-card h2 {
  margin-top: 0;
}

.policy-section p,
.policy-section li,
.support-card p,
.support-card li {
  color: var(--ink-soft);
}

.policy-section ul,
.support-card ul,
.support-card ol {
  padding-left: 1.25rem;
}

.callout {
  margin: 1.5rem 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(22, 137, 238, 0.28);
  border-left: 0.28rem solid var(--lens);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--lens-soft);
  color: #d8eaff;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 199, 89, 0.24);
  background: rgba(52, 199, 89, 0.1);
  color: #8ce5a2;
  font-size: 0.78rem;
  font-weight: 650;
}

.status-pill::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.not-found {
  display: grid;
  min-height: calc(100vh - 11rem);
  padding: 4rem 0;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.not-found p {
  max-width: 32rem;
  margin: 1.5rem auto;
  color: var(--ink-soft);
}

/* The home page is intentionally just a little landing page. */
.landing-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: #101827;
}

.landing-page::before {
  opacity: 0.72;
}

.little-shell,
.little-lander {
  width: min(calc(100% - 2.5rem), 64rem);
  margin-inline: auto;
}

.little-header {
  padding: 1.35rem 0;
}

.little-header .little-shell,
.little-footer .little-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.little-header .wordmark {
  font-size: 0.94rem;
  font-weight: 580;
}

.little-header .wordmark-mark {
  width: 1.75rem;
  height: 1.75rem;
  box-shadow: none;
}

.little-header .wordmark-mark::before,
.little-header .wordmark-mark::after {
  top: 0.38rem;
  width: 0.72rem;
  height: 1rem;
}

.little-tag {
  color: rgba(235, 239, 246, 0.48);
  font-size: 0.78rem;
}

.little-main {
  display: grid;
  flex: 1;
  align-items: center;
  padding: clamp(2.5rem, 7vh, 5.5rem) 0;
}

.little-lander {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(19rem, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.little-copy {
  padding-bottom: 1rem;
}

.little-kicker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: rgba(235, 239, 246, 0.62);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.little-kicker span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--record);
}

.little-copy h1 {
  margin: 0;
  color: #f6f7fa;
  font-size: clamp(3.4rem, 7.5vw, 5.35rem);
  font-weight: 460;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.little-deck {
  max-width: 29rem;
  margin: 1.7rem 0 0;
  color: rgba(235, 239, 246, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.55;
}

.little-button {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  margin-top: 1.8rem;
  padding: 0.72rem 0.82rem 0.72rem 1.05rem;
  border-radius: 0.85rem;
  background: #f14a5c;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 610;
  text-decoration: none;
  transform: rotate(-1deg);
  transition: transform 150ms ease, background-color 150ms ease;
}

.little-button span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.14);
  place-items: center;
}

.little-button:hover {
  background: #ff5b6c;
  color: #fff;
  transform: rotate(0) translateY(-2px);
}

.little-note {
  margin: 1rem 0 0;
  color: rgba(215, 221, 231, 0.42);
  font-size: 0.75rem;
}

.little-camera {
  position: relative;
  width: min(100%, 22rem);
  margin: 0 auto;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.8rem;
  background: #182235;
  box-shadow: 0.7rem 0.8rem 0 rgba(22, 137, 238, 0.09);
  transform: rotate(1.25deg);
}

.camera-top {
  display: flex;
  min-height: 2.1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.4rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 500;
}

.camera-top span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.camera-top i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--record);
  box-shadow: 0 0 0 0.22rem rgba(255, 53, 71, 0.12);
}

.camera-top b {
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.16em;
}

.camera-view {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #213147 0 39%, #48687e 39% 55%, #2c4056 55% 72%, #8a6757 72%);
}

.camera-view::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), transparent 35%, rgba(5, 8, 14, 0.2));
  content: "";
}

.view-name,
.camera-pip span {
  position: absolute;
  z-index: 2;
  padding: 0.3rem 0.5rem;
  border-radius: 0.55rem;
  background: rgba(7, 11, 19, 0.7);
  color: rgba(255, 255, 255, 0.86);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
}

.view-name {
  right: 0.75rem;
  bottom: 0.75rem;
}

.camera-pip {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 38%;
  aspect-ratio: 0.76;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  background: linear-gradient(150deg, #986f63 0 48%, #1b2b40 48%);
  box-shadow: 0.35rem 0.45rem 0 rgba(5, 8, 14, 0.18);
}

.camera-pip span {
  right: 0.4rem;
  bottom: 0.4rem;
}

.swap-button {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #1689ee;
  color: #fff;
  font-size: 1.25rem;
  place-items: center;
}

.camera-bottom {
  position: relative;
  min-height: 6.8rem;
  padding-top: 0.7rem;
}

.tiny-lenses {
  display: flex;
  width: max-content;
  margin: 0 auto;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tiny-lenses span {
  min-width: 2rem;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  text-align: center;
}

.tiny-lenses .on {
  background: #f4f5f7;
  color: #101827;
}

.record-button {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0.6rem auto 0;
  border: 0.3rem solid #ff6372;
  border-radius: 50%;
  background: #f7f7f7;
  box-shadow: 0 0 0 0.22rem rgba(255, 53, 71, 0.12);
}

.tiny-note {
  position: absolute;
  right: -2.1rem;
  bottom: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.25rem 0.7rem 0.7rem 0.7rem;
  background: #ffd45a;
  color: #332b14;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  transform: rotate(-4deg);
}

.little-camera figcaption {
  position: absolute;
  right: 0.5rem;
  bottom: -2rem;
  color: rgba(215, 221, 231, 0.34);
  font-size: 0.66rem;
  transform: rotate(-1.25deg);
}

.little-footer {
  padding: 1.25rem 0 1.7rem;
  color: rgba(215, 221, 231, 0.38);
  font-size: 0.72rem;
}

.little-footer nav {
  display: flex;
  gap: 1rem;
}

.little-footer a {
  color: rgba(235, 239, 246, 0.52);
  text-decoration: none;
}

.little-footer a:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .little-main {
    padding: 2.3rem 0 4rem;
  }

  .little-lander {
    max-width: 27rem;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .little-copy {
    text-align: center;
  }

  .little-kicker {
    justify-content: center;
  }

  .little-deck {
    margin-inline: auto;
  }

  .little-camera {
    width: min(88%, 20rem);
  }
}

@media (max-width: 430px) {
  .little-shell,
  .little-lander {
    width: min(calc(100% - 1.5rem), 64rem);
  }

  .little-tag {
    display: none;
  }

  .little-copy h1 {
    font-size: clamp(3.25rem, 16vw, 4.1rem);
  }

  .tiny-note {
    right: -0.8rem;
  }

  .little-footer .little-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes record-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 820px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid,
  .section-heading,
  .compatibility {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-deck {
    margin-inline: auto;
  }

  .hero .button-row {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }

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

  .product-facts {
    max-width: 32rem;
    margin-inline: auto;
  }

  .workflow-card {
    min-height: 0;
  }

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

  .closing {
    padding: 3.4rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .content-shell,
  .article-shell {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .nav-shell {
    min-height: 4rem;
  }

  .wordmark-mark {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.3rem);
  }

  .capture-figure {
    max-width: 21rem;
  }

  .decision-strip {
    right: -0.4rem;
    bottom: 31%;
  }

  .timeline-demo {
    grid-template-columns: 1fr;
  }

  .timeline-labels {
    grid-template-columns: 1fr 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .button-row,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
  }

  .article-shell {
    width: 100%;
  }
}
