:root {
  --bg: #08070d;
  --bg-soft: #100d18;
  --surface: rgba(23, 19, 34, 0.72);
  --surface-strong: rgba(30, 24, 44, 0.92);
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(232, 121, 249, 0.32);
  --text: #fbf8ff;
  --muted: #aaa2b6;
  --accent: #d946ef;
  --accent-light: #f0abfc;
  --violet: #8b5cf6;
  --blue: #60a5fa;
  --success: #86efac;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 12%, rgba(217, 70, 239, 0.13), transparent 28rem),
    radial-gradient(circle at 14% 48%, rgba(96, 165, 250, 0.07), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  background: rgba(8, 7, 13, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(240, 171, 252, 0.38);
  border-radius: 10px;
  background: #1a1024;
  box-shadow: 0 0 24px rgba(217, 70, 239, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand em {
  color: var(--accent-light);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-decoration: none;
  font: 700 0.9rem/1 "Inter", sans-serif;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-bright);
  background: rgba(217, 70, 239, 0.07);
}

.button-primary {
  border-color: #d946ef;
  background: linear-gradient(135deg, #d946ef, #9333ea);
  color: white;
  box-shadow: 0 12px 34px rgba(192, 38, 211, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: #f0abfc;
  background: linear-gradient(135deg, #e879f9, #a855f7);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.82rem;
}

.button[aria-disabled="true"] {
  opacity: 0.68;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(217, 70, 239, 0.25);
  border-radius: 999px;
  background: rgba(217, 70, 239, 0.07);
  color: #f5d0fe;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 14px var(--accent);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 64px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: 88px 0 96px;
}

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

.hero h1 {
  max-width: 690px;
  margin: 22px 0 22px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.25rem, 6.3vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.062em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  background: linear-gradient(100deg, #fff 10%, #f5d0fe 54%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 610px;
  margin: 0 0 32px;
  color: #bcb5c7;
  font-size: clamp(1.04rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.release-note {
  margin: 0;
  color: #7f778b;
  font-size: 0.78rem;
}

.app-preview {
  position: relative;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(240, 171, 252, 0.22);
  border-radius: 18px;
  background: rgba(11, 9, 17, 0.92);
  box-shadow: var(--shadow), 0 0 90px rgba(168, 85, 247, 0.13);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), border-color 300ms ease;
}

.app-preview:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-5px);
  border-color: rgba(240, 171, 252, 0.4);
}

.app-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 11px;
}

.app-preview-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(8,7,13,.8);
  color: #d7d1dd;
  font-size: .66rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.app-preview-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 9px rgba(134,239,172,.8);
}

.editor-shell {
  position: relative;
  border: 1px solid rgba(240, 171, 252, 0.22);
  border-radius: 18px;
  background: rgba(11, 9, 17, 0.92);
  box-shadow: var(--shadow), 0 0 90px rgba(168, 85, 247, 0.13);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), border-color 300ms ease;
}

.editor-shell:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-5px);
  border-color: rgba(240, 171, 252, 0.4);
}

.editor-titlebar {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid var(--border);
  color: #d8d1e0;
  font-size: 0.72rem;
}

.editor-titlebar .local {
  margin-left: auto;
  color: var(--success);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.editor-body {
  display: grid;
  grid-template-columns: 46px 1fr 138px;
  min-height: 440px;
}

.tool-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 12px 7px;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,.018);
}

.tool {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #807789;
  font-size: 0.7rem;
  font-weight: 800;
}

.tool.active {
  border-color: rgba(217, 70, 239, 0.3);
  background: rgba(217, 70, 239, 0.11);
  color: var(--accent-light);
}

.canvas-area {
  display: grid;
  place-items: center;
  padding: 34px;
  background-color: #0d0b12;
  background-image: linear-gradient(45deg, #121019 25%, transparent 25%), linear-gradient(-45deg, #121019 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #121019 75%), linear-gradient(-45deg, transparent 75%, #121019 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}

.canvas-image {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 1;
  padding: 5px;
  border: 1px solid var(--accent-light);
  box-shadow: 0 18px 45px rgba(0,0,0,.5), 0 0 28px rgba(217,70,239,.14);
}

.canvas-image::before,
.canvas-image::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid white;
  background: var(--accent);
}

.canvas-image::before {
  top: -5px;
  left: -5px;
}

.canvas-image::after {
  right: -5px;
  bottom: -5px;
}

.canvas-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer-panel {
  padding: 14px 10px;
  border-left: 1px solid var(--border);
  background: rgba(255,255,255,.018);
}

.panel-label {
  margin-bottom: 12px;
  color: #756e7d;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: #968e9e;
  font-size: 0.61rem;
}

.layer.selected {
  border-color: rgba(217,70,239,.34);
  background: rgba(217,70,239,.07);
  color: #eee9f2;
}

.layer-thumb {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  object-fit: cover;
}

.sliders {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  color: #827989;
  font-size: 0.56rem;
}

.slider-line {
  position: relative;
  height: 3px;
  margin-top: 6px;
  border-radius: 9px;
  background: #312b38;
}

.slider-line span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--accent));
}

.slider-line .slider-68 { width: 68%; }
.slider-line .slider-54 { width: 54%; }

.layer-thumb-placeholder {
  background: #1b1523;
}

.editor-timeline {
  display: grid;
  grid-template-columns: 46px 1fr;
  height: 80px;
  border-top: 1px solid var(--border);
}

.play-control {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--border);
  color: var(--accent-light);
}

.track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 17px 13px;
  overflow: hidden;
}

.clip {
  height: 38px;
  border: 1px solid rgba(139, 92, 246, .34);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(139,92,246,.22), rgba(217,70,239,.1));
}

.clip:first-child { width: 38%; }
.clip:nth-child(2) { width: 25%; }
.clip:nth-child(3) { width: 31%; }

.playhead {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 47%;
  width: 1px;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent);
}

.playhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  border: 4px solid transparent;
  border-top-color: var(--accent-light);
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.014);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.kicker {
  margin: 0 0 11px;
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.versions-page h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 70, 239, .25);
  background: var(--surface-strong);
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 27px;
  margin-bottom: 50px;
  border: 1px solid rgba(217,70,239,.23);
  border-radius: 999px;
  color: var(--accent-light);
  font: 750 0.72rem/1 "Outfit", sans-serif;
}

.feature-card h3 {
  max-width: 480px;
  margin: 0 0 9px;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card .ghost-word {
  position: absolute;
  right: -8px;
  bottom: -31px;
  color: rgba(255,255,255,.025);
  font: 800 clamp(4rem, 8vw, 7rem)/1 "Outfit", sans-serif;
  letter-spacing: -0.07em;
  user-select: none;
}

.privacy-callout {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(134,239,172,.15);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(134,239,172,.055), rgba(139,92,246,.05));
}

.privacy-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(280px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(134,239,172,.2);
  border-radius: 50%;
}

.privacy-orbit::before,
.privacy-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217,70,239,.2);
  border-radius: 50%;
}

.privacy-orbit::before { inset: 25px; }
.privacy-orbit::after { inset: 55px; }

.privacy-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(134,239,172,.38);
  border-radius: 24px;
  background: #101813;
  color: var(--success);
  font: 800 0.78rem/1.2 "Outfit", sans-serif;
  text-align: center;
  box-shadow: 0 0 50px rgba(134,239,172,.1);
}

.privacy-copy h2 {
  margin-bottom: 18px;
}

.privacy-copy > p {
  max-width: 620px;
  color: var(--muted);
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  color: #d5cfdd;
  font-size: 0.87rem;
}

.privacy-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--success);
  font-weight: 800;
}

.download-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: 72px 30px;
  border: 1px solid var(--border-bright);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(217,70,239,.18), transparent 60%),
    var(--surface);
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.download-band h2 {
  max-width: 740px;
  margin: 0 auto 15px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.download-band > p {
  max-width: 620px;
  margin: 0 auto 27px;
  color: var(--muted);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--border);
  color: #7f7788;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.versions-page {
  width: min(920px, calc(100% - 40px));
  min-height: calc(100vh - 210px);
  margin: 0 auto;
  padding: 88px 0 110px;
}

.versions-intro {
  margin-bottom: 44px;
  text-align: center;
}

.versions-intro .kicker {
  margin-bottom: 10px;
}

.versions-intro > p:last-child {
  max-width: 620px;
  margin: 17px auto 0;
  color: var(--muted);
}

.release-list {
  display: grid;
  gap: 14px;
}

.release-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.release-card[open] {
  border-color: rgba(217,70,239,.27);
}

.release-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.release-card summary::-webkit-details-marker {
  display: none;
}

.release-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
  font-weight: 750;
}

.release-badge {
  padding: 3px 8px;
  border: 1px solid rgba(217,70,239,.27);
  border-radius: 999px;
  color: var(--accent-light);
  font: 800 0.6rem/1.25 "Inter", sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.release-badge.preview {
  border-color: rgba(96,165,250,.28);
  color: #bfdbfe;
}

.release-date {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.release-body {
  padding: 22px;
  border-top: 1px solid var(--border);
}

.release-notes-body {
  margin: 0 0 20px;
  color: #b9b1c1;
  font: 0.88rem/1.7 "Inter", sans-serif;
  white-space: pre-wrap;
}

.asset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.asset-link {
  padding: 7px 10px;
  border: 1px solid var(--border-bright);
  border-radius: 7px;
  background: rgba(217,70,239,.05);
  color: #f5d0fe;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.asset-link span {
  margin-left: 5px;
  color: var(--muted);
  font-weight: 500;
}

.release-state {
  padding: 58px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.release-state p {
  margin: 0 0 19px;
}

.spinner {
  width: 30px;
  height: 30px;
  margin: 0 auto 15px;
  border: 2px solid var(--border);
  border-top-color: var(--accent-light);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
  }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .editor-shell,
  .app-preview { max-width: 680px; margin: 0 auto; transform: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .section-head { grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { grid-column: span 6; }
  .privacy-callout { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
  .site-nav { min-height: 62px; padding: 0 15px; }
  .brand { font-size: 1.04rem; }
  .nav-download { padding: 8px 11px; }
  .nav-download .nav-download-extra { display: none; }
  .hero { width: min(100% - 28px, 1180px); padding: 58px 0 70px; gap: 44px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-actions .button { width: 100%; }
  .editor-body { grid-template-columns: 38px 1fr; min-height: 325px; }
  .layer-panel { display: none; }
  .tool-rail { padding-inline: 4px; }
  .tool { width: 27px; }
  .canvas-area { padding: 24px; }
  .editor-timeline { grid-template-columns: 38px 1fr; }
  .trust-inner { width: min(100% - 28px, 1180px); }
  .trust-item { padding: 22px 16px; }
  .trust-item strong { font-size: .92rem; }
  .section { width: min(100% - 28px, 1180px); padding: 82px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { grid-column: auto; min-height: 245px; }
  .feature-number { margin-bottom: 37px; }
  .privacy-callout { padding: 38px 20px; }
  .privacy-list { grid-template-columns: 1fr; }
  .download-band { width: min(100% - 28px, 1180px); margin-bottom: 80px; padding: 58px 20px; }
  .download-actions .button { width: 100%; }
  .site-footer { flex-direction: column; width: min(100% - 28px, 1180px); }
  .versions-page { width: min(100% - 28px, 920px); padding-top: 60px; }
  .release-card summary { align-items: flex-start; padding: 17px; }
  .release-date { padding-top: 4px; }
  .release-body { padding: 17px; }
}
