:root {
  color-scheme: dark;
  --bg: #07070a;
  --bg-soft: #0d0d12;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.17);
  --text: #f7f7fa;
  --muted: #9a9aa5;
  --muted-2: #686873;
  --purple: #8a62ff;
  --violet: #6d5dfb;
  --magenta: #d558e9;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(115, 72, 224, 0.09), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(138, 98, 255, 0.45);
  color: white;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid #a889ff;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container.narrow {
  max-width: 780px;
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: white;
  color: black;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(24px) saturate(150%);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: max-content;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 9px;
  filter: drop-shadow(0 5px 14px rgba(120, 71, 255, 0.25));
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #b8b8c0;
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: white;
}

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

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switcher button,
.account-button {
  border: 0;
  cursor: pointer;
  color: #aaaab4;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
}

.language-switcher button {
  min-width: 27px;
  height: 25px;
  padding: 0 7px;
  border-radius: 999px;
}

.language-switcher button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.account-button {
  max-width: 110px;
  overflow: hidden;
  padding: 8px 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-button:hover { color: white; }
.account-button.is-authenticated {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  max-width: none;
  color: #e9e9ef;
}
.account-button.is-authenticated::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52d58a;
  box-shadow: 0 0 0 4px rgba(82, 213, 138, 0.1);
  content: "";
}
.mobile-nav-tools { display: none; }

[hidden] { display: none !important; }

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 200ms var(--ease), box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
}

.button-primary {
  background: linear-gradient(135deg, #8e6aff, #7045f3 58%, #bb4fd8);
  box-shadow: 0 10px 36px rgba(113, 69, 243, 0.3), inset 0 1px rgba(255, 255, 255, 0.25);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 16px 46px rgba(113, 69, 243, 0.42), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button-light {
  background: #f5f5f7;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
  color: #09090c;
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: #dddde3;
}

.button-ghost:hover {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.07);
}

.button-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 12px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 104px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 760px;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  left: calc(50% - 420px);
  width: 480px;
  height: 360px;
  background: rgba(91, 56, 226, 0.25);
}

.hero-glow-two {
  top: 250px;
  left: calc(50% + 100px);
  width: 360px;
  height: 300px;
  background: rgba(208, 73, 215, 0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #b6b6c1;
  font-size: 12px;
  font-weight: 600;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a67dff;
  box-shadow: 0 0 12px #8a62ff;
}

.hero h1 {
  max-width: 970px;
  margin: 28px auto 26px;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.gradient-text {
  padding-right: 0.08em;
  background: linear-gradient(110deg, #fff 5%, #bca8ff 38%, #9a67ff 60%, #eb8dda 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto;
  color: #a9a9b3;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

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

.hero-note {
  margin: 15px 0 0;
  color: #666671;
  font-size: 11px;
}

.product-stage {
  position: relative;
  max-width: 1150px;
  margin: 105px auto 0;
  perspective: 1500px;
}

.stage-aura {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 40%;
  background: linear-gradient(90deg, rgba(90, 56, 230, 0.3), rgba(205, 72, 208, 0.2));
  filter: blur(90px);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: #151519;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 1px rgba(255, 255, 255, 0.08);
  text-align: left;
  transform: rotateX(2deg);
  transform-origin: center bottom;
  transition: transform 500ms var(--ease);
}

.product-stage:hover .app-window {
  transform: rotateX(0deg) translateY(-4px);
}

.app-titlebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 45px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: #1b1b20;
  color: #9b9ba4;
  font-size: 9px;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights i,
.demo-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb5f57;
}

.traffic-lights i:nth-child(2), .demo-browser-bar i:nth-child(2) { background: #fdbd2e; }
.traffic-lights i:nth-child(3), .demo-browser-bar i:nth-child(3) { background: #28c840; }

.app-project-name {
  color: #d2d2d8;
  font-weight: 600;
}

.app-toolbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

.app-toolbar-actions .mock-export {
  padding: 6px 11px;
  border: 0;
  border-radius: 6px;
  background: #7651ee;
  color: white;
  font-size: 8px;
  font-weight: 700;
}

.app-layout {
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  min-height: 575px;
}

.mock-sidebar,
.mock-inspector {
  padding: 16px 13px;
  background: #19191e;
  font-size: 8px;
}

.mock-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.mock-inspector {
  border-left: 1px solid rgba(255, 255, 255, 0.055);
}

.mock-brand {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 10px;
}

.mock-brand img {
  width: 23px;
  height: 23px;
  border-radius: 6px;
}

.mock-record {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  height: 29px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: #6646d5;
  color: white;
  font-weight: 700;
}

.mock-record i {
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
}

.mock-sidebar > small,
.mock-inspector > small {
  display: block;
  margin: 17px 0 8px;
  color: #72727b;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mock-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 22px;
  color: #b5b5be;
}

.mock-setting b {
  color: #8870e8;
  font-size: 7px;
}

.mock-setting em {
  position: relative;
  width: 18px;
  height: 10px;
  border-radius: 9px;
  background: #6f52e8;
}

.mock-setting em::after {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  content: "";
}

.mock-project {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 3px;
  padding: 6px;
  border-radius: 6px;
  color: #b5b5bd;
  line-height: 1.3;
}

.mock-project.active {
  background: rgba(119, 84, 238, 0.15);
  color: white;
}

.mock-project small {
  color: #6f6f78;
  font-size: 6px;
}

.thumb {
  flex: 0 0 auto;
  width: 32px;
  height: 20px;
  border-radius: 4px;
}

.thumb-one { background: linear-gradient(135deg, #4d41bf, #d158c6); }
.thumb-two { background: linear-gradient(135deg, #133a57, #48b79f); }

.mock-editor {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #121216;
}

.mock-canvas {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  margin: 20px 24px 12px;
  padding: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5b4ae3, #bf55d2 58%, #f07e95);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.1);
}

.demo-browser {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #f3f1f7;
  box-shadow: 0 18px 45px rgba(15, 4, 35, 0.4);
}

.demo-browser-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 25px;
  padding: 0 9px;
  background: #25242b;
}

.demo-browser-bar i {
  width: 6px;
  height: 6px;
}

.demo-browser-bar span {
  margin-left: auto;
  margin-right: auto;
  color: #85838c;
  font-size: 6px;
}

.demo-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(139, 93, 255, 0.12), transparent 35%),
    #f7f6fa;
  color: #16151b;
}

.demo-page-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.demo-page-copy small {
  color: #7955e8;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.demo-page-copy strong {
  margin-top: 8px;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.demo-page-copy span {
  width: 55px;
  height: 15px;
  margin-top: 15px;
  border-radius: 8px;
  background: #7651ee;
}

.demo-card {
  width: 150px;
  height: 165px;
  padding: 15px;
  border: 1px solid rgba(30, 25, 50, 0.08);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 35px rgba(30, 20, 70, 0.12);
}

.demo-card i {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: linear-gradient(135deg, #7253e9, #dc62cb);
}

.demo-card b {
  display: block;
  width: 100%;
  height: 7px;
  margin: 9px 0;
  border-radius: 5px;
  background: #e7e4ed;
}

.demo-card b:last-child { width: 68%; }

.mock-cursor {
  position: absolute;
  top: 130px;
  left: 57%;
  width: 35px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
  animation: cursor-demo 5s var(--ease) infinite;
}

.mock-cursor path {
  fill: white;
  stroke: #17151d;
  stroke-width: 2;
}

.click-pulse {
  position: absolute;
  top: 139px;
  left: calc(57% + 6px);
  width: 20px;
  height: 20px;
  border: 2px solid #7d5af0;
  border-radius: 50%;
  opacity: 0;
  animation: click-demo 5s ease infinite;
}

@keyframes cursor-demo {
  0%, 15% { transform: translate(-80px, 60px); }
  45%, 70% { transform: translate(58px, -25px); }
  100% { transform: translate(-80px, 60px); }
}

@keyframes click-demo {
  0%, 42%, 62%, 100% { opacity: 0; transform: scale(0.5) translate(58px, -25px); }
  48% { opacity: 1; transform: scale(1.8) translate(32px, -14px); }
}

.mock-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  height: 32px;
  color: #72727b;
  font-size: 8px;
}

.mock-controls .mock-play {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #e9e9ed;
  color: #17171b;
  font-size: 7px;
  font-style: normal;
}

.mock-controls small {
  color: #65656e;
  font-size: 7px;
}

.mock-timeline {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 8px;
  padding: 6px 19px 20px;
}

.track-labels {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 5px;
  color: #777780;
  font-size: 6px;
  font-weight: 800;
}

.tracks {
  position: relative;
}

.video-track {
  display: flex;
  gap: 2px;
  height: 24px;
  padding: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: #26262c;
}

.video-track i {
  flex: 1;
  border-radius: 2px;
  background: #3b3b43;
}

.video-track i:nth-child(3n + 1) { opacity: 0.55; }

.zoom-track {
  position: relative;
  height: 22px;
  margin-top: 5px;
  border-radius: 4px;
  background: rgba(113, 78, 226, 0.1);
}

.zoom-track i {
  position: absolute;
  top: 2px;
  left: var(--x);
  width: var(--w);
  height: 18px;
  border-radius: 4px;
  background: #6747d9;
  color: white;
  font-size: 6px;
  font-style: normal;
  line-height: 18px;
  text-align: center;
}

.playhead {
  position: absolute;
  top: -3px;
  left: 31%;
  width: 1px;
  height: 56px;
  background: white;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.playhead::before {
  position: absolute;
  top: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  content: "";
}

.segments {
  display: flex;
  padding: 2px;
  border-radius: 5px;
  background: #25252b;
}

.segments > * {
  flex: 1;
  padding: 4px;
  border-radius: 4px;
  color: #73737b;
  font-size: 6px;
  font-weight: 700;
  text-align: center;
}

.segments b {
  background: #414149;
  color: white;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.swatches i {
  aspect-ratio: 1.55;
  border-radius: 5px;
}

.mock-inspector label {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 4px;
  color: #a0a0a9;
  font-size: 7px;
}

.mock-inspector label span { color: #62626b; }

.range {
  height: 3px;
  border-radius: 4px;
  background: #33333a;
}

.range i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #8264ef;
}

.bg-aurora { background: linear-gradient(135deg, #6d5dfb, #c05cff, #ff7a8a); }
.bg-sunset { background: linear-gradient(135deg, #ff7b54, #ffb26b, #ffd56f); }
.bg-ocean { background: linear-gradient(135deg, #063970, #077b8a, #5cdb95); }
.bg-electric { background: linear-gradient(135deg, #0800ff, #7a00ff, #ff2bd6); }
.bg-mint { background: linear-gradient(135deg, #0b4f4a, #16a085, #a8ffda); }
.bg-rose { background: linear-gradient(135deg, #5b163b, #c44569, #f8b4c8); }
.bg-midnight { background: linear-gradient(135deg, #050816, #111d46, #263b80); }
.bg-candy { background: linear-gradient(135deg, #5c2a9d, #e445a7, #ffb36b); }
.bg-gold { background: linear-gradient(135deg, #4d2d00, #c78313, #ffe29a); }

.floating-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(20, 19, 27, 0.84);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  color: #d9d9df;
  font-size: 10px;
  font-weight: 600;
  backdrop-filter: blur(16px);
}

.floating-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a78ff;
  box-shadow: 0 0 9px #9a78ff;
}

.pill-one { bottom: -17px; left: 8%; }
.pill-two { top: 14%; right: -28px; }

.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.trust-strip {
  padding: 36px 0;
}

.trust-content {
  color: #6f6f79;
  text-align: center;
}

.trust-content p {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #9e9ea7;
  font-size: 14px;
  font-weight: 600;
}

.audiences i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #484850;
}

.section {
  position: relative;
  padding: 130px 0;
}

.section-intro {
  padding-top: 165px;
}

.section-kicker {
  margin: 0 0 15px;
  color: #9879f6 !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section .narrow > p:last-child {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 84px;
}

.bento {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #0c0c11;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}

.bento::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 20% 0%, rgba(131, 87, 255, 0.09), transparent 45%);
}

.bento-wide {
  grid-column: 1 / -1;
  min-height: 560px;
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 48px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  color: #a98cff;
  font-size: 12px;
  font-weight: 800;
}

.card-copy h3 {
  margin: 22px 0 12px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.card-copy p {
  max-width: 480px;
  margin: 0;
  color: #91919c;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.autozoom-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.zoom-demo {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at center, rgba(121, 79, 239, 0.14), transparent 62%);
}

.zoom-demo-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1.35;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #e9e8ee;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.zoom-nav {
  display: flex;
  gap: 5px;
  height: 13%;
  padding: 12px;
  background: #24232a;
}

.zoom-nav i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5b5a62;
}

.zoom-content {
  position: absolute;
  inset: 13% 0 0;
  padding: 18%;
  transform-origin: 72% 62%;
  animation: auto-zoom 5s var(--ease) infinite;
}

.zoom-content span {
  display: block;
  width: 82%;
  height: 10px;
  margin: 12px 0;
  border-radius: 8px;
  background: #c7c4d0;
}

.zoom-content span:nth-child(2) { width: 58%; }

.zoom-content i {
  display: block;
  width: 90px;
  height: 30px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  background: #7453e8;
}

.animated-cursor {
  position: absolute;
  top: 47%;
  left: 38%;
  z-index: 3;
  width: 38px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  animation: auto-cursor 5s var(--ease) infinite;
}

.animated-cursor path { fill: white; stroke: #15141b; stroke-width: 2; }

.animated-ring {
  position: absolute;
  top: 64%;
  left: 70%;
  width: 25px;
  height: 25px;
  border: 2px solid #805cec;
  border-radius: 50%;
  opacity: 0;
  animation: auto-ring 5s ease infinite;
}

@keyframes auto-cursor {
  0%, 15% { transform: translate(0, 0); }
  42%, 75% { transform: translate(170%, 90%); }
  100% { transform: translate(0, 0); }
}

@keyframes auto-zoom {
  0%, 37%, 82%, 100% { transform: scale(1); }
  50%, 72% { transform: scale(1.55); }
}

@keyframes auto-ring {
  0%, 43%, 66%, 100% { opacity: 0; transform: scale(0.4); }
  49% { opacity: 0.9; transform: scale(2); }
}

.quality-card {
  background: radial-gradient(circle at 50% 70%, rgba(60, 94, 235, 0.18), transparent 45%), #0c0c11;
}

.quality-orbit {
  position: absolute;
  right: -60px;
  bottom: -45px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(125, 99, 255, 0.12);
  border-radius: 50%;
}

.quality-orbit::before,
.quality-orbit::after {
  position: absolute;
  inset: 45px;
  border: 1px solid rgba(125, 99, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.quality-orbit::after { inset: 105px; background: radial-gradient(circle, rgba(121, 88, 244, 0.28), transparent 65%); }

.quality-orbit span,
.quality-orbit strong {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(22, 22, 30, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  color: #a7a7b2;
  font-size: 10px;
}

.quality-orbit span:nth-child(1) { top: 24px; left: 70px; width: 48px; height: 48px; }
.quality-orbit span:nth-child(2) { top: 105px; left: -5px; width: 58px; height: 58px; }
.quality-orbit span:nth-child(3) { top: 205px; left: 40px; width: 68px; height: 68px; }
.quality-orbit strong { top: 115px; left: 130px; width: 118px; height: 118px; color: white; font-size: 34px; }

.backgrounds-card {
  background: radial-gradient(circle at 50% 90%, rgba(213, 81, 190, 0.14), transparent 48%), #0c0c11;
}

.background-fan {
  position: absolute;
  right: 0;
  bottom: -85px;
  left: 0;
  height: 270px;
}

.background-fan i {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 180px;
  height: 230px;
  transform-origin: center 115%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.4);
}

.background-fan i:nth-child(1) { transform: translateX(-50%) rotate(-28deg); }
.background-fan i:nth-child(2) { transform: translateX(-50%) rotate(-14deg); }
.background-fan i:nth-child(3) { transform: translateX(-50%) rotate(0deg); }
.background-fan i:nth-child(4) { transform: translateX(-50%) rotate(14deg); }
.background-fan i:nth-child(5) { transform: translateX(-50%) rotate(28deg); }

.trim-card {
  background: radial-gradient(circle at 50% 75%, rgba(116, 83, 232, 0.13), transparent 45%), #0c0c11;
}

.trim-visual {
  position: absolute;
  right: 38px;
  bottom: 70px;
  left: 38px;
  height: 82px;
  overflow: hidden;
  border-radius: 13px;
  background: #202027;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.trim-track {
  display: flex;
  gap: 4px;
  height: 100%;
  padding: 9px;
}

.trim-track i {
  flex: 1;
  border-radius: 5px;
  background: linear-gradient(#42424a, #36363e);
}

.trim-shade,
.trim-selection,
.trim-handle {
  position: absolute;
  top: 0;
  bottom: 0;
}

.trim-shade { z-index: 2; width: 15%; background: rgba(0, 0, 0, 0.68); }
.trim-shade.left { left: 0; }
.trim-shade.right { right: 0; width: 19%; }
.trim-selection { z-index: 3; left: 15%; right: 19%; border: 2px solid #a387ff; }
.trim-handle { z-index: 4; width: 12px; border: 0; background: #a387ff; }
.trim-handle.left { left: calc(15% - 6px); }
.trim-handle.right { right: calc(19% - 6px); }

.formats-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.format-stage {
  position: relative;
  height: 100%;
  min-height: 540px;
  background: radial-gradient(circle at center, rgba(126, 88, 240, 0.16), transparent 58%);
}

.format-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.45);
}

.format-frame::before {
  position: absolute;
  inset: 8%;
  border-radius: 11px;
  background: rgba(18, 17, 25, 0.78);
  content: "";
}

.format-frame span {
  position: relative;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.format-frame.landscape {
  z-index: 1;
  width: 430px;
  aspect-ratio: 16/9;
  transform: translate(-58%, -50%) rotate(-5deg);
  background: linear-gradient(135deg, #0e4d52, #4ab5a2);
}

.format-frame.square {
  z-index: 2;
  width: 230px;
  aspect-ratio: 1;
  transform: translate(-15%, -42%) rotate(4deg);
  background: linear-gradient(135deg, #6347db, #d85fc6);
}

.format-frame.portrait {
  z-index: 3;
  width: 145px;
  aspect-ratio: 9/16;
  transform: translate(70%, -50%) rotate(8deg);
  background: linear-gradient(135deg, #d65f3a, #f2bd68);
}

.workflow-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012), transparent);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 140px;
}

.workflow-copy h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.workflow-copy > p:last-child {
  max-width: 480px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

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

.workflow-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  min-height: 200px;
  padding: 42px 0;
  border-top: 1px solid var(--border);
}

.workflow-steps li:last-child { border-bottom: 1px solid var(--border); }

.workflow-steps > li > span {
  color: #7654e7;
  font-size: 12px;
  font-weight: 800;
}

.workflow-steps h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.workflow-steps p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.privacy-section {
  padding-top: 50px;
}

.privacy-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(129, 97, 238, 0.2);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(91, 63, 190, 0.13), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.privacy-glow {
  position: absolute;
  top: -160px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(109, 74, 224, 0.22);
  filter: blur(90px);
}

.privacy-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09);
}

.privacy-icon svg {
  width: 40px;
  fill: none;
  stroke: #ad92ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.privacy-card h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.privacy-card > div:nth-child(3) > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.privacy-stats {
  display: flex;
  gap: 34px;
  padding-left: 20px;
}

.privacy-stats div {
  display: flex;
  flex-direction: column;
}

.privacy-stats strong {
  font-size: 30px;
  letter-spacing: -0.05em;
}

.privacy-stats span {
  color: #777782;
  font-size: 10px;
  white-space: nowrap;
}

.pricing-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(109, 73, 225, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 70px;
}

.pricing-card {
  position: relative;
  width: 100%;
  padding: 40px;
  border: 1px solid rgba(166, 135, 255, 0.3);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(111, 78, 222, 0.14), rgba(255, 255, 255, 0.035) 45%, rgba(255, 255, 255, 0.02));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.09);
}

.pricing-monthly {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.pricing-monthly .launch-badge {
  background: #24242c;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-lifetime {
  transform: translateY(-12px);
  box-shadow: 0 38px 100px rgba(70, 42, 158, 0.22), inset 0 1px rgba(255, 255, 255, 0.09);
}

.launch-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 6px 13px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: #7954eb;
  box-shadow: 0 8px 25px rgba(117, 75, 233, 0.35);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-top span {
  color: #898994;
  font-size: 12px;
  font-weight: 600;
}

.pricing-top h3 {
  margin: 2px 0 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.pricing-top img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  filter: drop-shadow(0 10px 24px rgba(108, 71, 225, 0.3));
}

.price {
  display: flex;
  gap: 13px;
  align-items: baseline;
  margin-top: 35px;
}

.price strong {
  font-size: 64px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.07em;
}

.price span {
  color: #777782;
  font-size: 12px;
}

.price-note {
  margin: 19px 0 26px;
  color: #92929d;
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 27px;
  color: #c5c5cd;
  font-size: 13px;
}

.pricing-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(132, 93, 242, 0.17);
  color: #aa8dfc;
  content: "✓";
  font-size: 9px;
  font-weight: 800;
}

.pricing-card > small {
  display: block;
  margin-top: 13px;
  color: #656570;
  font-size: 10px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 140px;
}

.faq-heading h2 {
  font-size: clamp(42px, 5vw, 62px);
}

.faq-heading > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.faq-heading a {
  color: #a384fa;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  cursor: pointer;
  color: #dddde3;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  color: #7f7f89;
  font-size: 25px;
  font-weight: 300;
  transition: transform 220ms ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 630px;
  margin: -10px 40px 30px 0;
  color: #8c8c97;
  font-size: 15px;
}

.download-section { position: relative; overflow: hidden; padding-top: 70px; }
.download-glow { position: absolute; top: 10%; left: 20%; width: 60%; height: 80%; border-radius: 50%; background: rgba(112,70,230,.13); filter: blur(110px); pointer-events: none; }
.download-card { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 510px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 38px; background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); box-shadow: 0 45px 120px rgba(0,0,0,.35),inset 0 1px rgba(255,255,255,.08); }
.download-visual { position: relative; display: grid; place-items: center; overflow: hidden; border-right: 1px solid rgba(255,255,255,.08); background: radial-gradient(circle at 50% 45%,rgba(140,82,255,.28),transparent 34%),linear-gradient(150deg,#17131f,#0e0e13); }
.download-visual::before { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(156,121,255,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(132,91,240,.035),0 0 0 110px rgba(132,91,240,.02); content: ""; }
.download-icon-wrap { position: relative; z-index: 1; display: grid; place-items: center; width: 138px; height: 138px; border: 1px solid rgba(255,255,255,.18); border-radius: 35px; background: rgba(16,14,23,.8); box-shadow: 0 35px 75px rgba(75,35,170,.42),inset 0 1px rgba(255,255,255,.12); transform: translateY(-44px); }
.download-icon-wrap img { width: 94px; height: 94px; }
.download-arrow { position: absolute; z-index: 1; top: 65%; color: #a98cff; font-size: 24px; animation: downloadFloat 2s ease-in-out infinite; }
.download-dock { position: absolute; bottom: 42px; display: flex; gap: 10px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(18px); }
.download-dock span { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(145deg,rgba(255,255,255,.22),rgba(255,255,255,.06)); }
.download-dock span:nth-child(2) { background: linear-gradient(145deg,#7257ee,#bd45dc); }
.download-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 65px; }
.download-content h2 { max-width: 560px; margin: 12px 0 18px; font-size: clamp(40px,4vw,62px); line-height: .98; letter-spacing: -.055em; }
.download-content > p:not(.section-kicker) { max-width: 580px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.download-meta { display: flex; gap: 34px; padding: 25px 0; margin: 27px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.download-meta span { display: flex; flex-direction: column; }
.download-meta strong { font-size: 14px; }
.download-meta small { color: #696973; font-size: 9px; }
.download-button svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.download-note { margin: 11px 0 0 4px; color: #62626c; font-size: 9px; }
@keyframes downloadFloat { 50% { transform: translateY(7px); } }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 160px 0 175px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-orb {
  position: absolute;
  bottom: -400px;
  left: 50%;
  width: 900px;
  height: 700px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 77, 233, 0.28), rgba(202, 76, 204, 0.08) 44%, transparent 70%);
  filter: blur(25px);
}

.final-cta .container {
  position: relative;
}

.final-cta img {
  margin-bottom: 30px;
  border-radius: 23px;
  filter: drop-shadow(0 18px 35px rgba(100, 65, 216, 0.3));
}

.final-cta p {
  max-width: 570px;
  margin: 25px auto 32px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: #060609;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-content > p {
  color: #63636d;
  font-size: 11px;
}

.footer-content > div {
  display: flex;
  gap: 20px;
  justify-self: end;
}

.footer-content > div a {
  color: #85858f;
  font-size: 11px;
}

.footer-content > small {
  grid-column: 1 / -1;
  color: #46464e;
  font-size: 9px;
  text-align: center;
}

.account-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #111116;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.72), inset 0 1px rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.account-dialog::backdrop { background: rgba(3, 3, 6, 0.76); backdrop-filter: blur(18px); }
.dialog-shell { position: relative; max-height: calc(100vh - 40px); padding: 30px; overflow: auto; }
.dialog-close {
  position: absolute; top: 18px; right: 18px; display: grid; place-items: center;
  width: 34px; height: 34px; padding: 0; border: 1px solid var(--border); border-radius: 50%;
  cursor: pointer; background: rgba(255, 255, 255, 0.05); color: #aaaab3;
}
.dialog-close:hover { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.09); color: white; }
.dialog-close:focus-visible { outline: 2px solid #9478ff; outline-offset: 3px; }
.dialog-close span { position: relative; width: 14px; height: 14px; }
.dialog-close span::before, .dialog-close span::after {
  position: absolute; top: 6px; left: 0; width: 14px; height: 1.5px; border-radius: 99px; background: currentColor; content: "";
}
.dialog-close span::before { transform: rotate(45deg); }
.dialog-close span::after { transform: rotate(-45deg); }
.dialog-brand { display: flex; gap: 12px; align-items: center; padding-right: 40px; margin-bottom: 26px; }
.dialog-brand img { border-radius: 13px; }
.dialog-brand div { display: flex; flex-direction: column; }
.dialog-brand strong { font-size: 15px; }
.dialog-brand span { color: var(--muted); font-size: 11px; }
.dialog-shell h2 { margin: 0 0 8px; font-size: 31px; letter-spacing: -0.045em; }
.dialog-shell h2 + p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; margin-bottom: 18px; border-radius: 12px; background: rgba(255, 255, 255, 0.055); }
.auth-tabs button { height: 38px; border: 0; border-radius: 9px; cursor: pointer; background: transparent; color: #868691; font-size: 12px; font-weight: 650; }
.auth-tabs button.active { background: #292930; color: white; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22); }
[data-auth-form], [data-reset-form] { display: grid; gap: 14px; }
[data-auth-form] label, [data-reset-form] label { display: grid; gap: 7px; color: #aaaab4; font-size: 11px; font-weight: 600; }
[data-auth-form] input, [data-reset-form] input {
  width: 100%; height: 48px; padding: 0 14px; border: 1px solid var(--border); border-radius: 12px;
  outline: none; background: rgba(255, 255, 255, 0.045); color: white; font-size: 14px;
}
[data-auth-form] input:focus, [data-reset-form] input:focus { border-color: #8669f7; box-shadow: 0 0 0 3px rgba(122, 88, 244, 0.13); }
.text-button { display: block; margin: 16px auto 0; border: 0; cursor: pointer; background: transparent; color: #9c83f7; font-size: 11px; }
.dialog-message { min-height: 18px; margin: 18px 0 0; color: #94949e; font-size: 11px; text-align: center; }
.dialog-message[data-kind="error"] { color: #ff858b; }
.dialog-message[data-kind="success"] { color: #75d69c; }
.account-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; }
.account-heading h2 { margin: 3px 0 0; font-size: 27px; }
.account-kicker, .subscription-topline > span:first-child { color: #777781; font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.pro-status { display: inline-flex; gap: 7px; align-items: center; padding: 7px 10px; border: 1px solid var(--border); border-radius: 999px; color: #888892; font-size: 10px; }
.pro-status > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: #73737d; }
.pro-status.active { border-color: rgba(82,213,138,.2); background: rgba(82,213,138,.06); color: #8ee5b2; }
.pro-status.active > span:first-child { background: #52d58a; box-shadow: 0 0 0 4px rgba(82,213,138,.1); }
.profile-card { display: flex; gap: 12px; align-items: center; padding: 13px 14px; margin-bottom: 12px; border: 1px solid var(--border); border-radius: 15px; background: rgba(255,255,255,.025); }
.profile-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(145deg,#6d57ed,#b548e2); box-shadow: inset 0 1px rgba(255,255,255,.25); font-size: 15px; font-weight: 750; }
.profile-card > div { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.profile-card strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.profile-card small { color: var(--muted); font-size: 10px; }
.profile-verified { padding: 5px 8px; border-radius: 999px; background: rgba(255,255,255,.055); color: #a1a1aa; font-size: 9px; }
.subscription-card { padding: 19px; border: 1px solid rgba(143,111,255,.3); border-radius: 18px; background: radial-gradient(circle at 90% 0%,rgba(140,74,237,.15),transparent 42%),rgba(255,255,255,.028); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.subscription-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.subscription-state { padding: 5px 8px; border-radius: 999px; background: rgba(255,255,255,.06); color: #aaaab4; font-size: 9px; font-weight: 700; }
.subscription-state.active { background: rgba(82,213,138,.1); color: #79dda2; }
.subscription-summary { display: flex; gap: 20px; align-items: flex-start; justify-content: space-between; }
.subscription-summary h3 { margin: 0 0 4px; font-size: 19px; letter-spacing: -.025em; }
.subscription-summary p { max-width: 355px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.subscription-price { display: flex; flex: none; flex-direction: column; align-items: flex-end; }
.subscription-price strong { font-size: 19px; }
.subscription-price small { color: var(--muted); font-size: 9px; }
.subscription-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }
.subscription-features > span { display: flex; gap: 6px; align-items: center; color: #aaaab4; font-size: 9px; }
.subscription-features i { color: #8b70f7; font-style: normal; }
.account-actions { display: flex; gap: 10px; margin-top: 17px; }
.account-actions .button { min-height: 40px; padding: 0 17px; font-size: 11px; }
.account-actions .button:only-child { min-width: 164px; }
.security-card { display: flex; gap: 11px; align-items: center; padding: 13px 4px; margin-top: 8px; border-bottom: 1px solid rgba(255,255,255,.07); }
.security-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: rgba(255,255,255,.055); color: #9b83f7; }
.security-card > div:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.security-card strong { font-size: 11px; }
.security-card small { color: var(--muted); font-size: 9px; }
.compact-button { min-height: 30px; padding: 0 11px; border: 1px solid var(--border); border-radius: 9px; cursor: pointer; background: rgba(255,255,255,.035); color: #b7b7c0; font-size: 9px; font-weight: 650; }
.compact-button:hover { border-color: rgba(255,255,255,.2); color: white; }
.change-password-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; margin-top: 10px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.025); }
.change-password-form label { display: grid; gap: 6px; color: #94949e; font-size: 9px; }
.change-password-form input { width: 100%; height: 39px; padding: 0 11px; border: 1px solid var(--border); border-radius: 10px; outline: 0; background: rgba(255,255,255,.04); color: white; }
.change-password-form input:focus { border-color: #8669f7; }
.change-password-form > div { display: flex; grid-column: 1/-1; gap: 8px; }
.change-password-form .button { min-height: 36px; padding: 0 14px; font-size: 10px; }
.account-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.account-footer small { color: #585861; font-size: 8px; }
.signout-button { padding: 0; border: 0; cursor: pointer; background: none; color: #8e8e98; font-size: 9px; }
.signout-button:hover { color: #ff858b; }

@media (max-width: 600px) {
  .dialog-shell { padding: 24px 18px; }
  .dialog-brand { margin-bottom: 22px; }
  .account-heading { align-items: flex-start; }
  .pro-status { max-width: 145px; }
  .subscription-summary { flex-direction: column; gap: 12px; }
  .subscription-price { align-items: flex-start; }
  .subscription-features { grid-template-columns: 1fr; }
  .change-password-form { grid-template-columns: 1fr; }
  .account-footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}
.checkout-toast {
  position: fixed; right: 22px; bottom: 22px; z-index: 200; max-width: 390px; padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; background: rgba(26, 26, 31, 0.94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42); color: #d9d9df; font-size: 12px; backdrop-filter: blur(20px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

@media (max-width: 1050px) {
  .nav-links { gap: 20px; }
  .nav-actions .account-button { display: none; }
  .app-layout { grid-template-columns: 125px 1fr; }
  .mock-inspector { display: none; }
  .app-layout { min-height: 500px; }
  .mock-canvas { padding: 28px; }
  .demo-page { height: 225px; }
  .privacy-card { grid-template-columns: 70px 1fr; padding: 55px; }
  .privacy-stats { grid-column: 2; padding-left: 0; }
  .formats-card { grid-template-columns: 0.9fr 1.1fr; }
  .format-frame.landscape { width: 330px; }
  .format-frame.square { width: 190px; }
  .format-frame.portrait { width: 115px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 64px; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links {
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(17, 17, 22, 0.96);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.05); }
  .nav-actions { display: none; }
  .mobile-nav-tools { display: flex; gap: 12px; align-items: center; justify-content: space-between; padding: 8px 12px; }
  .mobile-nav-tools .account-button { display: block; max-width: 180px; }
  .menu-button {
    display: grid;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 11px 9px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
  }
  .menu-button span { display: block; height: 1px; background: white; }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(54px, 14vw, 80px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .button { width: min(100%, 300px); }
  .product-stage { margin-top: 75px; }
  .app-window { border-radius: 12px; }
  .app-layout { grid-template-columns: 1fr; min-height: auto; }
  .mock-sidebar { display: none; }
  .app-titlebar { grid-template-columns: 1fr 1fr; }
  .traffic-lights { display: none; }
  .app-project-name { padding-left: 5px; }
  .app-toolbar-actions span { display: none; }
  .mock-canvas { margin: 14px; padding: 20px; }
  .demo-page { height: 190px; }
  .mock-timeline { padding-inline: 12px; }
  .pill-two { right: 5px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento, .bento-wide { grid-column: auto; min-height: 500px; }
  .autozoom-card, .formats-card { display: block; }
  .zoom-demo { position: absolute; right: 0; bottom: 0; left: 0; min-height: 285px; border: 0; }
  .zoom-demo-screen { width: 62%; }
  .format-stage { position: absolute; right: 0; bottom: 0; left: 0; min-height: 280px; }
  .format-frame.landscape { width: 300px; }
  .format-frame.square { width: 155px; }
  .format-frame.portrait { width: 100px; }
  .workflow-grid, .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 590px; }
  .pricing-lifetime { transform: none; }
  .download-card { grid-template-columns: 1fr; }
  .download-visual { min-height: 360px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .download-content { padding: 48px; }
  .workflow-copy, .faq-heading { position: static; }
  .privacy-card { grid-template-columns: 1fr; gap: 25px; padding: 42px; }
  .privacy-stats { grid-column: auto; }
  .footer-content { grid-template-columns: 1fr auto; }
  .footer-content > p { display: none; }
}

@media (max-width: 560px) {
  .dialog-shell { padding: 26px 20px; }
  .dialog-brand { margin-bottom: 24px; }
  .dialog-shell h2 { font-size: 27px; }
  .account-actions { flex-direction: column; }
  .hero { padding-bottom: 75px; }
  .hero h1 { letter-spacing: -0.065em; }
  .hero-copy { font-size: 17px; }
  .app-titlebar { height: 38px; }
  .app-project-name { font-size: 7px; }
  .app-toolbar-actions .mock-export { font-size: 6px; }
  .mock-canvas { padding: 12px; }
  .demo-page { height: 145px; }
  .demo-page-copy strong { font-size: 17px; }
  .demo-card { width: 90px; height: 105px; padding: 9px; }
  .demo-card i { width: 25px; height: 25px; margin-bottom: 9px; }
  .demo-card b { height: 4px; margin: 5px 0; }
  .mock-cursor { width: 25px; }
  .mock-timeline { grid-template-columns: 38px 1fr; }
  .track-labels { font-size: 5px; }
  .floating-pill { font-size: 8px; }
  .pill-one { left: 3%; }
  .section { padding: 95px 0; }
  .section-intro { padding-top: 115px; }
  .section h2, .final-cta h2 { font-size: 43px; }
  .section .narrow > p:last-child { font-size: 16px; }
  .bento-grid { margin-top: 55px; }
  .bento, .bento-wide { min-height: 470px; border-radius: 22px; }
  .card-copy { padding: 30px; }
  .card-copy h3 { font-size: 29px; }
  .card-copy p { font-size: 14px; }
  .quality-orbit { right: -130px; }
  .background-fan i { width: 140px; height: 195px; }
  .trim-visual { right: 25px; bottom: 55px; left: 25px; }
  .format-frame.landscape { width: 235px; }
  .format-frame.square { width: 130px; }
  .format-frame.portrait { width: 78px; }
  .workflow-steps li { grid-template-columns: 45px 1fr; gap: 12px; }
  .privacy-card { padding: 30px; border-radius: 25px; }
  .privacy-stats { gap: 18px; }
  .privacy-stats strong { font-size: 24px; }
  .pricing-card { padding: 30px 24px; }
  .price strong { font-size: 54px; }
  .download-section { padding-top: 45px; }
  .download-card { border-radius: 26px; }
  .download-visual { min-height: 300px; }
  .download-icon-wrap { width: 112px; height: 112px; transform: translateY(-35px); }
  .download-icon-wrap img { width: 76px; height: 76px; }
  .download-content { padding: 34px 25px; }
  .download-content h2 { font-size: 39px; }
  .download-meta { width: 100%; gap: 18px; justify-content: space-between; }
  .download-meta strong { font-size: 12px; }
  .download-button { width: 100%; }
  .faq-list summary { min-height: 82px; font-size: 15px; }
  .final-cta { padding: 110px 0 125px; }
  .footer-content { grid-template-columns: 1fr; justify-items: center; }
  .footer-content > div { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
