@font-face {
  font-family: "Kizo Text";
  src: local("Aptos"), local("Arial");
  font-display: swap;
}

@font-face {
  font-family: "Kizo Display";
  src: local("Aptos Display"), local("Arial");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #0b0d12;
  --bg-soft: #0f131a;
  --surface: #131821;
  --surface-strong: #1a212c;
  --surface-light: #202a36;
  --text: #f5f7fb;
  --muted: #b3bdca;
  --quiet: #7f8b9b;
  --line: rgba(221, 231, 242, 0.13);
  --line-strong: rgba(221, 231, 242, 0.22);
  --accent: #ff625d;
  --accent-light: #ff8c83;
  --accent-deep: #d7474d;
  --blue: #83c8ff;
  --violet: #bba6ff;
  --gold: #f2c36b;
  --green: #81d8ab;
  --cyan: #6edbd7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 767px) {
  :root {
    --shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Kizo Text", Aptos, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(255, 98, 93, 0.35);
  color: var(--text);
}

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

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border: 1px solid var(--accent-light);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--text);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(221, 231, 242, 0.08);
  background: rgba(11, 13, 18, 0.82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 12px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  font-family: "Kizo Display", Aptos, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand strong {
  color: var(--accent-light);
  font-weight: 700;
}

.brand-mark {
  width: 29px;
  height: 29px;
  color: var(--text);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.menu-toggle svg {
  width: 19px;
  height: 19px;
}

html.js .menu-toggle {
  display: inline-flex;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 16px;
}

.site-nav[hidden] {
  display: none;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.nav-cta {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 7px;
}

.nav-link {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-link[aria-current="page"]::before {
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 220ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(255, 98, 93, 0.2);
  color: #1b0b0b;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-light);
  box-shadow: 0 13px 30px rgba(255, 98, 93, 0.3);
}

.button-ghost,
.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(255, 140, 131, 0.62);
  background: rgba(255, 98, 93, 0.08);
  color: var(--accent-light);
}

.button-small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
}

.noscript-note {
  margin: 0;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 98, 93, 0.08);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 11vw, 142px) 0 clamp(72px, 10vw, 130px);
}

.hero-backdrop {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: -20%;
  width: 65vw;
  height: 55vw;
  max-width: 780px;
  max-height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 98, 93, 0.11), rgba(255, 98, 93, 0) 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 58px;
}

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

.eyebrow,
.card-kicker,
.preview-overline,
.preview-nav-label,
.footer-label {
  margin: 0;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-dot,
.status-line b,
.screen-status b,
.preview-toolbar-status b {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 98, 93, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Kizo Display", Aptos, Arial, sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 10vw, 90px);
  font-weight: 700;
  line-height: 0.99;
}

h1 span {
  color: var(--accent-light);
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 24px;
  color: var(--quiet);
  font-size: 12px;
}

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

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-art {
  position: relative;
  min-height: 390px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 16%;
  left: 20%;
  width: 58%;
  height: 56%;
  border-radius: 50%;
  background: rgba(255, 98, 93, 0.18);
  filter: blur(56px);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 140, 131, 0.22);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.hero-orbit-one {
  top: 9%;
  left: 7%;
  width: 90%;
  height: 54%;
}

.hero-orbit-two {
  top: 20%;
  left: 14%;
  width: 77%;
  height: 47%;
  border-color: rgba(131, 200, 255, 0.18);
  transform: rotate(35deg);
}

.hero-screen {
  position: absolute;
  top: 11%;
  left: 5%;
  width: 90%;
  overflow: hidden;
  border: 1px solid rgba(245, 247, 251, 0.18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(32, 42, 54, 0.98), rgba(16, 20, 28, 0.98));
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.02);
  transform: perspective(1000px) rotateY(-7deg) rotateX(3deg) rotateZ(-1deg);
}

.screen-topbar,
.screen-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(245, 247, 251, 0.09);
  color: var(--quiet);
  font-size: 8px;
}

.screen-bottom {
  gap: 10px;
  border-top: 1px solid rgba(245, 247, 251, 0.09);
  border-bottom: 0;
}

.window-dots {
  display: flex;
  gap: 4px;
}

.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--quiet);
}

.window-dots i:first-child {
  background: var(--accent);
}

.screen-title {
  margin-right: auto;
  margin-left: 12px;
  color: var(--muted);
  font-weight: 700;
}

.screen-status,
.preview-toolbar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.screen-status b,
.preview-toolbar-status b {
  width: 5px;
  height: 5px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(129, 216, 171, 0.1);
}

.screen-content {
  display: flex;
  min-height: 248px;
}

.screen-sidebar {
  display: flex;
  width: 13%;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 15px 7px;
  border-right: 1px solid rgba(245, 247, 251, 0.08);
}

.mini-logo,
.preview-brand-mark {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 5px;
  background: var(--accent);
  color: #1b0b0b;
  font-size: 9px;
  font-weight: 900;
}

.mini-line {
  width: 13px;
  height: 5px;
  border-radius: 3px;
  background: rgba(179, 189, 202, 0.22);
}

.mini-line.active {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 98, 93, 0.1);
}

.mini-line.short {
  width: 9px;
}

.screen-main {
  width: 87%;
  padding: 17px;
}

.screen-heading,
.screen-card-footer,
.preview-toolbar,
.screen-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-label {
  color: var(--quiet);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mini-pill {
  padding: 3px 6px;
  border: 1px solid rgba(131, 200, 255, 0.25);
  border-radius: 20px;
  color: var(--blue);
  font-size: 7px;
}

.screen-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(245, 247, 251, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.screen-card-large {
  margin-top: 12px;
  padding: 16px 12px 11px;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 3px;
}

.waveform i {
  display: block;
  width: 4%;
  min-height: 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-deep));
  opacity: 0.85;
}

.waveform i:nth-child(2n) { height: 52%; }
.waveform i:nth-child(3n) { height: 86%; }
.waveform i:nth-child(4n) { height: 35%; }
.waveform i:nth-child(5n) { height: 67%; }

.screen-card-footer {
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
}

.source-time {
  color: var(--quiet);
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 9px;
}

.screen-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 10px;
}

.progress,
.bottom-progress {
  display: block;
  height: 4px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(245, 247, 251, 0.1);
}

.progress i,
.bottom-progress i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: var(--violet);
}

.destination-dots {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}

.destination-dots i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--blue);
}

.destination-dots i:nth-child(2) { background: var(--accent); }
.destination-dots i:nth-child(3) { background: var(--violet); }
.destination-dots i:nth-child(4) { background: var(--green); }

.bottom-progress {
  flex: 1;
  margin: 0;
}

.bottom-progress i {
  width: 82%;
  background: var(--accent);
}

.hero-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(245, 247, 251, 0.17);
  border-radius: 9px;
  background: rgba(19, 24, 33, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-size: 9px;
}

.hero-float strong,
.hero-float small {
  display: block;
}

.hero-float strong {
  color: var(--text);
  font-size: 10px;
}

.hero-float small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 8px;
}

.hero-float-top {
  top: 2%;
  right: -1%;
}

.hero-float-bottom {
  bottom: 6%;
  left: -2%;
}

.float-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: rgba(129, 216, 171, 0.13);
  color: var(--green);
}

.float-icon svg {
  width: 15px;
  height: 15px;
}

.float-number {
  color: var(--accent-light);
  font-family: "Kizo Display", Aptos, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.platform-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.platform-wrap {
  display: grid;
  gap: 24px;
  padding: 25px 0;
}

.platform-intro h2 {
  max-width: 360px;
  margin: 8px 0 0;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.1;
}

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

.platform-list li {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.platform-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.mark-red { color: var(--accent-light); }
.mark-blue { color: var(--blue); }
.mark-violet { color: var(--violet); }
.mark-cyan { color: var(--cyan); }
.mark-lime { color: var(--green); }
.mark-gold { color: var(--gold); }

.section {
  scroll-margin-top: 88px;
  padding: 86px 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2 {
  margin: 11px 0 15px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.02;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.split-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 36px;
}

.split-heading > p {
  max-width: 390px;
  margin: 10px 0 0;
}

.feature-grid {
  display: grid;
  gap: 12px;
}

.feature-card {
  position: relative;
  min-width: 0;
  min-height: 252px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(26, 33, 44, 0.92), rgba(16, 20, 28, 0.92));
  transition: transform 220ms var(--ease), border-color 220ms ease, background-color 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: -36px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(32, 42, 54, 0.96), rgba(19, 24, 33, 0.96));
  transform: translateY(-3px);
}

.card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 9px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-icon-red { color: var(--accent-light); background: rgba(255, 98, 93, 0.09); }
.card-icon-blue { color: var(--blue); background: rgba(131, 200, 255, 0.08); }
.card-icon-violet { color: var(--violet); background: rgba(187, 166, 255, 0.08); }
.card-icon-gold { color: var(--gold); background: rgba(242, 195, 107, 0.08); }
.card-icon-cyan { color: var(--cyan); background: rgba(110, 219, 215, 0.08); }
.card-icon-green { color: var(--green); background: rgba(129, 216, 171, 0.08); }

.feature-card h3,
.price-card h3,
.workflow-list h3 {
  margin: 8px 0 9px;
  font-size: 24px;
  line-height: 1.06;
}

.feature-card > p:last-of-type {
  max-width: 355px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-sample {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(11, 13, 18, 0.4);
  color: var(--muted);
  font-size: 12px;
}

.feature-sample small {
  margin-left: auto;
  color: var(--green);
  font-size: 10px;
}

.sample-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.destination-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
}

.destination-row span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  font-size: 9px;
  font-weight: 800;
}

.destination-row span:nth-child(1) { border-color: var(--accent); }
.destination-row span:nth-child(2) { border-color: var(--blue); }
.destination-row span:nth-child(3) { border-color: var(--violet); }
.destination-row span:nth-child(4) { border-color: var(--cyan); }

.destination-row small {
  margin-left: 5px;
  color: var(--quiet);
  font-size: 10px;
}

.section-workflow {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 510px;
  margin-right: auto;
  margin-left: auto;
}

.workflow-list {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  align-items: start;
  gap: 14px;
  min-width: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--accent-light);
  font-family: "Kizo Display", Aptos, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.workflow-list h3 {
  margin-top: 0;
  font-size: 21px;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-arrow {
  color: var(--quiet);
  font-size: 22px;
  line-height: 1;
}

.section-preview {
  overflow: hidden;
}

.preview-heading {
  margin-bottom: 34px;
}

.product-preview {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #10151d;
  box-shadow: var(--shadow);
}

.preview-sidebar {
  display: none;
}

.preview-main {
  min-width: 0;
}

.preview-toolbar {
  min-height: 73px;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.preview-toolbar strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: -0.025em;
}

.preview-toolbar-status {
  flex-shrink: 0;
  font-size: 10px;
}

.preview-canvas {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(32, 42, 54, 0.46), rgba(16, 21, 29, 0.46));
}

.canvas-video {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border: 1px solid rgba(245, 247, 251, 0.11);
  border-radius: 7px;
  background: linear-gradient(135deg, #253443 0%, #18212c 42%, #472936 100%);
}

.canvas-video::before,
.canvas-video::after {
  position: absolute;
  width: 60%;
  height: 160%;
  border: 1px solid rgba(255, 191, 167, 0.25);
  border-radius: 50%;
  content: "";
  transform: rotate(24deg);
}

.canvas-video::before { top: -37%; left: -15%; }
.canvas-video::after { top: -16%; right: -19%; border-color: rgba(131, 200, 255, 0.25); }

.canvas-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.canvas-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(245, 247, 251, 0.4);
  border-radius: 50%;
  background: rgba(11, 13, 18, 0.45);
  color: var(--text);
  transform: translate(-50%, -50%);
}

.canvas-play svg {
  width: 17px;
  height: 17px;
  margin-left: 2px;
}

.canvas-caption {
  position: absolute;
  bottom: 13px;
  left: 15px;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(11, 13, 18, 0.72);
  color: var(--text);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.canvas-inspector {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.canvas-inspector strong {
  font-size: 15px;
}

.inspector-line {
  display: block;
  width: 92%;
  height: 5px;
  border-radius: 6px;
  background: rgba(179, 189, 202, 0.16);
}

.inspector-line.short {
  width: 65%;
}

.inspector-tags {
  display: flex;
  gap: 5px;
}

.inspector-tags span {
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(131, 200, 255, 0.1);
  color: var(--blue);
  font-size: 9px;
}

.inspector-tags span:last-child {
  background: rgba(255, 98, 93, 0.1);
  color: var(--accent-light);
}

.timeline {
  position: relative;
  min-height: 126px;
  padding: 13px 16px 15px;
  border-top: 1px solid var(--line);
  background: #0d1117;
}

.timeline-ruler {
  display: flex;
  justify-content: space-between;
  padding-left: 39px;
  color: var(--quiet);
  font-size: 8px;
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
}

.track-label {
  width: 30px;
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
}

.track-fill {
  height: 13px;
  border-radius: 3px;
  opacity: 0.8;
}

.track-red { width: 76%; background: rgba(255, 98, 93, 0.6); }
.track-blue { width: 58%; background: rgba(131, 200, 255, 0.55); }
.track-violet { width: 68%; background: rgba(187, 166, 255, 0.55); }

.timeline-cursor {
  position: absolute;
  top: 28px;
  bottom: 14px;
  left: 53%;
  width: 1px;
  background: var(--accent-light);
  box-shadow: 0 0 10px rgba(255, 98, 93, 0.7);
}

.timeline-cursor::before {
  position: absolute;
  top: -5px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  content: "";
}

.section-pricing {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.pricing-grid {
  display: grid;
  gap: 13px;
  max-width: 860px;
  margin: 45px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.price-card-featured {
  border-color: rgba(255, 98, 93, 0.52);
  background: linear-gradient(150deg, rgba(52, 31, 37, 0.82), rgba(19, 24, 33, 0.96) 65%);
  box-shadow: 0 18px 60px rgba(255, 98, 93, 0.08);
}

.price-badge {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 10px;
  border-radius: 0 0 6px 6px;
  background: var(--accent);
  color: #1b0b0b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.price-card h3 {
  margin-top: 10px;
  font-size: 32px;
}

.price-description {
  max-width: 315px;
  min-height: 47px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 29px 0 22px;
  color: var(--accent-light);
  font-family: "Kizo Display", Aptos, Arial, sans-serif;
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price small {
  color: var(--quiet);
  font-family: "Kizo Text", Aptos, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  min-height: 112px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.check-list svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--green);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.license-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 860px;
  margin: 16px auto 0;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 13px;
}

.license-note > svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--green);
}

.license-note > span {
  flex: 1 1 240px;
}

.license-note strong {
  color: var(--text);
}

.license-note a {
  min-height: 44px;
  align-content: center;
  color: var(--accent-light);
  font-weight: 700;
}

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

.faq-layout {
  display: grid;
  gap: 42px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.summary-icon {
  position: relative;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 220ms var(--ease), border-color 180ms ease;
}

.summary-icon::before,
.summary-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--muted);
  content: "";
  transform: translate(-50%, -50%);
}

.summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list summary:hover .summary-icon,
.faq-list summary:focus-visible .summary-icon {
  border-color: var(--accent-light);
}

.faq-list details[open] .summary-icon {
  border-color: var(--accent-light);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 660px;
  margin: -2px 45px 21px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  padding-top: 30px;
  padding-bottom: 90px;
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 8vw, 86px) clamp(24px, 7vw, 84px);
  border: 1px solid rgba(255, 140, 131, 0.35);
  border-radius: 15px;
  background: linear-gradient(130deg, #2b1b23 0%, #191923 53%, #17202b 100%);
  text-align: center;
}

.cta-panel .eyebrow {
  justify-content: center;
}

.cta-panel h2 {
  max-width: 700px;
  margin: 14px auto 15px;
  font-size: clamp(35px, 7vw, 70px);
  line-height: 1;
}

.cta-panel > p:not(.eyebrow) {
  max-width: 490px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 16px;
}

.cta-actions {
  justify-content: center;
}

.cta-orb {
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 140, 131, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb-left {
  top: -180px;
  left: -80px;
}

.cta-orb-right {
  right: -110px;
  bottom: -200px;
  border-color: rgba(131, 200, 255, 0.15);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090b0f;
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding: 48px 0 38px;
}

.footer-brand p,
.footer-status p {
  max-width: 245px;
  margin: 12px 0 0;
  color: var(--quiet);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-links a {
  display: flex;
  min-height: 36px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-light);
}

.footer-label {
  margin-bottom: 8px;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.status-line b {
  width: 6px;
  height: 6px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(129, 216, 171, 0.1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 11px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 600px) {
  .container {
    width: min(100% - 48px, 1180px);
  }

  .platform-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

  .workflow-list li {
    grid-template-columns: 60px minmax(150px, 1fr) 30px;
  }

  .preview-canvas {
    grid-template-columns: minmax(0, 1.7fr) minmax(150px, 0.65fr);
    align-items: stretch;
  }

  .canvas-inspector {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 820px) {
  .container {
    width: min(100% - 64px, 1180px);
  }

  .nav-wrap {
    flex-wrap: nowrap;
    gap: 28px;
  }

  .menu-toggle,
  html.js .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav[hidden] {
    display: flex;
    width: auto;
    flex-basis: auto;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin-left: auto;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .nav-link {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .nav-cta {
    white-space: nowrap;
  }

  .platform-wrap {
    grid-template-columns: minmax(240px, 0.9fr) 1.6fr;
    align-items: center;
    gap: 40px;
    padding: 28px 0;
  }

  .platform-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-heading {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
  }

  .split-heading > p {
    justify-self: end;
  }

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

  .faq-layout {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 80px;
  }

  .faq-layout .section-heading {
    position: sticky;
    top: 120px;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 36px;
  }

  .hero-art {
    min-height: 510px;
  }

  .hero-screen {
    top: 12%;
    left: 2%;
    width: 96%;
  }

  .hero-float-top {
    top: 5%;
    right: -5%;
  }

  .hero-float-bottom {
    bottom: 8%;
    left: -7%;
  }

  .section {
    padding: 120px 0;
  }

  .section-features {
    padding-top: 130px;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

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

  .product-preview {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .preview-sidebar {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    padding: 20px 15px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
  }

  .preview-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 23px;
    font-size: 11px;
    font-weight: 700;
  }

  .preview-brand-mark {
    width: 21px;
    height: 21px;
    border-radius: 6px;
  }

  .preview-nav-label {
    margin: 0 8px 4px;
    font-size: 9px;
  }

  .preview-nav-item {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 6px;
    color: var(--quiet);
    font-size: 11px;
  }

  .preview-nav-item i {
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    border-radius: 2px;
  }

  .preview-nav-item.active {
    background: rgba(255, 98, 93, 0.1);
    color: var(--accent-light);
  }

  .preview-nav-item.active i {
    background: currentColor;
  }

  .preview-sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
  }

  .preview-main {
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    gap: 18px;
  }

  .hero-art {
    min-height: 570px;
  }

  .hero-screen {
    top: 10%;
  }

  .screen-content {
    min-height: 295px;
  }

  .screen-main {
    padding: 22px;
  }

  .screen-card-large {
    padding: 20px 16px 14px;
  }

  .waveform {
    height: 106px;
  }

  .screen-card-footer {
    font-size: 10px;
  }

  .hero-float-top {
    right: -2%;
  }

  .hero-float-bottom {
    left: -3%;
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-art {
    min-height: 350px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
