@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #f5f7fb;
  --page-deep: #edf1f7;
  --surface: #ffffff;
  --surface-soft: #f0f3f8;
  --surface-strong: #e8edf5;
  --ink: #111827;
  --ink-soft: #3f4b61;
  --muted: #667085;
  --line: #dbe2ec;
  --line-strong: #c6d0df;
  --brand: #1458e6;
  --brand-hover: #0f46bd;
  --brand-soft: #e7efff;
  --brand-ink: #0b3c9d;
  --accent: #72a9ff;
  --success: #0b7b56;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(26, 41, 70, 0.07);
  --shadow-md: 0 22px 60px rgba(26, 41, 70, 0.12);
  --shadow-float: 0 30px 90px rgba(26, 41, 70, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 80px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0b0e14;
  --page-deep: #080a0f;
  --surface: #121722;
  --surface-soft: #171d29;
  --surface-strong: #202838;
  --ink: #f5f7fb;
  --ink-soft: #cbd3df;
  --muted: #9ba7b9;
  --line: #293244;
  --line-strong: #3b465d;
  --brand: #72a9ff;
  --brand-hover: #9bc1ff;
  --brand-soft: #15284a;
  --brand-ink: #b9d4ff;
  --accent: #8eb9ff;
  --success: #54d6a5;
  --danger: #ff8f85;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.32);
  --shadow-float: 0 32px 100px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--page);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--line) 34%, transparent) 1px, transparent 1px) center top / 96px 96px,
    linear-gradient(color-mix(in srgb, var(--line) 30%, transparent) 1px, transparent 1px) center top / 96px 96px,
    radial-gradient(circle at 12% 4%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 26rem),
    var(--page);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

p {
  color: var(--muted);
}

::selection {
  color: #fff;
  background: var(--brand);
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 76%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 700;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  background: color-mix(in srgb, var(--page) 82%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: 174px;
  height: auto;
}

.brand-logo-ink {
  fill: var(--ink);
}

.brand-logo-primary,
.brand-logo-accent {
  fill: var(--brand);
}

html[data-theme="dark"] .brand-logo-primary {
  fill: var(--ink);
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 4px;
}

.nav-link,
.products-menu > summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.products-menu > summary:hover,
.products-menu[open] > summary {
  color: var(--brand-ink);
  background: var(--brand-soft);
}

.products-menu {
  position: relative;
}

.products-menu > summary {
  list-style: none;
}

.products-menu > summary::-webkit-details-marker {
  display: none;
}

.products-menu > summary svg {
  width: 15px;
  transition: transform 180ms ease;
}

.products-menu[open] > summary svg {
  transform: rotate(180deg);
}

.products-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.product-nav-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 8px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
}

.product-nav-item:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.app-token {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--brand-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.app-logo {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  border-radius: 8px;
}

.badge .app-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.panel-caption .app-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.header-actions {
  gap: 6px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  cursor: pointer;
  transition: 180ms ease;
}

.icon-button:hover {
  color: var(--brand-ink);
  background: var(--brand-soft);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

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

.theme-toggle {
  position: relative;
}

.theme-toggle svg {
  position: absolute;
  transition: opacity 180ms ease, transform 220ms ease;
}

.theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(-35deg) scale(0.72);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 106px 20px max(28px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--page) 97%, transparent);
  backdrop-filter: blur(24px);
  overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
  display: block;
}

.mobile-nav {
  width: min(100%, 540px);
  margin-inline: auto;
  display: grid;
  gap: 8px;
}

.mobile-nav .mobile-label {
  margin: 20px 10px 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 750;
  box-shadow: var(--shadow-sm);
}

.mobile-nav a small {
  color: var(--muted);
  font-weight: 600;
}

main {
  min-height: 60svh;
}

.hero {
  padding: clamp(68px, 10vw, 128px) 0 clamp(70px, 9vw, 112px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand-ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.hero h1,
.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 0.99;
}

.hero p,
.page-hero p {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.75;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

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

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand) 25%, transparent);
}

.button-primary:hover {
  background: var(--brand-hover);
}

html[data-theme="dark"] .button-primary {
  color: #081327;
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--brand-ink);
  border-color: color-mix(in srgb, var(--brand) 48%, var(--line));
  box-shadow: var(--shadow-sm);
}

.button-quiet {
  color: var(--brand-ink);
  background: var(--brand-soft);
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.microcopy svg {
  width: 17px;
}

.microcopy a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -6% -8% 12%;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, transparent), transparent 60%);
  filter: blur(4px);
}

.panel-stack {
  position: relative;
  min-height: 520px;
}

.panel-shot {
  border: 1px solid color-mix(in srgb, #ffffff 16%, var(--line));
  border-radius: 22px;
  background: #17191d;
  box-shadow: var(--shadow-float);
  overflow: hidden;
}

.panel-shot img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.panel-shot.primary {
  width: min(100%, 807px);
  margin-left: auto;
}

.panel-shot.secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(72%, 776px);
}

.panel-caption {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.panel-caption.caption-ae {
  top: 26px;
  left: 1%;
}

.panel-caption.caption-pr {
  right: -2%;
  bottom: 50px;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.section-soft {
  background: color-mix(in srgb, var(--surface-soft) 60%, transparent);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section h2,
.page-hero h1,
.section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 800;
}

.section-head p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.product-grid,
.feature-grid,
.steps-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.product-card,
.feature-card,
.step-card,
.content-card,
.release-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.product-card {
  padding: 14px;
}

.product-card-copy {
  padding: 22px 10px 10px;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.product-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

.product-card .button {
  margin-top: 20px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  background: #0c1017;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #101522;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 300ms ease, opacity 300ms ease;
}

.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 8, 20, 0.55));
}

.video-facade:hover img {
  opacity: 0.9;
  transform: scale(1.025);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: #111827;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.video-facade:hover .play-button {
  transform: translate(-50%, -50%) scale(1.07);
  background: #fff;
}

.play-button svg {
  width: 25px;
  transform: translateX(2px);
}

.video-label {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tabs {
  min-width: 0;
}

.tab-list {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

body[data-page="faq"] .tab-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="faq"] .tab-button {
  min-width: 0;
  white-space: normal;
}

.tab-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: 180ms ease;
}

.tab-button:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.tab-button[aria-selected="true"] {
  color: #fff;
  background: var(--brand);
}

html[data-theme="dark"] .tab-button[aria-selected="true"] {
  color: #081327;
}

[data-panel][hidden] {
  display: none !important;
}

.panel-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 18px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.panel-showcase-image {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 20px;
  background: #15181d;
  overflow: hidden;
}

.panel-showcase-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 9px;
}

.panel-showcase-features {
  display: grid;
  align-content: center;
  gap: 8px;
}

.mini-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
}

.mini-feature svg,
.feature-icon,
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-ink);
  background: var(--brand-soft);
}

.mini-feature svg {
  width: 20px;
  height: 20px;
  margin: auto;
}

.mini-feature strong {
  display: block;
  font-size: 0.86rem;
}

.mini-feature small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
}

.split-feature.reverse > :first-child {
  order: 2;
}

.feature-visual {
  min-width: 0;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.feature-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 18px;
  background: #17191d;
}

.preset-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.preset-preview-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.preset-preview-media {
  display: grid;
  place-items: center;
  aspect-ratio: 606 / 341;
  border-radius: 16px;
  background: #0c1017;
  overflow: hidden;
}

.preset-preview-media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.preset-preview-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 20px 10px 10px;
}

.preset-preview-copy .app-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.preset-preview-copy h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.preset-preview-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

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

.feature-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  margin-bottom: auto;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-icon .lucide {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 28px 0 9px;
  font-size: 1.08rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.media-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.media-card-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 14px 14px;
}

.media-card-copy h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.media-card-copy p {
  max-width: 65ch;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.pricing-card {
  position: relative;
  min-width: 0;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: color-mix(in srgb, var(--brand) 52%, var(--line));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand-soft) 74%, transparent), transparent 58%),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-ink);
  background: var(--brand-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-kicker {
  margin-bottom: 16px;
  color: var(--brand-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  max-width: 15ch;
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.pricing-price span {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pricing-price small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.pricing-card p {
  min-height: 4.8em;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.38em;
  left: 2px;
  width: 10px;
  height: 6px;
  border: solid var(--brand-ink);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

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

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

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

.step-card {
  position: relative;
  min-height: 215px;
  padding: 24px;
}

.step-number {
  margin-bottom: 28px;
  font-size: 0.85rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.87rem;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid color-mix(in srgb, var(--brand) 36%, var(--line));
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, var(--brand-soft), transparent 72%),
    var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: 50%;
}

.cta-band h2,
.cta-band h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.cta-band p {
  max-width: 62ch;
  margin-bottom: 0;
}

.cta-band .button {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: clamp(64px, 9vw, 112px) 0 clamp(48px, 7vw, 84px);
}

.page-hero.center {
  text-align: center;
}

.page-hero.center .eyebrow {
  justify-content: center;
}

.page-hero.center p {
  margin-inline: auto;
}

.page-hero.center .actions {
  justify-content: center;
}

.product-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
}

.product-shot {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-float);
}

.product-shot img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 18px;
  background: #17191d;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.badge svg {
  width: 17px;
  height: 17px;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.14fr);
  gap: 18px;
}

.guide-video-block,
.guide-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.guide-video-block {
  padding: 14px;
}

.guide-video-block h3 {
  margin: 20px 8px 8px;
  font-size: 1.25rem;
}

.guide-video-block p {
  margin: 0 8px 10px;
}

.guide-list {
  display: grid;
  align-content: start;
  overflow: hidden;
}

.guide-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.guide-item:last-child {
  border-bottom: 0;
}

.guide-item span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--brand-ink);
  background: var(--brand-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.guide-item strong {
  display: block;
  font-size: 0.84rem;
}

.guide-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: clip;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-question .q-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--brand-ink);
  background: var(--brand-soft);
}

.faq-chevron {
  width: 20px;
  transition: transform 180ms ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px 72px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
  line-height: 1.75;
}

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

.release-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(22px, 5vw, 60px);
  padding: clamp(24px, 4vw, 40px);
}

.release-meta {
  align-self: start;
}

.release-version {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.release-date {
  color: var(--brand-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-body h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.release-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.release-body li {
  margin-top: 7px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.support-card {
  padding: clamp(22px, 4vw, 36px);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 4px;
  scrollbar-width: none;
}

.legal-nav::-webkit-scrollbar {
  display: none;
}

.legal-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.legal-nav a:hover {
  color: var(--brand-ink);
  background: var(--brand-soft);
}

.legal-content {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  margin: 42px 0 14px;
  font-size: 1.45rem;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
}

.legal-content a {
  color: var(--brand-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.not-found {
  min-height: 68svh;
  display: grid;
  align-items: center;
}

.not-found .error-code {
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--brand) 25%, transparent);
  font-size: clamp(6rem, 20vw, 13rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.site-footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--page-deep);
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  font-size: 0.86rem;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  width: fit-content;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-bottom > span a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.designer-link {
  position: relative;
  color: var(--ink-soft);
  font-weight: 800;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.designer-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.designer-link:hover {
  color: var(--brand-ink);
  text-shadow: 0 0 18px color-mix(in srgb, var(--brand) 28%, transparent);
}

.designer-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  color: var(--ink-soft);
}

.social-links a:hover {
  color: var(--brand-ink);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 150;
  width: min(calc(100% - 24px), 720px);
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px);
}

.cookie-banner.visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.78rem;
}

.cookie-banner a {
  color: var(--brand-ink);
  font-weight: 800;
}

.reveal {
  animation: reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay {
  animation-delay: 90ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-grid,
  .product-hero .hero-grid,
  .split-feature,
  .support-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 44px;
  }

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

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

  .panel-stack {
    min-height: 470px;
  }

  .guide-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .guide-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  body {
    background-size: 64px 64px, 64px 64px, auto, auto;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: 58px;
    padding-left: 14px;
    border-radius: 16px;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  .hero-grid,
  .product-hero .hero-grid,
  .split-feature,
  .support-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-visual,
  .product-shot,
  .feature-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero-visual::before {
    inset: 6% 0 -6% 8%;
  }

  .split-feature.reverse > :first-child {
    order: initial;
  }

  .product-grid,
  .panel-showcase,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .pricing-card {
    min-height: 0;
  }

  .pricing-card p {
    min-height: 0;
  }

  .panel-showcase-image {
    min-height: auto;
  }

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

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

  .step-card {
    min-height: 0;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .release-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 148px;
  }

  .header-actions {
    gap: 4px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.75rem);
  }

  .section h2,
  .section-head h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .panel-stack {
    min-height: 390px;
  }

  .panel-shot.primary {
    width: 100%;
  }

  .panel-shot.secondary {
    width: 76%;
  }

  .panel-caption.caption-ae {
    top: 8px;
  }

  .panel-caption.caption-pr {
    right: 0;
    bottom: 28px;
  }

  .product-grid,
  .preset-preview-grid,
  .feature-grid,
  .steps-grid.four,
  .panel-showcase-features,
  .guide-list {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .guide-item:nth-child(odd) {
    border-right: 0;
  }

  .media-card-copy {
    display: block;
  }

  .media-card-copy .badge {
    margin-top: 14px;
  }

  .tab-list {
    width: calc(100vw - 28px);
    margin-left: calc(50% - 50vw + 14px);
  }

  .faq-question {
    grid-template-columns: 36px 1fr 20px;
    gap: 10px;
    padding-inline: 12px;
  }

  body[data-page="faq"] .tab-button {
    min-height: 54px;
    padding-inline: 8px;
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .faq-question .q-mark {
    width: 36px;
    height: 36px;
  }

  .faq-answer {
    padding: 0 16px 20px 58px;
  }

  .legal-nav {
    display: flex;
  }

  .legal-nav a {
    white-space: nowrap;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner .button {
    width: 100%;
  }
}

@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;
  }
}
