:root {
  color-scheme: dark;
  --bg: #07100f;
  --bg-soft: #0d1817;
  --panel: rgba(17, 31, 30, 0.82);
  --panel-strong: rgba(22, 42, 40, 0.95);
  --text: #eef7f5;
  --muted: #9fb9b4;
  --line: rgba(146, 195, 184, 0.22);
  --accent: #65d0bd;
  --accent-strong: #9fe6d7;
  --gold: #d9b66f;
  --danger: #e56f6f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(101, 208, 189, 0.18), transparent 34rem),
    radial-gradient(circle at 12% 28%, rgba(217, 182, 111, 0.10), transparent 28rem),
    linear-gradient(145deg, #06100f 0%, #0b1716 46%, #111712 100%);
  color: var(--text);
}

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

img {
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.product-site {
  width: min(1220px, calc(100% - 32px));
}

.site-nav {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 15, 0.86);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.site-nav__brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav__links a {
  min-height: 36px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  border-color: var(--line);
  background: rgba(101, 208, 189, 0.10);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
  min-height: 580px;
  padding: 72px 0 54px;
}

.hero--home {
  min-height: 620px;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 900px;
  color: var(--text);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero__lead,
.section p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero__lead {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
}

.button:hover {
  border-color: rgba(159, 230, 215, 0.72);
  background: rgba(101, 208, 189, 0.13);
}

.button--primary {
  border-color: rgba(101, 208, 189, 0.55);
  background: linear-gradient(135deg, #2c8b78, #67cfbd);
  color: #06100f;
}

.product-hero {
  display: block;
  min-height: 680px;
  padding: 78px 0 58px;
}

.product-hero--home {
  min-height: 720px;
}

.product-hero--compact {
  min-height: 520px;
}

.product-hero__copy {
  max-width: 780px;
}

.product-shot__topline,
.product-shot__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.product-dashboard,
.product-shot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.product-dashboard__metric {
  display: grid;
  gap: 8px;
}

.product-dashboard__metric b,
.product-card strong {
  color: var(--accent-strong);
}

.product-dashboard__metric span {
  color: var(--muted);
}

.product-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.product-shot {
  overflow: hidden;
}

.product-shot__topline b {
  color: var(--accent-strong);
}

.product-shot__stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 48%, rgba(101, 208, 189, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.025);
}

.product-shot__stats {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.mission-orbit,
.mission-body,
.mission-rocket {
  position: absolute;
}

.mission-orbit {
  top: 50%;
  left: 52%;
  border: 1px solid rgba(159, 230, 215, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.mission-orbit--one {
  width: 250px;
  height: 140px;
}

.mission-orbit--two {
  width: 390px;
  height: 230px;
}

.mission-body {
  border-radius: 50%;
}

.mission-body--one {
  top: 25%;
  right: 21%;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 34% 30%, #b7fff0, #318cbd 58%, #163352);
}

.mission-body--two {
  right: 15%;
  bottom: 22%;
  width: 30px;
  height: 30px;
  background: var(--gold);
}

.mission-rocket {
  left: 22%;
  bottom: 21%;
  width: 34px;
  height: 92px;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, #eef7f5, #65d0bd 64%, #2c8b78);
  box-shadow: 0 0 34px rgba(101, 208, 189, 0.28);
  transform: rotate(18deg);
}

.mission-rocket::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -30px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 182, 111, 0.92), rgba(217, 182, 111, 0));
}

.product-section {
  display: block;
}

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

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

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

.product-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

a.product-card:hover {
  border-color: rgba(159, 230, 215, 0.62);
  transform: translateY(-2px);
}

.product-card--featured {
  border-color: rgba(101, 208, 189, 0.42);
  background:
    radial-gradient(circle at 80% 12%, rgba(101, 208, 189, 0.14), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
}

.product-card p {
  margin: 0;
}

.product-card strong {
  margin-top: auto;
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 32px;
  align-items: start;
}

.product-proof--reverse > div:first-child {
  order: 2;
}

.product-proof__items {
  display: grid;
  gap: 12px;
}

.product-proof__items div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.product-proof__items b {
  color: var(--accent-strong);
}

.product-proof__items span {
  color: var(--muted);
  line-height: 1.55;
}

.blog-editor-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 22%, rgba(101, 208, 189, 0.20), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.blog-editor-panel span {
  width: max-content;
  padding: 6px 10px;
  border: 1px solid rgba(217, 182, 111, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-editor-panel b {
  color: var(--accent-strong);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.blog-editor-panel p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}

.blog-list {
  display: grid;
  gap: 16px;
}

.blog-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.blog-card:hover {
  border-color: rgba(159, 230, 215, 0.62);
}

.blog-card__meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.blog-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.blog-card__link,
.blog-back-link {
  width: max-content;
  color: var(--accent-strong);
  font-weight: 800;
}

.blog-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-article {
  max-width: 900px;
  padding: 80px 0;
}

.blog-article h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.blog-article__content {
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  line-height: 1.82;
}

.blog-editor-layout {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 0;
}

.blog-editor-heading {
  max-width: 760px;
}

.markdown-editor {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
  box-shadow: var(--shadow);
}

.markdown-editor__title {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.markdown-editor__title input,
.markdown-editor textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(2, 10, 16, 0.78);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.markdown-editor textarea {
  min-height: 520px;
  resize: vertical;
  font-family: "JetBrains Mono", "Cascadia Code", Consolas, monospace;
  font-size: 0.98rem;
  line-height: 1.7;
}

.markdown-editor__tabs,
.markdown-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.markdown-editor__tabs {
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.markdown-editor__tabs button {
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.markdown-editor__tabs button.is-active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.markdown-toolbar {
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(2, 10, 16, 0.42);
}

.markdown-toolbar button {
  min-width: 36px;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.markdown-toolbar button:hover {
  border-color: rgba(159, 230, 215, 0.42);
  background: rgba(101, 208, 189, 0.12);
}

.markdown-preview {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(2, 10, 16, 0.58);
  padding: 24px;
  overflow: auto;
}

.markdown-body {
  color: var(--muted);
  line-height: 1.78;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
  color: var(--text);
  line-height: 1.12;
}

.markdown-body h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.markdown-body h2 {
  margin-top: 1.8em;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.markdown-body h3 {
  margin-top: 1.5em;
  font-size: 1.35rem;
}

.markdown-body a {
  color: var(--accent-strong);
}

.markdown-body blockquote {
  margin: 1.4em 0;
  padding: 0.3em 0 0.3em 1em;
  border-left: 3px solid var(--accent);
  color: var(--text);
}

.markdown-body pre,
.markdown-body code {
  font-family: "JetBrains Mono", "Cascadia Code", Consolas, monospace;
}

.markdown-body pre {
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
}

.markdown-body code {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.12em 0.35em;
}

.markdown-body pre code {
  background: transparent;
  padding: 0;
}

.markdown-body table {
  width: 100%;
  border-collapse: collapse;
}

.markdown-body th,
.markdown-body td {
  border: 1px solid var(--line);
  padding: 10px;
}

.markdown-body .mermaid {
  display: grid;
  place-items: center;
  margin: 1.5em 0;
  overflow: auto;
}

.markdown-body .katex-display {
  overflow-x: auto;
  overflow-y: hidden;
}

.markdown-body > :first-child {
  margin-top: 0;
}

.markdown-body > :last-child {
  margin-bottom: 0;
}

.markdown-body--lead {
  color: var(--muted);
}

.markdown-body--compact {
  color: var(--muted);
  font-size: inherit;
  line-height: 1.65;
}

.markdown-body--compact h1,
.markdown-body--compact h2,
.markdown-body--compact h3 {
  margin: 0.4em 0 0.25em;
  font-size: 1.05rem;
}

.markdown-body--compact ul,
.markdown-body--compact ol {
  padding-left: 1.2em;
}

.product-card__text {
  max-width: 760px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: start;
  min-height: 620px;
  padding: 88px 0 64px;
}

.auth-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.auth-card input,
.auth-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(7, 16, 15, 0.72);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

.auth-card textarea {
  resize: vertical;
}

.auth-card input:focus,
.auth-card textarea:focus {
  border-color: rgba(159, 230, 215, 0.72);
  outline: 0;
}

.form-error,
.form-notice {
  padding: 12px 14px;
  border-radius: 6px;
  line-height: 1.5;
}

.form-error {
  border: 1px solid rgba(229, 111, 111, 0.45);
  background: rgba(229, 111, 111, 0.10);
  color: #ffc9c9;
}

.form-notice {
  border: 1px solid rgba(217, 182, 111, 0.40);
  background: rgba(217, 182, 111, 0.10);
  color: #f3dca4;
}

.hero__visual,
.metric-panel,
.orbital-map,
.pipeline-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero__visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 42px;
}

.hero__visual img {
  width: min(100%, 320px);
  filter: drop-shadow(0 22px 60px rgba(101, 208, 189, 0.18));
}

.metric-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.metric-panel div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-panel strong {
  display: block;
  color: var(--accent-strong);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.metric-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.project-grid,
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

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

.project-card,
.feature-row article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.project-card:hover {
  border-color: rgba(159, 230, 215, 0.62);
  transform: translateY(-2px);
}

.project-card__tag {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card p,
.feature-row p {
  margin: 0;
  font-size: 0.98rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.split-section > div:first-child p:last-child {
  margin-bottom: 0;
}

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

.stack-list div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.stack-list b {
  color: var(--accent-strong);
}

.stack-list span {
  color: var(--muted);
  line-height: 1.55;
}

.orbital-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(159, 230, 215, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--one {
  width: 180px;
  height: 180px;
}

.orbit--two {
  width: 280px;
  height: 280px;
}

.orbit--three {
  width: 380px;
  height: 380px;
}

.planet {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(101, 208, 189, 0.38);
}

.planet--one {
  top: 74px;
  right: 112px;
  width: 58px;
  height: 58px;
  background: #67cfbd;
}

.planet--two {
  right: 72px;
  bottom: 102px;
  width: 32px;
  height: 32px;
  background: var(--gold);
}

.story-scroller {
  scroll-behavior: smooth;
}

.story-panel {
  position: relative;
  min-height: min(760px, calc(100vh - 110px));
  align-content: center;
  animation: story-panel-in 720ms ease both;
}

.story-panel--intro {
  min-height: 620px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.feature-showcase--alt {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.feature-showcase--alt .feature-showcase__copy {
  order: 2;
}

.feature-showcase__copy {
  max-width: 700px;
}

.space-vitrine,
.world-pipeline {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 208, 189, 0.10), transparent 17rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.space-vitrine::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.74) 0 1px, transparent 1.2px);
  background-size: 170px 140px;
  opacity: 0.18;
}

.space-vitrine__sun,
.space-vitrine__orbit,
.space-vitrine__body {
  position: absolute;
}

.space-vitrine__sun {
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff0bd 0%, #d9b66f 56%, rgba(217, 182, 111, 0) 72%);
  box-shadow: 0 0 110px rgba(217, 182, 111, 0.42);
  transform: translate(-50%, -50%);
}

.space-vitrine__orbit {
  inset: 50%;
  border: 1px solid rgba(159, 230, 215, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.space-vitrine__orbit--one {
  width: 260px;
  height: 150px;
}

.space-vitrine__orbit--two {
  width: 420px;
  height: 250px;
}

.space-vitrine__body {
  border-radius: 50%;
  animation: orbit-float 8s ease-in-out infinite;
}

.space-vitrine__body--one {
  top: 31%;
  left: 68%;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 30% 28%, #b7fff0, #318cbd 58%, #163352);
}

.space-vitrine__body--two {
  top: 66%;
  left: 26%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 30% 28%, #ffdba1, #9b6040 60%, #402016);
  animation-delay: -2.6s;
}

.world-pipeline {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.world-pipeline span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 800;
}

.world-pipeline i {
  width: 1px;
  height: 26px;
  margin-left: 22px;
  background: var(--accent);
}

.optics-vitrine {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 48%, rgba(217, 182, 111, 0.20), transparent 13rem),
    radial-gradient(circle at 22% 34%, rgba(101, 208, 189, 0.16), transparent 15rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.optics-vitrine__beam,
.optics-vitrine__lens,
.optics-vitrine__focus {
  position: absolute;
}

.optics-vitrine__beam {
  left: 8%;
  width: 72%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 230, 215, 0), rgba(159, 230, 215, 0.92), rgba(217, 182, 111, 0.70));
  box-shadow: 0 0 18px rgba(101, 208, 189, 0.36);
  transform-origin: 68% 50%;
  animation: beam-shimmer 4.8s ease-in-out infinite;
}

.optics-vitrine__beam--one {
  top: 39%;
  transform: rotate(-9deg);
}

.optics-vitrine__beam--two {
  top: 50%;
}

.optics-vitrine__beam--three {
  top: 61%;
  transform: rotate(9deg);
}

.optics-vitrine__lens {
  top: 50%;
  left: 55%;
  width: 86px;
  height: 220px;
  border: 1px solid rgba(159, 230, 215, 0.48);
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(101, 208, 189, 0.08), rgba(159, 230, 215, 0.24), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 0 34px rgba(159, 230, 215, 0.20), 0 0 48px rgba(101, 208, 189, 0.22);
  transform: translate(-50%, -50%);
}

.optics-vitrine__focus {
  top: 50%;
  right: 12%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffe0a1;
  box-shadow: 0 0 42px rgba(217, 182, 111, 0.86);
  transform: translateY(-50%);
}

@keyframes beam-shimmer {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@keyframes story-panel-in {
  from {
    opacity: 0.45;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -12px, 0);
  }
}

.pipeline-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.pipeline-panel span {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.pipeline-panel i {
  width: 1px;
  height: 22px;
  margin-left: 20px;
  background: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 34px 16px 48px;
  color: rgba(159, 185, 180, 0.72);
  font-size: 0.92rem;
}

.preview-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(125, 211, 252, 0.16), transparent 32rem),
    linear-gradient(180deg, #08111b 0%, #04080d 100%);
}

.preview-nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 17, 27, 0.82);
  backdrop-filter: blur(18px);
}

.preview-nav__brand,
.preview-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-nav__brand {
  min-width: 0;
  color: #d8f7ff;
  font-weight: 800;
}

.preview-nav__brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-nav__links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.preview-nav__links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #9bb0c8;
  font-size: 0.88rem;
}

.preview-nav__links a:hover {
  background: rgba(125, 211, 252, 0.10);
  color: #e6eef8;
}

.preview-stage {
  position: relative;
  min-height: 100vh;
  padding: 92px 16px 16px;
}

.preview-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preview-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(125, 211, 252, 0.55) 0 1px, transparent 1.1px);
  background-position: 0 0, 80px 120px;
  background-size: 220px 180px, 320px 260px;
  opacity: 0.22;
}

.preview-star,
.preview-orbit,
.preview-body,
.preview-trail,
.preview-label {
  position: absolute;
}

.preview-star {
  top: 48%;
  left: 58%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff1c4 0%, #f7b85d 55%, rgba(247, 184, 93, 0) 72%);
  box-shadow: 0 0 110px rgba(255, 209, 122, 0.48);
}

.preview-orbit {
  top: 52%;
  left: 60%;
  border: 1px solid rgba(125, 211, 252, 0.20);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.preview-orbit--one {
  width: 360px;
  height: 150px;
}

.preview-orbit--two {
  width: 570px;
  height: 260px;
}

.preview-orbit--three {
  width: 820px;
  height: 390px;
}

.preview-body {
  border-radius: 50%;
}

.preview-body--kepler {
  top: 41%;
  left: 72%;
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 35% 30%, #a5e3c4, #2f6fa8 55%, #132c44);
  box-shadow: 0 0 28px rgba(125, 211, 252, 0.25);
}

.preview-body--ares {
  top: 67%;
  left: 42%;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 35% 30%, #ffd19a, #9f4934 60%, #321916);
}

.preview-body--cronus {
  top: 31%;
  left: 34%;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle at 35% 30%, #f5dfb6, #b3875c 58%, #4d3928);
  box-shadow: 0 0 34px rgba(217, 182, 111, 0.22);
}

.preview-body--cronus::after {
  content: "";
  position: absolute;
  inset: 23px -34px;
  border: 5px solid rgba(226, 207, 166, 0.62);
  border-left-color: rgba(226, 207, 166, 0.16);
  border-right-color: rgba(226, 207, 166, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.preview-trail {
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.preview-trail--one {
  top: 38%;
  left: 67%;
  width: 150px;
  height: 64px;
  transform: rotate(-19deg);
}

.preview-trail--two {
  top: 62%;
  left: 34%;
  width: 180px;
  height: 82px;
  transform: rotate(-20deg);
}

.preview-label {
  display: grid;
  gap: 1px;
  color: #e6eef8;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.preview-label small {
  color: #9bb0c8;
  font-size: 11px;
  font-weight: 500;
}

.preview-label--sol {
  top: calc(48% + 88px);
  left: calc(58% + 18px);
}

.preview-label--kepler {
  top: calc(41% + 48px);
  left: calc(72% + 18px);
}

.preview-label--cronus {
  top: calc(31% + 76px);
  left: calc(34% + 30px);
}

.preview-hud,
.preview-scale {
  position: relative;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 17, 27, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.preview-hud {
  display: grid;
  gap: 16px;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100vh - 112px);
  padding: 18px;
  overflow: auto;
}

.preview-hud h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.preview-hud p {
  color: #9bb0c8;
  line-height: 1.65;
}

.preview-hud__status,
.preview-readout div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-hud__status strong,
.preview-readout b {
  color: #78f0d7;
}

.preview-controls,
.preview-readout {
  display: grid;
  gap: 8px;
}

.preview-switch {
  position: relative;
  width: 44px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f4f8fc;
}

.preview-switch--on {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(125, 211, 252, 0.35);
}

.preview-switch--on::after {
  transform: translateX(20px);
}

.preview-scale {
  position: fixed;
  top: 92px;
  right: 16px;
  display: grid;
  gap: 10px;
  width: min(300px, calc(100vw - 32px));
  padding: 16px;
}

@media (max-width: 920px) {
  .site-shell {
    width: min(100% - 22px, 720px);
  }

  .site-nav,
  .hero,
  .split-section,
  .product-hero,
  .product-proof,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: static;
    align-items: flex-start;
  }

  .site-nav__links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .project-grid,
  .feature-row,
  .product-grid,
  .product-grid--triad,
  .product-grid--quad,
  .product-dashboard {
    grid-template-columns: 1fr;
  }

  .feature-showcase,
  .feature-showcase--alt,
  .project-grid--focus,
  .project-grid--triad {
    grid-template-columns: 1fr;
  }

  .feature-showcase--alt .feature-showcase__copy {
    order: 0;
  }

  .story-panel {
    min-height: auto;
  }

  .product-hero {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .product-shot__stage,
  .space-vitrine,
  .optics-vitrine,
  .world-pipeline {
    min-height: 340px;
  }

  .product-proof--reverse > div:first-child {
    order: 0;
  }

  .preview-page {
    overflow: auto;
  }

  .preview-stage {
    display: grid;
    gap: 16px;
    padding-top: 158px;
  }

  .preview-nav {
    align-items: flex-start;
  }

  .preview-scale {
    position: relative;
    top: auto;
    right: auto;
  }

  .preview-canvas {
    min-height: 460px;
    position: relative;
    order: 2;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 16px, 520px);
    padding-top: 8px;
  }

  .site-nav {
    padding: 10px;
  }

  .site-nav__links a {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.7rem, 18vw, 4rem);
  }

}

/* Vue application and page-builder additions. */
:root {
  color-scheme: dark;
}

.vue-app {
  min-height: 100vh;
}

.nav-button {
  min-height: 36px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.nav-button:hover {
  border-color: var(--line);
  background: rgba(101, 208, 189, 0.10);
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switch button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button.is-active {
  background: rgba(101, 208, 189, 0.18);
  color: var(--accent-strong);
}

.app-loading {
  padding: 32px 0;
  color: var(--muted);
  font-weight: 700;
}

.page-section {
  min-height: 620px;
}

.page-section__header {
  max-width: 860px;
}

.builder-section {
  position: relative;
}

.product-text-block,
.product-cta {
  max-width: 900px;
  padding: 72px 0;
}

.product-text-block h2,
.product-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.product-text-block p,
.product-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.product-cta {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.product-grid--stack {
  grid-template-columns: 1fr;
}

.product-grid--stack .product-card {
  min-height: auto;
}

.product-template,
.product-template__content {
  width: 100%;
}

.product-template__content > .template-block {
  display: grid;
  gap: 18px;
  width: 100%;
}

.product-hero__asset,
.product-section__asset,
.product-cta__asset,
.product-text-block__asset,
.builder-vector-preview,
.template-asset {
  display: grid;
  justify-items: start;
  margin-bottom: 18px;
}

.vector-asset-block {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  max-width: min(100%, 280px);
  padding: 14px;
  border: 1px solid rgba(101, 208, 189, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 28, 28, 0.72), rgba(7, 18, 18, 0.38));
  box-shadow: 0 22px 44px rgba(4, 10, 13, 0.2);
}

.vector-asset-block svg {
  display: block;
  width: min(100%, 240px);
  height: auto;
}

.vector-asset--hover-lift:hover {
  transform: translateY(-6px);
}

.vector-asset--hover-glow:hover {
  box-shadow: 0 0 0 1px rgba(101, 208, 189, 0.22), 0 0 36px rgba(101, 208, 189, 0.16);
}

.vector-asset--hover-spin-soft:hover {
  transform: rotate(3deg) scale(1.02);
}

.motion-enter-fade-up,
.motion-enter-slide-left,
.motion-enter-stagger .product-card,
.motion-enter-stagger .template-item,
.motion-enter-stagger .template-asset,
.motion-enter-stagger .vector-asset-block,
.motion-enter-stagger .template-copy {
  opacity: 0;
}

.motion-enter-fade-up.is-in-view {
  animation: builderFadeUp 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-enter-slide-left.is-in-view {
  animation: builderSlideLeft 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-enter-stagger.is-in-view .product-card,
.motion-enter-stagger.is-in-view .template-item,
.motion-enter-stagger.is-in-view .template-asset,
.motion-enter-stagger.is-in-view .vector-asset-block,
.motion-enter-stagger.is-in-view .template-copy {
  animation: builderFadeUp 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-enter-stagger.is-in-view .product-card:nth-child(2),
.motion-enter-stagger.is-in-view .template-item:nth-child(2) {
  animation-delay: 80ms;
}

.motion-enter-stagger.is-in-view .product-card:nth-child(3),
.motion-enter-stagger.is-in-view .template-item:nth-child(3) {
  animation-delay: 160ms;
}

.motion-enter-stagger.is-in-view .product-card:nth-child(n + 4),
.motion-enter-stagger.is-in-view .template-item:nth-child(n + 4) {
  animation-delay: 220ms;
}

.motion-exit-fade-away.is-past-view {
  opacity: 0.28;
}

.motion-exit-lift-away.is-past-view {
  opacity: 0.18;
  transform: translateY(-42px) scale(0.98);
}

.motion-exit-shift-right.is-past-view {
  opacity: 0.22;
  transform: translateX(42px);
}

.motion-exit-compress.is-past-view {
  opacity: 0.2;
  transform: scale(0.94);
}

.scroll-effect-pan-x {
  transform: translateX(calc((var(--scroll-progress, 0.5) - 0.5) * 42px));
}

.scroll-effect-pan-y {
  transform: translateY(calc((0.5 - var(--scroll-progress, 0.5)) * 34px));
}

.scroll-effect-parallax .product-hero__copy,
.scroll-effect-parallax .product-text-block,
.scroll-effect-parallax .product-template__content {
  transform: translateY(calc((0.5 - var(--scroll-progress, 0.5)) * 28px));
}

.scroll-effect-cards-track .product-grid,
.scroll-effect-cards-track .template-items {
  transform: translateX(calc((0.5 - var(--scroll-progress, 0.5)) * 56px));
}

.scroll-effect-rotate-soft .template-asset,
.scroll-effect-rotate-soft .vector-asset-block {
  transform: rotate(calc((var(--scroll-progress, 0.5) - 0.5) * 5deg));
}

.scroll-effect-pulse .vector-asset-block,
.scroll-effect-pulse .template-shell {
  box-shadow: 0 0 0 1px rgba(101, 208, 189, calc(0.08 + var(--scroll-focus, 0) * 0.26)), 0 24px 60px rgba(4, 10, 13, 0.28);
}

@keyframes builderFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes builderSlideLeft {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 32px 0 56px;
}

.builder-layout > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 15, 0.72);
}

.builder-layout > div:first-child h1 {
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.95;
}

.builder-layout > div:first-child .hero__lead {
  max-width: 780px;
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.5;
}

.builder-layout > div:first-child .hero__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.builder-panel,
.builder-fieldset,
.builder-block,
.builder-item {
  display: grid;
  gap: 14px;
}

.builder-panel,
.builder-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.builder-fieldset {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
}

.builder-fieldset legend {
  padding: 0 8px;
  color: var(--accent-strong);
  font-weight: 800;
}

.builder-fieldset--grid,
.builder-add-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.builder-block__tools,
.builder-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.builder-block__tools {
  align-items: center;
}

.builder-items {
  display: grid;
  gap: 12px;
}

.builder-item textarea {
  grid-column: 1 / -1;
}

.builder-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.builder-panel input,
.builder-panel textarea,
.builder-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(2, 10, 16, 0.72);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

.builder-panel textarea {
  resize: vertical;
}

.visual-builder__canvas {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 13, 12, 0.42);
}

.builder-preview-block {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(146, 195, 184, 0.20);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.builder-preview-block.is-selected {
  border-color: rgba(101, 208, 189, 0.92);
  box-shadow: 0 0 0 2px rgba(101, 208, 189, 0.16);
}

.builder-preview-block__tools {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.builder-preview-hero,
.builder-preview-section {
  display: grid;
  gap: 12px;
}

.builder-preview-hero h2,
.builder-preview-section h2 {
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.builder-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.builder-preview-grid--stack {
  grid-template-columns: 1fr;
}

.builder-preview-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 15, 0.56);
}

.builder-preview-section--template {
  overflow: hidden;
}

.builder-template-preview .template-shell {
  display: grid;
  gap: 14px;
}

.builder-template-preview .template-asset {
  margin-bottom: 0;
}

.builder-vector-previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.builder-vector-preview__label,
.builder-hint {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.builder-hint {
  color: var(--muted);
  text-transform: none;
}

.vector-asset-preview {
  min-height: 160px;
  padding: 12px;
  border: 1px dashed rgba(101, 208, 189, 0.24);
  border-radius: 14px;
  background: rgba(5, 16, 16, 0.46);
}

.builder-preview-actions {
  margin-bottom: 12px;
}

.builder-keyframes {
  display: grid;
  gap: 12px;
}

.builder-keyframe {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.builder-template-preview .template-items {
  display: grid;
  gap: 10px;
}

.builder-template-preview .template-item {
  padding: 12px;
  border: 1px solid rgba(159, 230, 215, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.inline-edit {
  min-width: 4ch;
  outline: none;
  border-radius: 5px;
}

.inline-edit:hover,
.inline-edit:focus {
  background: rgba(101, 208, 189, 0.10);
  box-shadow: 0 0 0 4px rgba(101, 208, 189, 0.10);
}

.inline-edit--multiline {
  white-space: pre-wrap;
}

.builder-check {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

.builder-check input {
  width: 18px;
  height: 18px;
}

.product-card__meta {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(101, 208, 189, 0.08);
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover {
  border-color: rgba(159, 230, 215, 0.62);
}

@media (prefers-reduced-motion: reduce) {
  .motion-enter-fade-up,
  .motion-enter-slide-left,
  .motion-enter-stagger .product-card,
  .motion-enter-stagger .template-item,
  .motion-enter-stagger .template-asset,
  .motion-enter-stagger .vector-asset-block,
  .motion-enter-stagger .template-copy {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .builder-layout,
  .builder-layout > div:first-child,
  .builder-fieldset--grid,
  .builder-add-row,
  .builder-vector-previews {
    grid-template-columns: 1fr;
  }

  .builder-layout > div:first-child .hero__actions {
    justify-content: flex-start;
  }
}
