/* Versioned asset: 2026-08-08 */
:root {
  --ink: #0a0a0e;
  --ink-soft: #15141b;
  --paper: #f5f1e9;
  --paper-deep: #e9e1d5;
  --white: #fffdf8;
  --text: #1b181d;
  --text-soft: #625c63;
  --line: rgba(27, 24, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --orange: #f97316;
  --orange-bright: #fb923c;
  --orange-soft: #fed7aa;
  --violet: #a78bfa;
  --mint: #34d399;
  --sky: #7dd3fc;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--orange-soft);
  color: var(--text);
}

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

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(10, 10, 14, 0.9);
  color: var(--white);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.site-header-inner,
.section-inner,
.hero-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(249, 115, 22, 0.28);
}

.brand-divider {
  width: 1px;
  height: 18px;
  background: var(--line-dark);
}

.publication {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: -25%;
  background:
    radial-gradient(circle at 15% 18%, rgba(249, 115, 22, 0.4), transparent 31%),
    radial-gradient(circle at 82% 58%, rgba(139, 92, 246, 0.26), transparent 32%),
    radial-gradient(circle at 53% 105%, rgba(52, 211, 153, 0.1), transparent 31%);
}

.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.hero-inner {
  min-height: 690px;
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--orange-bright);
}

.hero h1 {
  max-width: 800px;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--orange-soft);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #fff;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.button-dark {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

.play-mark {
  width: 19px;
  height: 21px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: currentColor;
}

.hero-proof {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-art {
  position: relative;
}

.phone-frame {
  width: min(340px, 84vw);
  min-height: 570px;
  margin: 0 auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 46px;
  background: linear-gradient(145deg, #28262e, #0e0d12);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.52), 0 0 70px rgba(249, 115, 22, 0.12);
  transform: rotate(1.6deg);
}

.phone-screen {
  min-height: 544px;
  padding: 25px 20px 22px;
  border-radius: 35px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 2%, rgba(249, 115, 22, 0.26), transparent 29%),
    #111117;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 9px;
}

.phone-heading {
  margin-top: 32px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.phone-heading span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.capture-card,
.phone-note,
.phone-task {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.capture-card {
  margin-top: 25px;
  padding: 18px;
  border-radius: 18px;
}

.capture-label,
.mini-label {
  color: var(--orange-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.capture-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

.capture-tools {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.capture-save {
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}

.phone-section-label {
  margin: 25px 2px 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-note,
.phone-task {
  margin-top: 8px;
  padding: 12px 13px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.phone-note::before,
.phone-task::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sky);
}

.phone-task::before {
  border: 1px solid var(--orange-bright);
  border-radius: 3px;
  background: transparent;
}

.phone-float {
  position: absolute;
  right: -18px;
  bottom: 76px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(26, 24, 31, 0.92);
  color: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
  font-size: 11px;
  transform: rotate(-2deg);
}

.phone-float strong {
  display: block;
  color: var(--mint);
  font-size: 12px;
}

.vault-art {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.36);
}

.vault-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 10px;
}

.vault-dots {
  display: flex;
  gap: 6px;
}

.vault-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.vault-core {
  width: 140px;
  height: 140px;
  margin: 50px auto 44px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 34px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28), rgba(249, 115, 22, 0.06));
  box-shadow: 0 0 70px rgba(249, 115, 22, 0.15);
}

.vault-core strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
  text-align: center;
}

.vault-core span {
  display: block;
  margin-top: 4px;
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
}

.file-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.file-chip {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--mono);
  font-size: 10px;
}

.vault-foot {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.vault-foot strong {
  color: var(--mint);
  font-weight: 700;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 27px 30px;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-paper-deep {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 850px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-intro {
  max-width: 720px;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 18px;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.62);
}

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

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.65);
}

.section-dark .feature-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.feature-number {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
}

.feature-card h3 {
  margin-top: 35px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.58);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 76px;
  align-items: center;
}

.split-reverse .split-copy {
  order: 2;
}

.split-reverse .split-visual {
  order: 1;
}

.editorial-section {
  width: min(900px, calc(100% - 48px));
}

.editorial-section .split-copy {
  max-width: 780px;
  margin: 0 auto;
}

.split-copy h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.split-copy > p {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 17px;
}

.section-dark .split-copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-soft);
  font-size: 14px;
}

.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.14);
  color: #0f9f72;
  font-size: 12px;
  font-weight: 800;
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.62);
}

.section-dark .check-list li::before {
  color: var(--mint);
}

.split-copy .cta-row {
  margin-top: 32px;
}

.cta-mobile-icon {
  display: none;
}

[data-primary-cta].is-mobile-companion .cta-mobile-icon {
  display: block;
}

.workflow {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.58);
}

.workflow-step {
  min-height: 265px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
}

.workflow-step h3 {
  margin-top: 48px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.workflow-step p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

.format-demo {
  padding: 30px;
  border-radius: 22px;
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 70px rgba(49, 35, 25, 0.2);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
}

.format-demo .code-dim {
  color: rgba(255, 255, 255, 0.28);
}

.format-demo .code-orange {
  color: var(--orange-soft);
}

.format-demo .code-mint {
  color: var(--mint);
}

.format-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 11px;
}

.platform-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.platform-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.platform-card .platform-status {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-card h3 {
  margin-top: 36px;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.035em;
}

.platform-card p {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.platform-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--orange-soft);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(254, 215, 170, 0.35);
}

.faq-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-grid details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.64);
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.faq-grid summary::after {
  content: '+';
  color: var(--orange);
  font-size: 21px;
  font-weight: 400;
}

.faq-grid details[open] summary::after {
  content: '−';
}

.faq-answer {
  margin-top: 15px;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.65;
}

.related-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.65);
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.4);
}

.related-card span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-card h3 {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.related-card p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 13px;
}

.related-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--text);
  font-size: 12px;
}

.closing-cta {
  padding: 84px 0;
  background: var(--ink);
  color: var(--white);
}

.closing-cta-inner {
  padding: 54px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.closing-cta h2 {
  max-width: 700px;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.closing-cta p {
  max-width: 620px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.closing-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.48);
}

.footer-inner {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

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

@media (max-width: 920px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 60px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .split-reverse .split-copy,
  .split-reverse .split-visual {
    order: initial;
  }

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

  .feature-card:last-child,
  .platform-card:last-child,
  .related-card:last-child {
    grid-column: span 2;
  }

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

  .workflow-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .closing-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-header-inner {
    min-height: 62px;
    gap: 12px;
  }

  .brand-divider,
  .publication,
  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .site-nav {
    gap: 10px;
  }

  .hero-inner {
    min-height: auto;
    padding: 70px 0 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-frame {
    min-height: 520px;
  }

  .phone-screen {
    min-height: 494px;
  }

  .phone-float {
    right: -7px;
  }

  .vault-art {
    padding: 22px;
  }

  .proof-strip .section-inner {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .feature-grid,
  .platform-grid,
  .related-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .platform-card:last-child,
  .related-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 235px;
  }

  .file-list {
    grid-template-columns: 1fr;
  }

  .closing-cta-inner {
    padding: 34px 26px;
  }

  .footer-inner {
    padding: 30px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
