@font-face {
  font-family: "Victor Mono";
  src: url("assets/VictorMono-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1e1c1f;
  --muted: #68625e;
  --paper: #f5eddf;
  --surface: #fffaf1;
  --coral: #f26343;
  --coral-dark: #d94e32;
  --pink-soft: #f4dfe9;
  --gold-soft: #f5e4bb;
  --mint-soft: #dcece8;
  --line: rgba(30, 28, 31, 0.13);
  --dark-line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Victor Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.site-header {
  width: min(1220px, calc(100% - 56px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(67, 50, 39, 0.12);
}

.site-header > nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-header > nav a {
  text-decoration: none;
}

.site-header > nav a:not(.nav-download) {
  color: var(--muted);
  transition: color 160ms ease;
}

.site-header > nav a:not(.nav-download):hover {
  color: var(--ink);
}

.nav-download {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-download:hover {
  color: var(--paper);
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  width: min(1220px, calc(100% - 56px));
  min-height: 720px;
  margin: 0 auto;
  padding: 94px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 24px;
  color: #5e5854;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  letter-spacing: -0.075em;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-main {
  font-size: clamp(64px, 6.65vw, 100px);
  font-weight: 500;
  line-height: 0.91;
}

.hero-title-accent {
  margin-top: 29px;
  color: var(--coral);
  font-size: clamp(34px, 3.7vw, 55px);
  font-weight: 200;
  line-height: 1.09;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 650px;
  margin: 34px 0 0;
  color: #514c48;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.025em;
}

.trust-line {
  margin: 23px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: #4e4946;
  font-size: 9px;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.trust-line span:not(:last-child)::after {
  content: "•";
  color: var(--coral);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.site-header > nav a:focus-visible,
.footer-links a:focus-visible,
.brand:focus-visible,
.download-actions > a:focus-visible,
.demo-frame button:focus-visible,
.import-preview:focus-visible,
.image-lightbox button:focus-visible,
.support-card:focus-visible,
.legal-content a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.button-primary {
  color: #fffaf1;
  background: var(--coral);
  box-shadow: 0 13px 28px rgba(242, 99, 67, 0.19);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 17px 34px rgba(242, 99, 67, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.58);
}

.button-secondary:hover {
  background: var(--surface);
}

.release-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.hero-product {
  width: min(100%, 470px);
  justify-self: end;
}

.icon-stage {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 28, 31, 0.09);
  border-radius: 38px;
  background: rgba(255, 250, 241, 0.6);
  box-shadow: 0 34px 80px rgba(66, 49, 38, 0.11);
}

.app-icon {
  display: block;
  width: 67%;
  height: auto;
  border-radius: 24%;
  filter: drop-shadow(0 29px 30px rgba(62, 44, 34, 0.2));
}

.hero-facts {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: 0.8fr 0.62fr 1.58fr;
  gap: 8px;
}

.hero-facts > div {
  min-width: 0;
  padding: 16px 13px 15px;
  border-radius: 14px;
  background: rgba(255, 250, 241, 0.58);
}

.hero-facts dt {
  overflow: hidden;
  margin: 0;
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.055em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-facts .fact-wide dt {
  font-size: clamp(11px, 1.05vw, 14px);
  line-height: 1.28;
  text-overflow: clip;
  white-space: normal;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.demo-section {
  padding: 126px 28px 132px;
  color: #f7f0e6;
  background: var(--ink);
}

.demo-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.demo-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: end;
  gap: 72px;
}

.eyebrow-on-dark {
  color: #f48a72;
}

.demo-heading h2,
.theme-heading h2,
.story-section h2,
.download-panel h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.demo-heading h2 {
  font-size: clamp(45px, 5.25vw, 76px);
  line-height: 0.98;
}

.demo-heading > p {
  max-width: 500px;
  margin: 0 0 3px;
  color: #bbb2aa;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.demo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 25px;
  background: #0e0d0f;
  box-shadow: 0 38px 85px rgba(0, 0, 0, 0.34);
}

.demo-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0e0d0f;
}

.demo-frame button {
  position: absolute;
  top: 17px;
  right: 17px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  color: #fffaf1;
  background: rgba(20, 18, 21, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.demo-frame button:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(20, 18, 21, 0.96);
}

.theme-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 126px 0 132px;
}

.theme-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 72px;
}

.theme-heading h2 {
  max-width: 910px;
  font-size: clamp(39px, 4.6vw, 66px);
  line-height: 1.04;
}

.theme-heading > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: #554f4b;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 14px;
}

.vibe-card {
  min-width: 0;
  min-height: 292px;
  padding: 22px 19px 19px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(30, 28, 31, 0.08);
  border-radius: 19px;
  background: rgba(255, 250, 241, 0.7);
  box-shadow: 0 17px 40px rgba(66, 49, 38, 0.055);
}

.vibe-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6f6762;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.vibe-variant {
  padding: 5px 7px 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 237, 223, 0.72);
}

.vibe-card h3 {
  min-height: 54px;
  margin: 25px 0 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.theme-samples {
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.theme-samples li {
  min-width: 0;
  min-height: 42px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(128, 128, 128, 0.2);
  border-radius: 10px;
  color: var(--theme-fg);
  background: var(--theme-bg);
  font-size: 9px;
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-samples i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: var(--theme-accent);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.import-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 14px 0 132px;
}

.import-heading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.import-heading h2 {
  margin: 0;
  font-size: clamp(39px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.import-heading > p {
  max-width: 460px;
  margin: 0 0 4px;
  color: #554f4b;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.import-heading code,
.compatibility-note code,
.legal-content code {
  padding: 0.13em 0.36em;
  border-radius: 5px;
  color: var(--ink);
  background: rgba(30, 28, 31, 0.075);
  font-size: 0.92em;
  font-weight: 450;
}

.import-workflow {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: clamp(36px, 5vw, 66px);
}

.import-visual {
  min-width: 0;
  margin: 0;
}

.import-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 21px;
  color: #fffaf1;
  background: #081823;
  text-align: left;
  cursor: zoom-in;
}

.import-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(30, 28, 31, 0.16);
  border-radius: 21px;
  background: #081823;
  box-shadow: 0 30px 68px rgba(62, 46, 35, 0.18);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.import-preview:hover img {
  border-color: rgba(242, 99, 67, 0.68);
  box-shadow: 0 34px 76px rgba(62, 46, 35, 0.25);
}

.import-preview-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: rgba(14, 13, 15, 0.86);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.24);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.import-visual figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: clamp(16px, 2.5vw, 34px);
  overflow: hidden;
  overscroll-behavior: contain;
  color: #fffaf1;
  background: rgba(14, 13, 15, 0.98);
  backdrop-filter: blur(12px);
}

.image-lightbox:not([hidden]) {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.image-lightbox-header p {
  margin: 0;
  color: #c8bfb7;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.image-lightbox button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #fffaf1;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.image-lightbox button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.image-lightbox > img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: #081823;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.import-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.import-steps li {
  padding: 27px 0 28px;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.import-steps li:first-child {
  border-top: 1px solid var(--line);
}

.step-number {
  padding-top: 5px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.import-steps h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.import-steps p {
  margin: 0;
  color: #554f4b;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.import-steps strong {
  color: var(--ink);
  font-weight: 550;
}

.compatibility-note {
  margin-top: 45px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) minmax(0, 1.64fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compatibility-note > span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.compatibility-note p {
  max-width: 760px;
  margin: 0;
  color: #554f4b;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.compatibility-note strong {
  color: var(--ink);
  font-weight: 550;
}

.story-section {
  padding: 0 28px 132px;
}

.story-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(48px, 6.2vw, 82px);
  border-radius: 27px;
  background: #f9ded5;
  box-shadow: 0 30px 68px rgba(62, 46, 35, 0.09);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.story-section h2 {
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: 0.98;
}

.story-copy {
  max-width: 570px;
}

.story-copy p {
  margin: 0 0 18px;
  color: #504946;
  font-size: 13px;
  line-height: 1.82;
  letter-spacing: -0.025em;
}

.story-copy .story-punchline {
  margin: 31px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.download-panel {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 98px;
  padding: clamp(48px, 6.2vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  align-items: end;
  gap: 70px;
  border-radius: 27px;
  color: #fff8ed;
  background: var(--ink);
  box-shadow: 0 35px 75px rgba(62, 46, 35, 0.14);
}

.download-panel h2 {
  font-size: clamp(49px, 6.1vw, 86px);
  line-height: 0.94;
}

.download-panel > div:first-child > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: #bbb2aa;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.button-dark {
  color: #fffaf1;
  background: var(--coral);
  box-shadow: 0 15px 30px rgba(242, 99, 67, 0.2);
}

.button-dark:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 34px rgba(242, 99, 67, 0.27);
}

.download-actions > a:not(.button) {
  color: #c8bfb7;
  font-size: 10px;
  font-weight: 400;
  text-underline-offset: 4px;
}

.site-footer {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 36px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.site-footer > div {
  display: grid;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(104, 98, 94, 0.45);
  text-underline-offset: 3px;
}

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

.site-footer > span:last-child {
  max-width: 650px;
  text-align: right;
}

.legal-main {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0 118px;
  overflow: visible;
}

.legal-hero {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(56px, 7.3vw, 94px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.legal-lede {
  max-width: 740px;
  margin: 31px 0 0;
  color: #514c48;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.025em;
}

.legal-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-content {
  width: min(760px, 100%);
  padding-top: 56px;
}

.legal-content section + section {
  margin-top: 51px;
}

.legal-content h2 {
  margin: 0 0 19px;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.legal-content p,
.legal-content li {
  color: #554f4b;
  font-size: 12px;
  line-height: 1.82;
  letter-spacing: -0.02em;
}

.legal-content p {
  margin: 0 0 17px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  text-decoration-color: rgba(30, 28, 31, 0.35);
  text-underline-offset: 4px;
}

.legal-callout {
  margin: 35px 0;
  padding: 25px 27px;
  border-radius: 17px;
  background: rgba(255, 250, 241, 0.72);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

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

.support-card {
  min-height: 225px;
  padding: 24px 21px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(62, 46, 35, 0.1);
}

.support-card:nth-child(1) {
  background: #f9ded5;
}

.support-card:nth-child(2) {
  background: var(--gold-soft);
}

.support-card:nth-child(3) {
  background: var(--mint-soft);
}

.support-card span {
  color: #665d58;
  font-size: 8px;
  font-weight: 550;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.support-card h2 {
  margin: auto 0 12px;
  font-size: 22px;
}

.support-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.changelog-release {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
}

.changelog-release + .changelog-release {
  padding-top: 48px;
}

.changelog-release:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.release-heading {
  margin-bottom: 27px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.release-heading h2 {
  margin: 0;
}

.release-heading time {
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding: 88px 0 108px;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-product {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 0.76fr) minmax(260px, 1.24fr);
    align-items: end;
    gap: 14px;
    justify-self: stretch;
  }

  .hero-facts {
    margin: 0;
    grid-template-columns: 1fr;
  }

  .hero-facts > div {
    padding: 20px;
  }

  .hero-facts dt {
    font-size: 18px;
  }

  .demo-heading {
    gap: 44px;
  }

  .theme-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .import-workflow {
    grid-template-columns: 1fr;
    gap: 31px;
  }

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

  .import-steps li,
  .import-steps li:first-child {
    padding: 22px 0 0;
    display: block;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .step-number {
    display: block;
    margin-bottom: 16px;
    padding: 0;
  }

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

  .support-card {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .theme-section,
  .import-section,
  .download-panel,
  .site-footer,
  .legal-main {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 78px;
  }

  .brand {
    font-size: 13px;
  }

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

  .site-header > nav {
    gap: 16px;
  }

  .site-header > nav a:not(.nav-download) {
    display: none;
  }

  .nav-download {
    padding: 10px 13px;
  }

  .hero {
    padding: 70px 0 86px;
    gap: 57px;
  }

  .hero-title-main {
    font-size: clamp(51px, 15.5vw, 74px);
  }

  .hero-title-accent {
    margin-top: 24px;
    font-size: clamp(29px, 8.6vw, 42px);
  }

  .hero-summary {
    margin-top: 28px;
    font-size: 14px;
  }

  .trust-line {
    margin-top: 21px;
    gap: 6px;
    font-size: 8px;
  }

  .hero-product {
    display: block;
  }

  .icon-stage {
    width: min(100%, 410px);
    margin: 0 auto;
    border-radius: 30px;
  }

  .hero-facts {
    margin-top: 10px;
    grid-template-columns: 0.8fr 0.62fr 1.58fr;
  }

  .hero-facts > div {
    padding: 14px 9px;
  }

  .hero-facts dt {
    font-size: 12px;
  }

  .hero-facts .fact-wide dt {
    font-size: 9px;
  }

  .hero-facts dd {
    font-size: 8px;
  }

  .demo-section {
    padding: 88px 16px 92px;
  }

  .demo-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .demo-heading h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .demo-heading > p {
    font-size: 12px;
  }

  .demo-frame {
    border-radius: 14px;
  }

  .demo-frame button {
    top: 10px;
    right: 10px;
    min-height: 34px;
    padding: 0 11px;
    font-size: 8px;
  }

  .theme-section {
    padding: 88px 0 84px;
  }

  .theme-heading {
    margin-bottom: 36px;
  }

  .theme-heading h2 {
    font-size: clamp(34px, 10vw, 51px);
  }

  .theme-heading > p {
    font-size: 12px;
  }

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

  .vibe-card {
    min-height: 278px;
  }

  .import-section {
    padding: 4px 0 90px;
  }

  .import-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .import-heading h2 {
    font-size: clamp(34px, 10vw, 51px);
  }

  .import-heading > p {
    font-size: 12px;
  }

  .import-visual img {
    border-radius: 13px;
  }

  .import-preview {
    border-radius: 13px;
  }

  .import-preview-label {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    font-size: 8px;
  }

  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox:not([hidden]) {
    gap: 12px;
  }

  .image-lightbox-header {
    gap: 14px;
  }

  .image-lightbox-header p {
    font-size: 8px;
  }

  .image-lightbox button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 9px;
  }

  .image-lightbox > img {
    border-radius: 10px;
  }

  .import-visual figcaption {
    line-height: 1.6;
  }

  .import-steps {
    display: block;
  }

  .import-steps li,
  .import-steps li:first-child {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 15px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .import-steps li:first-child {
    border-top: 1px solid var(--line);
  }

  .step-number {
    margin: 0;
    padding-top: 5px;
  }

  .compatibility-note {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-section {
    padding: 0 16px 90px;
  }

  .story-inner {
    padding: 43px 26px;
    border-radius: 20px;
  }

  .story-section h2 {
    font-size: clamp(43px, 13vw, 67px);
  }

  .story-copy p {
    font-size: 12px;
  }

  .download-panel {
    margin-bottom: 72px;
    padding: 43px 26px;
    grid-template-columns: 1fr;
    gap: 39px;
    border-radius: 20px;
  }

  .download-panel h2 {
    font-size: clamp(43px, 13vw, 67px);
  }

  .site-footer {
    padding-bottom: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .site-footer > span:last-child {
    text-align: left;
  }

  .legal-main {
    padding: 68px 0 88px;
  }

  .legal-hero {
    padding-bottom: 42px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .legal-lede {
    font-size: 14px;
  }

  .legal-content {
    padding-top: 42px;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 7px;
  }

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

  .vibe-card {
    min-height: 272px;
  }

  .download-actions {
    align-items: stretch;
  }

  .download-actions > a:not(.button) {
    text-align: center;
  }

  .release-heading {
    display: block;
  }

  .release-heading time {
    display: block;
    margin-top: 8px;
  }
}

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

  .button,
  .site-header > nav a,
  .footer-links a,
  .support-card {
    transition: none;
  }
}
