@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/manrope-300.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/manrope-800.ttf") format("truetype");
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/lora-400-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/lora-600-normal.woff2") format("woff2");
}

:root {
  --bg: #f7f7f5;
  --panel: #fafafa;
  --paper: #fffffb;
  --ink: #111827;
  --ink-soft: #343a40;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e5e5e5;
  --line-dark: #d1d5db;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(247,247,245,.3) 42%, rgba(247,247,245,.86));
  background-size: 220px 220px, auto;
  mix-blend-mode: multiply;
  opacity: 0.28;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  background: rgba(247, 247, 245, 0.78);
  border-bottom: 1px solid rgba(229, 229, 229, 0.86);
  backdrop-filter: blur(20px);
}

.brand,
.brand span,
.header-cta,
nav a,
.button,
.updates-form input,
.updates-form button,
.surface-head,
.file-path,
.video-label,
.answer-panel small,
.answer-panel mark,
.sheet-panel {
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 600;
}

.brand img {
  width: 34px;
  height: 34px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.github-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: rgba(255, 255, 251, 0.72);
  border: 1px solid var(--line-dark);
  border-radius: 7px;
}

.github-icon-link:hover {
  background: #fff;
  border-color: var(--ink);
}

.github-icon-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  min-height: 100svh;
  padding-top: 68px;
}

.hero-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: calc(100svh - 150px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 70px 0 46px;
}

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

.hero h1,
.intro h2,
.demo-copy h2,
.file-coverage-section h2,
.local-section h2,
.trust-section h2,
.faq-section h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.93;
  font-weight: 300;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover,
.header-cta:hover {
  background: #000;
}

.button-light {
  background: rgba(255, 255, 251, 0.52);
  border-color: var(--line-dark);
}

.button-light:hover {
  background: #fff;
  border-color: var(--ink);
}

.demo-surface,
.video-surface,
.budget-surface {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.answer-panel small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #111;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 550ms ease;
}

.media-frame:hover img {
  transform: scale(1.035);
}

.timeline {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.34);
}

.timeline i,
.timeline b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
}

.timeline i {
  width: 58%;
  background: rgba(255, 255, 255, 0.82);
}

.timeline b {
  left: 58%;
  width: 14%;
  background: #fff;
}

.memory-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.72);
}

.memory-strip p {
  margin: 0;
  padding: 28px max(24px, calc((100vw - 1200px) / 2));
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.memory-strip p:last-child {
  border-left: 1px solid var(--line);
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.intro,
.file-coverage-section,
.local-section,
.trust-section,
.faq-section,
.updates-section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.intro {
  padding: 118px 0 70px;
}

.intro h2 {
  max-width: 980px;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 0.98;
}

.demo-section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  min-height: auto;
  display: block;
  padding: 104px 0 116px;
  border-top: 1px solid var(--line);
}

.demo-copy {
  max-width: 780px;
  margin: 0 0 42px;
}

.demo-copy h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 0.98;
}

.demo-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.demo-surface,
.video-surface,
.budget-surface {
  padding: 20px;
}

.recording-surface {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.recording-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--paper);
}

.recording-frame-crop-top {
  aspect-ratio: 16 / 9;
}

.recording-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recording-frame-crop-top .recording-video {
  transform: scale(1.025);
  transform-origin: center;
}

.surface-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.surface-head strong {
  color: var(--ink);
  font-weight: 600;
}

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

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  filter: saturate(0.88);
}

.photo-grid figcaption {
  overflow: hidden;
  padding: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-path {
  overflow: hidden;
  margin: 16px 0 0;
  padding: 13px 14px;
  color: var(--ink-soft);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inverse {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.video-surface {
  color: var(--ink);
  background: #fff;
}

.video-surface > p {
  margin: 18px 0 0;
  padding: 0 2px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.video-label {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(17, 24, 39, 0.68);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
}

.video-label time {
  white-space: nowrap;
}

.budget-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: 18px;
}

.answer-panel {
  padding: 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
}

.answer-panel h3 {
  margin: 0;
  max-width: 480px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.answer-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.answer-panel dl {
  display: grid;
  gap: 0;
  margin: 26px 0;
}

.answer-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.answer-panel dt,
.answer-panel dd {
  margin: 0;
  font-weight: 600;
}

.answer-panel dd {
  color: #fff;
}

.answer-panel mark {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 10px;
  color: var(--ink);
  background: #fff;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
}

.sheet-panel {
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-size: 13px;
}

.sheet-panel div {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.78fr 0.64fr;
  border-bottom: 1px solid var(--line);
}

.sheet-panel div:last-child {
  border-bottom: 0;
}

.sheet-panel div:first-child {
  background: var(--panel);
}

.sheet-panel span,
.sheet-panel strong,
.sheet-panel b {
  min-width: 0;
  padding: 13px 10px;
  border-right: 1px solid var(--line);
}

.sheet-panel span:last-child,
.sheet-panel strong:last-child,
.sheet-panel b:last-child {
  border-right: 0;
}

.sheet-panel b {
  color: var(--ink);
}

.file-coverage-section,
.local-section,
.trust-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(520px, 1.16fr);
  gap: 94px;
  padding: 116px 0;
  border-top: 1px solid var(--line);
}

.file-coverage-section {
  align-items: start;
}

.file-coverage-section h2 {
  max-width: 560px;
  font-size: clamp(38px, 4.7vw, 64px);
  font-weight: 300;
  line-height: 1;
}

.local-section h2,
.trust-section h2,
.faq-section h2 {
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 0.98;
}

.local-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.local-section li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.local-section li > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.local-section strong {
  display: block;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.local-section p,
.trust-copy p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.trust-section {
  align-items: start;
}

.trust-copy {
  padding: 2px 0 0;
}

.trust-copy p {
  max-width: 610px;
  margin-top: 0;
  font-size: 20px;
}

.trust-copy p + p {
  margin-top: 16px;
}

.trust-copy ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-copy li {
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

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

.faq-section h2 {
  max-width: 560px;
  font-weight: 300;
}

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

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

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  margin-left: 24px;
  color: var(--muted);
  font-weight: 300;
}

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

.faq-list p {
  max-width: 680px;
  margin: -8px 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.updates-section {
  padding: 100px 0 112px;
  border-top: 1px solid var(--line);
}

.updates-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.updates-inner svg {
  width: 25px;
  height: 25px;
  margin: 0 auto 12px;
  color: var(--ink);
  fill: currentColor;
}

.updates-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.updates-inner p {
  margin: 20px auto 18px;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.updates-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 142px;
  gap: 12px;
  width: min(100%, 500px);
  margin: 0 auto;
}

.updates-form input,
.updates-form button {
  min-height: 48px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 15px;
}

.updates-form input {
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 251, 0.72);
  border: 1px solid var(--line-dark);
}

.updates-form input:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.updates-form button {
  cursor: pointer;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  font-weight: 600;
}

.updates-form button:hover {
  background: #000;
}

.updates-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.updates-status[data-state="success"] {
  color: #17623a;
}

.updates-status[data-state="error"] {
  color: #b42318;
}

.format-strip {
  padding-top: 0;
  border-top: 1px solid var(--line-dark);
}

.format-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.format-groups div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.format-groups div p {
  margin: 0;
}

.format-groups span {
  display: block;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.format-groups b {
  display: inline-flex;
  margin: 0 14px 8px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(24px, calc((100vw - 1200px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--ink);
}

.legal-shell {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 118px;
}

.legal-article {
  color: var(--ink-soft);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.legal-back:hover {
  color: var(--ink);
}

.legal-article h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.legal-meta {
  margin: 0 0 54px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-article h2 {
  margin: 44px 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.legal-article p,
.legal-article li {
  font-size: 17px;
  line-height: 1.72;
}

.legal-article ul {
  padding-left: 20px;
}

html.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal],
html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .file-coverage-section,
  .local-section,
  .trust-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .demo-copy p {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .intro,
  .demo-section,
  .file-coverage-section,
  .local-section,
  .trust-section,
  .faq-section,
  .updates-section {
    width: min(100% - 28px, 1200px);
  }

  .demo-section {
    margin: 0 auto;
  }

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

  .hero h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions,
  .memory-strip,
  .budget-surface {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .memory-strip p {
    padding: 22px 16px;
  }

  .memory-strip p:last-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .intro {
    padding: 74px 0 38px;
  }

  .demo-section,
  .file-coverage-section,
  .local-section,
  .trust-section,
  .faq-section,
  .updates-section {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .demo-copy h2,
  .file-coverage-section h2,
  .local-section h2,
  .trust-section h2,
  .faq-section h2 {
    font-size: 42px;
  }

  .updates-form {
    grid-template-columns: 1fr;
  }

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

  .photo-grid figure:nth-child(3) {
    display: none;
  }

  .video-label {
    left: 12px;
    right: 12px;
    top: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .local-section li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-shell {
    width: min(100% - 28px, 860px);
    padding: 110px 0 86px;
  }

  .format-groups div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .demo-surface,
  .video-surface,
  .budget-surface {
    box-shadow: 0 16px 54px rgba(17, 24, 39, 0.10);
  }

  .demo-surface,
  .video-surface,
  .budget-surface {
    padding: 14px;
  }
}
