:root {
  --bg-0: #05030a;
  --bg-1: #0a0714;
  --bg-2: #120d23;
  --surface: rgba(20, 15, 34, 0.72);
  --surface-strong: rgba(26, 19, 46, 0.88);
  --border: rgba(173, 120, 255, 0.22);
  --border-strong: rgba(229, 98, 255, 0.45);
  --text-primary: #ffffff;
  --text-secondary: #b7aed1;
  --text-muted: #8f86aa;
  --purple: #9d4dff;
  --purple-soft: #c573ff;
  --pink: #ff5ed6;
  --cyan-soft: #66d9ff;
  --success: #37d996;
  --danger: #ff6d91;
  --warning: #ffbf69;
  --shadow-glow: 0 24px 80px rgba(135, 63, 255, 0.22);
  --shadow-card: 0 22px 40px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-primary);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(157, 77, 255, 0.24), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 94, 214, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(102, 217, 255, 0.1), transparent 28%),
    linear-gradient(135deg, var(--bg-0), var(--bg-1) 40%, var(--bg-2));
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 85%);
  opacity: 0.35;
}

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

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

h1,
h2,
h3,
p,
a,
button,
label,
span,
div {
  overflow-wrap: anywhere;
}

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

::selection {
  background: rgba(202, 106, 255, 0.32);
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.7), rgba(108, 99, 255, 0.5));
  border-radius: 999px;
}

::-webkit-scrollbar-track {
  background: rgba(8, 12, 18, 0.82);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.content-wrap {
  width: min(1120px, calc(100% - 1rem));
  margin: 0 auto;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(26, 19, 46, 0.9), rgba(12, 10, 24, 0.78));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(24px);
  border-radius: 24px;
}

.glass-panel-soft {
  background: rgba(18, 13, 35, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 18px;
}

.gradient-stroke {
  position: relative;
}

.gradient-stroke::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.65), rgba(255, 94, 214, 0.4), rgba(102, 217, 255, 0.28));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(145, 90, 255, 0.12);
  border: 1px solid rgba(195, 115, 255, 0.2);
  color: #f2d8ff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--purple-soft));
  box-shadow: 0 0 16px rgba(255, 94, 214, 0.8);
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 1rem 0 0.85rem;
}

.hero-copy,
.section-copy,
.muted-copy {
  color: var(--text-secondary);
  line-height: 1.75;
}

.hero-copy {
  font-size: 1rem;
  max-width: 44rem;
}

.neon-button,
.ghost-button,
.soft-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
  max-width: 100%;
}

.neon-button {
  color: white;
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.96), rgba(255, 94, 214, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(164, 73, 255, 0.3);
}

.ghost-button {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.soft-button {
  color: #f8f4ff;
  background: rgba(126, 81, 255, 0.14);
  border: 1px solid rgba(195, 115, 255, 0.3);
}

.neon-button:hover,
.ghost-button:hover,
.soft-button:hover,
.nav-link:hover,
.tab-pill:hover,
.model-option:hover,
.upload-card-remove:hover,
.asset-action:hover {
  transform: translateY(-2px);
}

.neon-button:hover {
  box-shadow: 0 24px 44px rgba(164, 73, 255, 0.42);
}

.ghost-button:hover,
.soft-button:hover {
  border-color: rgba(255, 94, 214, 0.36);
  box-shadow: 0 16px 32px rgba(157, 77, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.8rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(3, 3, 7, 0.85), rgba(3, 3, 7, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-icon {
  width: 20rem;
  height: 5.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}


.brand-title {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  min-width: 0;
}

.nav-link {
  position: relative;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  color: var(--text-secondary);
  transition: color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.nav-link-active {
  color: white;
  background: rgba(148, 87, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(176, 115, 255, 0.25), 0 0 26px rgba(194, 96, 255, 0.18);
}

.nav-link:hover {
  color: white;
  background: rgba(255, 94, 214, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 94, 214, 0.14), 0 0 20px rgba(205, 102, 255, 0.14);
}

.auth-slot {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.user-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.user-badge {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(148, 236, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(24, 36, 58, 0.98), rgba(10, 18, 32, 0.98));
  color: #f5fbff;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(113, 227, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(90, 203, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.34);
  flex: 0 0 auto;
}

.icon-only-button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  flex: 0 0 auto;
}

.hero-orb {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.44;
}

.hero-orb-left {
  top: 2rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(157, 77, 255, 0.54), transparent 70%);
}

.hero-orb-right {
  top: 6rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(255, 94, 214, 0.4), transparent 70%);
}

.metrics-grid,
.feature-grid,
.model-card-grid,
.asset-grid,
.page-card-grid,
.upload-grid {
  display: grid;
  gap: 0.85rem;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.model-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.asset-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.page-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.upload-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-card,
.feature-card,
.model-card,
.info-card,
.asset-card,
.empty-state {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
}

.metric-card h3,
.feature-card h3,
.model-card h3,
.asset-card h3,
.info-card h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: 1.12rem;
}

.metric-value {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.micro-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d9caff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
}

.icon-badge,
.model-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: white;
  font-weight: 800;
}

.icon-badge,
.model-icon {
  width: 3.35rem;
  height: 3.35rem;
}

.mini-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  font-size: 0.78rem;
}

.icon-spark {
  background: linear-gradient(135deg, rgba(255, 96, 189, 0.96), rgba(153, 82, 255, 0.96));
}

.icon-bolt {
  background: linear-gradient(135deg, rgba(196, 86, 255, 0.96), rgba(255, 144, 79, 0.96));
}

.icon-wave {
  background: linear-gradient(135deg, rgba(102, 217, 255, 0.96), rgba(150, 92, 255, 0.96));
}

.icon-orbit {
  background: linear-gradient(135deg, rgba(255, 94, 214, 0.96), rgba(255, 118, 118, 0.96));
}

.model-logo-shell {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(17, 11, 30, 0.98), rgba(8, 6, 18, 0.98));
  border: 1px solid rgba(196, 118, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.32);
}

.model-logo-shell-hero {
  width: 100%;
  height: 13.5rem;
  border-radius: 24px;
  padding: 1rem;
  background:
    radial-gradient(circle at top, rgba(186, 99, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(13, 10, 25, 1), rgba(6, 5, 12, 1));
  border-color: rgba(223, 118, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(157, 77, 255, 0.06);
}

.model-logo-shell-compact {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  border-color: rgba(223, 118, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.24);
}

.model-logo-glow {
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(182, 95, 255, 0.28), transparent 72%);
  filter: blur(18px);
  opacity: 0.9;
}

.model-logo-image {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: saturate(1.08) drop-shadow(0 8px 22px rgba(163, 93, 255, 0.18));
}

.model-logo-image-hero {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.1) drop-shadow(0 18px 38px rgba(130, 82, 255, 0.24));
}

.model-logo-image-compact {
  width: 84%;
  height: 84%;
  filter: saturate(1.05) drop-shadow(0 6px 14px rgba(130, 82, 255, 0.16));
}

.model-card-premium {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.model-card-visual {
  position: relative;
}

.card-shine::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 50%;
  height: 180%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(22deg);
  opacity: 0;
  transition: opacity 180ms ease;
}

.card-shine:hover::after {
  opacity: 1;
}

.tab-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tab-pill {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  transition: all 180ms ease;
}

.tab-pill-active {
  color: white;
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.24), rgba(255, 94, 214, 0.16));
  border-color: rgba(255, 94, 214, 0.36);
  box-shadow: 0 0 26px rgba(200, 89, 255, 0.18);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.field-label {
  font-size: 0.9rem;
  color: #efe5ff;
  font-weight: 700;
}

.field-hint {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.input-shell,
.textarea-shell,
.select-shell,
.upload-zone,
.modal-input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  min-width: 0;
}

.textarea-shell {
  min-height: 180px;
  resize: vertical;
}

.select-shell {
  appearance: none;
  background:
    linear-gradient(180deg, rgba(34, 24, 58, 0.96), rgba(18, 13, 35, 0.96));
  background-image:
    linear-gradient(45deg, transparent 50%, #f5eaff 50%),
    linear-gradient(135deg, #f5eaff 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) calc(50% - 0.14rem),
    calc(100% - 0.78rem) calc(50% - 0.14rem);
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.select-shell option {
  color: #f8f3ff;
  background: #171126;
}

.select-shell option:disabled {
  color: #8f86aa;
  background: #110d1e;
}

.input-shell:focus,
.textarea-shell:focus,
.select-shell:focus,
.modal-input:focus {
  border-color: rgba(208, 111, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(171, 84, 255, 0.14);
}

.custom-dropdown {
  position: relative;
}

.dropdown-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.72rem 0.82rem;
  border-radius: 18px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(29, 20, 49, 0.96), rgba(16, 12, 29, 0.96));
  border: 1px solid rgba(206, 122, 255, 0.16);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dropdown-button-content {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.dropdown-button:hover,
.dropdown-button:focus-visible {
  border-color: rgba(229, 98, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(83, 34, 139, 0.24);
}

.dropdown-current {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1 1 auto;
}

.dropdown-current-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.dropdown-current-title {
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fffafc;
}

.dropdown-current-note {
  color: #a99cc8;
  font-size: 0.77rem;
  line-height: 1.35;
}

.dropdown-caret {
  color: #ead8ff;
  font-size: 0.9rem;
  flex: 0 0 auto;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  padding: 0.45rem;
  border-radius: 18px;
  background: rgba(11, 8, 21, 0.98);
  border: 1px solid rgba(189, 117, 255, 0.18);
  box-shadow: var(--shadow-glow);
  display: none;
  z-index: 25;
}

.dropdown-menu.is-open {
  display: block;
}

.model-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 14px;
  color: white;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease;
  min-width: 0;
  border: 1px solid transparent;
}

.model-option:hover,
.model-option.is-active {
  background: rgba(157, 77, 255, 0.11);
  border-color: rgba(223, 118, 255, 0.14);
}

.model-option-left {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  flex: 1 1 auto;
}

.model-option-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.model-option-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fffafc;
}

.model-option-note {
  display: block;
  color: #a99cc8;
  font-size: 0.75rem;
  line-height: 1.35;
}

.model-option-pick {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #eddfff;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.range-shell {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.range-line {
  width: 100%;
  accent-color: #c15dff;
}

.range-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.setting-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
}

.setting-chip {
  width: 100%;
  min-height: 4.25rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.setting-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.setting-chip-active {
  border-color: rgba(0, 212, 255, 0.34);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.12), rgba(108, 99, 255, 0.08));
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.setting-chip-title {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  color: #f8fbff;
}

.setting-chip-note {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.58);
}

.workflow-select-shell {
  min-height: 3.5rem;
  padding: 0.9rem 2.9rem 0.9rem 1rem;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.workflow-select-wrap {
  position: relative;
}

.workflow-lock-banner {
  margin-top: 0.95rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 105, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 191, 105, 0.08), rgba(255, 255, 255, 0.03));
}

.workflow-select-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.92rem;
  pointer-events: none;
  line-height: 1;
}

.credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(78, 255, 175, 0.08);
  border: 1px solid rgba(55, 217, 150, 0.24);
  color: #d9fff0;
  font-weight: 700;
}

.workflow-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
}

.workflow-top-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.workflow-top-tag {
  padding: 0.42rem 0.78rem;
  font-size: 0.72rem;
}

.workflow-top-text {
  margin: 0;
  color: #d3c9ea;
  font-size: 0.9rem;
  line-height: 1.45;
}

.workflow-credit-pill {
  padding: 0.5rem 0.72rem;
  font-size: 0.88rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.support-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: #e9ddff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.95rem;
  cursor: pointer;
}

.upload-zone input {
  display: none;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.upload-card {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.upload-card-meta {
  padding: 0.7rem;
}

.upload-card-title {
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upload-card-remove {
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 109, 145, 0.12);
  color: #ffdbe6;
  border: 1px solid rgba(255, 109, 145, 0.2);
}

.generation-box {
  min-height: 100%;
  padding: 1.15rem;
}

.progress-shell {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1.2rem;
}

.progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: #f7ebff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.progress-debug-button {
  margin-top: 0.2rem;
}

.spinner-ring {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--pink);
  border-right-color: var(--purple);
  animation: spin 1s linear infinite;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-submitting,
.status-pending,
.status-in-progress {
  background: rgba(255, 191, 105, 0.12);
  color: #ffdba8;
  border: 1px solid rgba(255, 191, 105, 0.18);
}

.status-completed {
  background: rgba(55, 217, 150, 0.12);
  color: #d8fff0;
  border: 1px solid rgba(55, 217, 150, 0.18);
}

.status-failed,
.status-cancelled,
.status-expired {
  background: rgba(255, 109, 145, 0.12);
  color: #ffdbe6;
  border: 1px solid rgba(255, 109, 145, 0.18);
}

.result-video-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-card video {
  width: 100%;
  height: auto;
  display: block;
  background: #09070f;
  border-radius: 16px;
}

.asset-live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.1);
  color: #aef4ff;
  border: 1px solid rgba(0, 212, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-card-pending {
  position: relative;
  overflow: hidden;
}

.asset-card-pending::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 22%, rgba(0, 212, 255, 0.08) 38%, rgba(125, 234, 255, 0.18) 50%, rgba(108, 99, 255, 0.08) 62%, transparent 78%);
  transform: translateX(-55%);
  animation: asset-wave-sweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.asset-card-pending > * {
  position: relative;
  z-index: 1;
}

.asset-progress-hero {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 212, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(108, 99, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(10, 16, 25, 0.98), rgba(7, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-progress-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
}

.asset-progress-orb-one {
  width: 7rem;
  height: 7rem;
  top: -1rem;
  left: -1rem;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.26), transparent 68%);
}

.asset-progress-orb-two {
  width: 8rem;
  height: 8rem;
  right: -1.5rem;
  bottom: -1.5rem;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.22), transparent 68%);
}

.asset-progress-wave-line {
  position: absolute;
  left: -12%;
  right: -12%;
  height: 4.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.04), rgba(130, 238, 255, 0.18), rgba(108, 99, 255, 0.08));
  filter: blur(10px);
  animation: asset-wave-float 5s ease-in-out infinite;
}

.asset-progress-wave-line-one {
  top: 26%;
}

.asset-progress-wave-line-two {
  top: 56%;
  animation-delay: 1.3s;
}

.asset-progress-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 30rem;
}

.asset-progress-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 247, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-progress-copy h4 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 0.98;
  color: #f8fbff;
}

.asset-progress-copy p {
  margin: 0;
  color: rgba(239, 247, 255, 0.72);
  line-height: 1.55;
}

.asset-progress-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 26rem;
}

.asset-progress-stat {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.asset-progress-stat-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(239, 247, 255, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-progress-stat strong {
  color: #f8fbff;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.asset-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.asset-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.asset-action {
  flex: 1 1 140px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease;
  max-width: 100%;
}

.asset-action-primary {
  color: white;
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.95), rgba(255, 94, 214, 0.9));
}

.asset-action-secondary {
  color: #efe7ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.detail-tile {
  padding: 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-tile-strong {
  background: linear-gradient(180deg, rgba(48, 31, 84, 0.88), rgba(22, 16, 40, 0.92));
  border-color: rgba(229, 98, 255, 0.18);
}

.run-clock {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.json-box {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f8f3ff;
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 320px;
  overflow: auto;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 2, 10, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 60;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-panel {
  width: min(560px, 100%);
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 14, 36, 0.98), rgba(8, 7, 16, 0.96));
  border: 1px solid rgba(196, 111, 255, 0.22);
  box-shadow: var(--shadow-glow);
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

.modal-panel-lg {
  width: min(860px, 100%);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-debug-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0;
}

.service-debug-tab {
  padding: 8px 18px;
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}

.service-debug-tab.is-active {
  color: #00d4ff;
  border-bottom-color: #00d4ff;
}

.service-debug-tab:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.75);
}

.footer-shell {
  padding: 0.8rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-link-list,
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-link,
.social-link {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover,
.social-link:hover {
  color: white;
  border-color: rgba(255, 94, 214, 0.28);
  box-shadow: 0 0 24px rgba(181, 90, 255, 0.12);
}

.empty-state {
  text-align: center;
  padding: 2rem 1.2rem;
}

.empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.18), rgba(255, 94, 214, 0.12));
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: shimmer 1.5s infinite;
}

.toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 80;
}

.toast {
  min-width: 280px;
  max-width: 380px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  color: white;
  background: rgba(10, 8, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.toast-success {
  border-color: rgba(55, 217, 150, 0.3);
}

.toast-error {
  border-color: rgba(255, 109, 145, 0.3);
}

.toast-info {
  border-color: rgba(157, 77, 255, 0.3);
}

body[data-page="workflow"] {
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 212, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(108, 99, 255, 0.12), transparent 24%),
    radial-gradient(circle at 65% 70%, rgba(0, 212, 255, 0.05), transparent 28%),
    linear-gradient(180deg, #090a0f, #090b11 46%, #08090d 100%);
  color: #f6f7fb;
  font-family: "DM Sans", sans-serif;
}

body[data-page="workflow"]::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.03) 0.8px, transparent 0.8px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  mask-image: none;
  opacity: 0.08;
}

body[data-page="workflow"] .content-wrap {
  width: min(1180px, calc(100% - 2rem));
}

body[data-page="workflow"] .site-header:not(.landing-site-header) {
  padding: 0.9rem 0;
  background: rgba(8, 10, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}


body[data-page="workflow"] .brand-title {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
  color: #f8fbff;
}

body[data-page="workflow"] .brand-subtitle {
  color: rgba(255, 255, 255, 0.46);
}

body[data-page="workflow"] .nav-link {
  color: rgba(246, 247, 251, 0.72);
  background: transparent;
}

body[data-page="workflow"] .nav-link-active,
body[data-page="workflow"] .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body[data-page="workflow"] .glass-panel,
body[data-page="workflow"] .glass-panel-soft {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="workflow"] .gradient-stroke::before {
  display: none;
}

body[data-page="workflow"] .neon-button {
  color: #081015;
  background: linear-gradient(135deg, #00d4ff, #8ff1ff);
  box-shadow: 0 16px 42px rgba(0, 212, 255, 0.18);
}

body[data-page="workflow"] .ghost-button,
body[data-page="workflow"] .soft-button {
  color: #edf3ff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.workflow-page-shell {
  padding: 2.3rem 0 2rem;
}

.workflow-page-stack {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.workflow-hero-panel,
.workflow-form-shell,
.workflow-output-shell {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 21, 30, 0.94), rgba(10, 13, 20, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
}

.workflow-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.2rem;
  padding: 1.1rem 1.25rem;
  align-items: end;
}

.workflow-hero-panel-compact {
  display: block;
  padding: 0.9rem 1.1rem;
}

.workflow-hero-line {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
  color: rgba(248, 251, 255, 0.9);
}

.workflow-hero-title,
.workflow-form-intro h2,
.workflow-output-intro h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.05em;
  color: #f8fbff;
}

.workflow-hero-title {
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 0.96;
  margin: 0.55rem 0 0.45rem;
  max-width: 10ch;
}

.workflow-hero-text,
.workflow-form-intro p,
.workflow-block-head p,
.workflow-output-intro p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
  margin: 0;
}

.workflow-hero-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.workflow-credit-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.18);
  color: #d9faff;
  padding: 0.5rem 0.72rem;
}

.workflow-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.25rem;
  align-items: start;
}

.workflow-form-shell {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.workflow-form-intro,
.workflow-output-intro {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.workflow-form-kicker {
  color: rgba(0, 212, 255, 0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.workflow-form-intro h2,
.workflow-output-intro h2 {
  font-size: 1.9rem;
  line-height: 1;
  margin: 0;
}

.workflow-form-block {
  padding: 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.workflow-upload-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workflow-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.workflow-block-title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  color: #f8fbff;
  letter-spacing: -0.04em;
}

.workflow-support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

body[data-page="workflow"] .field-label {
  color: #f0f6ff;
  font-size: 0.9rem;
}

body[data-page="workflow"] .field-hint {
  color: rgba(255, 255, 255, 0.5);
}

body[data-page="workflow"] .input-shell,
body[data-page="workflow"] .textarea-shell,
body[data-page="workflow"] .select-shell,
body[data-page="workflow"] .upload-zone,
body[data-page="workflow"] .modal-input,
body[data-page="workflow"] .dropdown-button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  box-shadow: none;
}

body[data-page="workflow"] .textarea-shell {
  min-height: 190px;
  border-radius: 22px;
}

body[data-page="workflow"] .select-shell {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: linear-gradient(180deg, rgba(17, 20, 29, 0.98), rgba(10, 13, 20, 0.98));
  color: #f8fbff;
}

body[data-page="workflow"] .select-shell option {
  background: #0e121b;
  color: #f8fbff;
}

body[data-page="workflow"] .select-shell::-ms-expand {
  display: none;
}

body[data-page="workflow"] .select-shell:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

body[data-page="workflow"] .select-shell:disabled + .workflow-select-arrow {
  opacity: 0.5;
}

body[data-page="workflow"] .textarea-shell:focus,
body[data-page="workflow"] .select-shell:focus,
body[data-page="workflow"] .modal-input:focus,
body[data-page="workflow"] .dropdown-button:focus-visible {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

body[data-page="workflow"] .dropdown-button:hover {
  border-color: rgba(0, 212, 255, 0.24);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.04);
}

body[data-page="workflow"] .dropdown-menu {
  background: rgba(11, 14, 21, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="workflow"] .model-option:hover,
body[data-page="workflow"] .model-option.is-active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.16);
}

body[data-page="workflow"] .support-pill {
  color: #edf8ff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-page="workflow"] .upload-zone {
  padding: 1rem;
  border-radius: 22px;
}

body[data-page="workflow"] .upload-zone:hover {
  border-color: rgba(0, 212, 255, 0.22);
}

body[data-page="workflow"] .upload-card,
body[data-page="workflow"] .detail-tile,
body[data-page="workflow"] .json-box,
body[data-page="workflow"] .empty-state,
body[data-page="workflow"] .result-video-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-page="workflow"] .upload-card-remove {
  background: rgba(255, 255, 255, 0.04);
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="workflow"] .range-meta {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

body[data-page="workflow"] .range-line {
  accent-color: #00d4ff;
}

.workflow-submit-button {
  min-height: 3.4rem;
  border-radius: 18px;
}

.workflow-output-shell {
  padding: 1.4rem;
  position: sticky;
  top: 6rem;
}

.workflow-output-intro {
  margin-bottom: 1rem;
}

body[data-page="workflow"] .generation-box {
  padding: 1.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="workflow"] .progress-shell {
  min-height: 20rem;
}

body[data-page="workflow"] .progress-badge {
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="workflow"] .spinner-ring {
  border-top-color: #00d4ff;
  border-right-color: #6c63ff;
}

body[data-page="workflow"] .status-submitting,
body[data-page="workflow"] .status-pending,
body[data-page="workflow"] .status-in-progress {
  background: rgba(255, 255, 255, 0.05);
  color: #f7fbff;
  border: 1px solid rgba(0, 212, 255, 0.18);
}

body[data-page="workflow"] .status-completed {
  background: rgba(0, 212, 255, 0.1);
  color: #d6fbff;
  border: 1px solid rgba(0, 212, 255, 0.18);
}

body[data-page="workflow"] .status-failed,
body[data-page="workflow"] .status-cancelled,
body[data-page="workflow"] .status-expired {
  background: rgba(255, 255, 255, 0.05);
  color: #ffdbe6;
  border: 1px solid rgba(255, 109, 145, 0.18);
}

body[data-page="workflow"] .asset-action-primary {
  color: #081015;
  background: linear-gradient(135deg, #00d4ff, #8ff1ff);
}

body[data-page="workflow"] .asset-action-secondary {
  color: #eff7ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="workflow"] .detail-tile-strong {
  background: linear-gradient(180deg, rgba(13, 24, 32, 0.92), rgba(9, 14, 20, 0.94));
  border-color: rgba(0, 212, 255, 0.12);
}

body[data-page="assets"] {
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 212, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(108, 99, 255, 0.12), transparent 24%),
    radial-gradient(circle at 65% 70%, rgba(0, 212, 255, 0.05), transparent 28%),
    linear-gradient(180deg, #090a0f, #090b11 46%, #08090d 100%);
  color: #f6f7fb;
  font-family: "DM Sans", sans-serif;
}

body[data-page="assets"]::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.03) 0.8px, transparent 0.8px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  mask-image: none;
  opacity: 0.08;
}

body[data-page="assets"] .content-wrap {
  width: min(1180px, calc(100% - 2rem));
}

.assets-page-shell {
  padding: 2.3rem 0 2rem;
}

.assets-page-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.assets-hero-panel {
  padding: 1.45rem 1.5rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 21, 30, 0.94), rgba(10, 13, 20, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
}

.assets-hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #f8fbff;
  margin: 0.8rem 0 0.75rem;
  max-width: 12ch;
}

.assets-hero-text {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
}

body[data-page="assets"] .asset-grid {
  gap: 1rem;
}

.assets-card-shell,
.assets-empty-shell {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 21, 30, 0.94), rgba(10, 13, 20, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
}

body[data-page="assets"] .asset-card {
  padding: 1.2rem;
}

body[data-page="assets"] .asset-card h3,
body[data-page="assets"] .empty-state h2 {
  font-family: "Syne", sans-serif;
  color: #f8fbff;
}

body[data-page="assets"] .asset-card video {
  height: auto;
  border-radius: 18px;
  background: #06080d;
}

body[data-page="assets"] .asset-meta,
body[data-page="assets"] .muted-copy,
body[data-page="assets"] .detail-tile {
  color: rgba(255, 255, 255, 0.68);
}

body[data-page="assets"] .detail-tile,
body[data-page="assets"] .json-box,
body[data-page="assets"] .empty-state,
body[data-page="assets"] .glass-panel-soft {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-page="assets"] .asset-action-primary {
  color: #081015;
  background: linear-gradient(135deg, #00d4ff, #8ff1ff);
}

body[data-page="assets"] .asset-action-secondary {
  color: #eff7ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-page="assets"] .asset-card-pending .asset-action-primary[disabled] {
  opacity: 1;
  color: #081015;
  background: linear-gradient(135deg, #00d4ff, #8ff1ff);
  cursor: default;
}

@keyframes asset-wave-sweep {
  0% {
    transform: translateX(-55%);
    opacity: 0.25;
  }

  50% {
    transform: translateX(18%);
    opacity: 0.72;
  }

  100% {
    transform: translateX(70%);
    opacity: 0.18;
  }
}

@keyframes asset-wave-float {
  0%,
  100% {
    transform: translateX(-4%) scaleX(1);
    opacity: 0.38;
  }

  50% {
    transform: translateX(4%) scaleX(1.04);
    opacity: 0.7;
  }
}

body[data-page="account"],
body[data-page="credits"] {
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 212, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(108, 99, 255, 0.12), transparent 24%),
    radial-gradient(circle at 65% 70%, rgba(0, 212, 255, 0.05), transparent 28%),
    linear-gradient(180deg, #090a0f, #090b11 46%, #08090d 100%);
  color: #f6f7fb;
  font-family: "DM Sans", sans-serif;
}

body[data-page="account"]::before,
body[data-page="credits"]::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.03) 0.8px, transparent 0.8px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  mask-image: none;
  opacity: 0.08;
}

body[data-page="account"] .content-wrap,
body[data-page="credits"] .content-wrap {
  width: min(1180px, calc(100% - 2rem));
}

.account-page-shell,
.credits-page-shell {
  padding: 2.3rem 0 2rem;
}

.account-page-stack,
.credits-page-stack,
.credits-main-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-hero-panel,
.credits-hero-panel,
.account-card-shell,
.credits-card-shell,
.credits-balance-shell {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 21, 30, 0.94), rgba(10, 13, 20, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
  padding: 1.45rem 1.5rem;
}

.account-hero-title,
.credits-hero-title,
.account-section-title {
  font-family: "Syne", sans-serif;
  color: #f8fbff;
  letter-spacing: -0.05em;
}

.account-hero-title,
.credits-hero-title {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.96;
  margin: 0.8rem 0 0.75rem;
  max-width: 12ch;
}

.account-hero-text,
.credits-hero-text,
.credits-balance-copy {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
}

.account-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.account-section-title {
  font-size: 1.9rem;
  line-height: 1;
  margin: 0.55rem 0 0;
}

.account-section-copy {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 46rem;
}

.account-subsection-title {
  margin: 0 0 0.85rem;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  color: #f8fbff;
}

.account-stack-lg,
.account-stack-xl,
.account-history-list {
  display: flex;
  flex-direction: column;
}

.account-stack-lg {
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.account-stack-xl {
  gap: 1.25rem;
}

.account-history-list {
  gap: 0.95rem;
}

.account-history-card {
  padding: 1rem 1.05rem;
  border-radius: 22px;
}

.account-history-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.account-history-topline h3 {
  margin: 0.35rem 0 0;
  font-size: 1.12rem;
  color: #f8fbff;
}

.credits-balance-shell {
  text-align: center;
}

.credits-balance-value {
  margin-top: 0.85rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #f8fbff;
}

.credits-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.credits-model-card {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.credits-model-top {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.credits-model-top h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  color: #f8fbff;
}

.credits-model-top p,
.credits-model-meta {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.credits-model-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.landing-modal-panel {
  background: linear-gradient(180deg, rgba(18, 21, 30, 0.98), rgba(9, 12, 18, 0.98));
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 32px rgba(0, 212, 255, 0.05);
}

.modal-panel-login {
  width: min(480px, 100%);
}

.landing-modal-copy {
  color: rgba(255, 255, 255, 0.64);
}

.landing-login-form .modal-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.landing-login-form .modal-input:focus {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

body[data-page="home"] {
  --landing-bg: #0a0a0f;
  --landing-bg-soft: #11131a;
  --landing-surface: rgba(14, 16, 22, 0.88);
  --landing-surface-strong: rgba(18, 21, 30, 0.96);
  --landing-border: rgba(0, 212, 255, 0.16);
  --landing-border-strong: rgba(108, 99, 255, 0.34);
  --landing-accent: #00d4ff;
  --landing-accent-strong: #6c63ff;
  --landing-text: #f6f7fb;
  --landing-text-soft: #b3b9c8;
  --landing-space-1: 0.75rem;
  --landing-space-2: 1rem;
  --landing-space-3: 1.5rem;
  --landing-space-4: 2rem;
  --landing-space-5: 3rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 212, 255, 0.1), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(108, 99, 255, 0.14), transparent 24%),
    radial-gradient(circle at 55% 75%, rgba(0, 212, 255, 0.05), transparent 32%),
    linear-gradient(180deg, #090a0f, #090b11 45%, #08090d 100%);
  color: var(--landing-text);
  font-family: "DM Sans", sans-serif;
}

body[data-page="home"]::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.03) 0.8px, transparent 0.8px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  mask-image: none;
  opacity: 0.08;
}

body[data-page="home"] .content-wrap {
  width: min(1180px, calc(100% - 2rem));
}

body[data-page="home"] .glass-panel,
body[data-page="home"] .glass-panel-soft {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="home"] .gradient-stroke::before {
  display: none;
}

body[data-page="home"] .site-header {
  padding: 1rem 0;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
}

body[data-page="workflow"] .site-header {
  padding: 1rem 0;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
}

.landing-site-header {
  transition: padding 180ms ease, background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.landing-site-header.is-scrolled {
  padding: 0.8rem 0;
  background: rgba(8, 10, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.landing-nav-shell {
  padding: 0.25rem 0;
}

.landing-nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.landing-brand-lockup {
  gap: 0.8rem;
}

.landing-brand-icon {
  width: 20.5rem;
  height: 5.6rem;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.landing-nav-link {
  color: rgba(246, 247, 251, 0.7);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.landing-nav-link:hover {
  color: #ffffff;
}

.landing-auth-slot {
  justify-content: flex-end;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.header-credit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  padding: 0.58rem 0.85rem 0.58rem 0.7rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(17, 21, 31, 0.96), rgba(10, 13, 20, 0.96));
  color: #eef8ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 30px rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
  white-space: nowrap;
}

.header-credit-chip:hover {
  border-color: rgba(0, 212, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.32);
}

.header-credit-icon {
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(180deg, #36e0ff, #1498df);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 18px rgba(20, 152, 223, 0.28);
  flex: 0 0 auto;
}

.header-credit-icon-ring {
  position: absolute;
  inset: 0.18rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.header-credit-icon-core {
  position: relative;
  z-index: 1;
  color: #05243a;
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.header-credit-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
}

.header-credit-value {
  color: #f8fbff;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-credit-label {
  color: rgba(238, 248, 255, 0.78);
  font-size: 0.88rem;
}

.user-badge-button {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.user-badge-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(113, 227, 255, 0.16);
}

.user-tools {
  position: relative;
}

.user-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 12rem;
  padding: 0.45rem;
  border-radius: 18px;
  background: rgba(14, 16, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  display: none;
  z-index: 45;
}

.user-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.user-menu-link {
  display: inline-flex;
  width: 100%;
  padding: 0.78rem 0.85rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  text-align: left;
}

.user-menu-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.user-menu-link-button {
  border: none;
}

.mobile-user-panel {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mobile-user-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.landing-cta-button,
.landing-primary-button,
.landing-ghost-button,
.landing-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  min-height: 2.9rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.landing-cta-button,
.landing-primary-button {
  color: #081015;
  background: linear-gradient(135deg, #00d4ff, #8ff1ff);
  box-shadow: 0 16px 42px rgba(0, 212, 255, 0.18);
}

.landing-cta-button:hover,
.landing-primary-button:hover,
.landing-ghost-button:hover,
.landing-outline-button:hover,
.landing-inline-link:hover,
.landing-text-link:hover {
  transform: translateY(-2px);
}

.landing-cta-button-subtle {
  background: rgba(255, 255, 255, 0.05);
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.landing-ghost-button,
.landing-outline-button {
  color: #edf3ff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-primary-button-block,
.landing-outline-button {
  width: 100%;
}

.landing-menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.landing-menu-toggle span {
  width: 1rem;
  height: 1px;
  background: #f8fbff;
}

.landing-mobile-menu {
  display: none;
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(14, 16, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.landing-mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.landing-homepage {
  padding-bottom: 2rem;
}

.landing-kicker {
  color: rgba(0, 212, 255, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-section,
.landing-hero-section {
  padding: 1.5rem 0;
}

.landing-hero-section {
  padding-top: 3rem;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.landing-hero-copy {
  max-width: 34rem;
}

.landing-hero-title,
.landing-section-title,
.landing-cta-title {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.06em;
  color: #f8fbff;
}

.landing-hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  margin: 1rem 0 1.1rem;
}

.landing-hero-text,
.landing-section-head p,
.landing-model-tagline,
.landing-mode-card p,
.landing-step-card p,
.landing-example-card p,
.landing-price-card p,
.landing-footer-brand p {
  color: var(--landing-text-soft);
}

.landing-hero-text {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.landing-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.landing-hero-meta {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.landing-hero-media {
  position: relative;
}

.landing-hero-glow {
  position: absolute;
  inset: 8% -4% -2% 28%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.22), transparent 62%);
  filter: blur(42px);
  pointer-events: none;
}

.landing-carousel-shell {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 18, 27, 0.96), rgba(8, 10, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.landing-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.landing-panel-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.landing-panel-title {
  color: #f9fbff;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.28rem;
}

.landing-panel-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.landing-panel-dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.landing-carousel-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 22px;
  overflow: hidden;
  background: #05070d;
}

.landing-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 420ms ease;
}

.landing-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.landing-carousel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.landing-carousel-video.accent-cyan {
  box-shadow: inset 0 0 0 999px rgba(0, 212, 255, 0.04);
}

.landing-carousel-video.accent-violet {
  box-shadow: inset 0 0 0 999px rgba(108, 99, 255, 0.04);
}

.landing-carousel-video.accent-ice {
  box-shadow: inset 0 0 0 999px rgba(115, 237, 255, 0.04);
}

.landing-carousel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.08), rgba(4, 7, 12, 0.22)),
    linear-gradient(0deg, rgba(4, 7, 12, 0.72), rgba(4, 7, 12, 0.08) 50%);
}

.landing-carousel-copy {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
}

.landing-carousel-copy h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0.55rem 0 0.45rem;
}

.landing-carousel-copy p {
  margin: 0;
  max-width: 18rem;
  color: rgba(246, 247, 251, 0.8);
}

.landing-carousel-tag {
  display: inline-flex;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7faff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-carousel-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.landing-carousel-chip {
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  min-width: 0;
}

.landing-carousel-chip.is-active {
  border-color: rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.07);
}

.landing-carousel-chip-title {
  display: block;
  color: #f8fbff;
  font-size: 0.92rem;
  font-weight: 700;
}

.landing-carousel-chip-tag {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
}

.landing-proof-section {
  padding: 0.25rem 0 1rem;
}

.landing-proof-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-proof-label {
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  white-space: nowrap;
}

.landing-proof-marquee {
  overflow: hidden;
}

.landing-proof-track {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: max-content;
  animation: landing-marquee 18s linear infinite;
}

.landing-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-proof-logo-shell {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.landing-proof-logo-shell img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.landing-section-head {
  margin-bottom: 1.4rem;
}

.landing-section-head-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.landing-section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  margin: 0.75rem 0 0;
  max-width: 40rem;
}

.landing-text-link,
.landing-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f4f8ff;
  font-weight: 700;
}

.landing-text-link::after,
.landing-inline-link::after {
  content: "→";
}

.landing-steps-grid,
.landing-model-grid,
.landing-mode-grid,
.landing-example-grid,
.landing-price-grid {
  display: grid;
  gap: 1rem;
}

.landing-steps-grid,
.landing-model-grid,
.landing-mode-grid,
.landing-example-grid,
.landing-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.landing-step-card,
.landing-model-card,
.landing-mode-card,
.landing-example-card,
.landing-price-card,
.landing-cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 21, 30, 0.92), rgba(11, 13, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.landing-step-card,
.landing-model-card,
.landing-mode-card,
.landing-example-card,
.landing-price-card {
  padding: 1.35rem;
}

.landing-step-number {
  color: rgba(255, 255, 255, 0.26);
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.landing-step-icon,
.landing-mode-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin: 1.1rem 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(108, 99, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.landing-step-icon svg,
.landing-mode-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.landing-step-card h3,
.landing-model-name,
.landing-mode-card h3,
.landing-example-card h3,
.landing-price-name,
.landing-cta-title {
  font-family: "Syne", sans-serif;
}

.landing-step-card h3,
.landing-mode-card h3,
.landing-example-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.32rem;
}

.landing-step-card p,
.landing-mode-card p,
.landing-example-card p,
.landing-price-card p {
  margin: 0;
  line-height: 1.55;
}

.landing-model-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.94), rgba(11, 13, 18, 0.96));
}

.landing-model-card:hover,
.landing-mode-card:hover,
.landing-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.landing-model-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.18), rgba(0, 212, 255, 0.08));
  color: #a5efff;
  border: 1px solid rgba(0, 212, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-model-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.landing-model-top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-width: 0;
  flex: 1 1 auto;
}

.landing-model-copy {
  min-width: 0;
}

.landing-model-name {
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #f8fbff;
}

.landing-model-tagline {
  margin: 0.45rem 0 0;
  max-width: 22rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.landing-model-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.landing-model-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.75rem;
  border-radius: 999px;
  color: #eef8ff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1;
}

.landing-mode-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.landing-example-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(12, 14, 22, 0.7), rgba(8, 10, 16, 0.94));
}

.landing-example-card.example-cyan {
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.08), 0 20px 54px rgba(0, 0, 0, 0.28);
}

.landing-example-card.example-violet {
  box-shadow: inset 0 0 0 1px rgba(108, 99, 255, 0.1), 0 20px 54px rgba(0, 0, 0, 0.28);
}

.landing-example-card.example-ice {
  box-shadow: inset 0 0 0 1px rgba(123, 232, 255, 0.1), 0 20px 54px rgba(0, 0, 0, 0.28);
}

.landing-example-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.18em;
}

.landing-price-card {
  display: flex;
  flex-direction: column;
}

.landing-price-card-featured {
  border-color: rgba(0, 212, 255, 0.24);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.98), rgba(10, 13, 21, 0.98));
}

.landing-price-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  color: #9cebff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-price-name {
  font-size: 1.1rem;
  color: #f8fbff;
}

.landing-price-value {
  margin-top: 0.55rem;
  font-family: "Syne", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.landing-price-value span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.25rem;
}

.landing-price-credit-line {
  margin-top: 0.45rem;
  color: rgba(0, 212, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.landing-pricing-note {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #f8fbff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.landing-price-value-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.landing-price-strike {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.landing-price-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.landing-price-list li::before {
  content: "";
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  margin-right: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d4ff, #6c63ff);
  vertical-align: middle;
}

.landing-plan-count-head {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-plan-count-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.9rem 0 1rem;
}

.landing-plan-count-card {
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-plan-count-value {
  font-family: "Syne", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  color: #f8fbff;
}

.landing-plan-count-label {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-plan-footnote {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-pricing-head {
  margin-bottom: 1rem;
}

.landing-pricing-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.landing-pricing-rate-shell {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 14rem;
}

.landing-pricing-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-pricing-select {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.8rem 2.4rem 0.8rem 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(17, 20, 29, 0.96), rgba(10, 12, 18, 0.96));
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #f5eaff 50%),
    linear-gradient(135deg, #f5eaff 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) calc(50% - 0.14rem),
    calc(100% - 0.78rem) calc(50% - 0.14rem);
  background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
  background-repeat: no-repeat;
}

.landing-pricing-rate-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.landing-cta-section {
  padding: 2rem 0 0.5rem;
}

.landing-cta-shell {
  padding: 3.2rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(0, 212, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(16, 20, 29, 0.98), rgba(9, 12, 18, 0.98));
}

.landing-cta-title {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  margin: 0.9rem auto 0;
  max-width: 15ch;
}

.landing-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.landing-cta-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.landing-footer {
  padding: 2rem 0 2.6rem;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer-title {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.landing-footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.landing-footer-list a,
.landing-footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.landing-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}

.landing-footer-brand-lockup {
  width: fit-content;
}

.landing-footer-brand p {
  margin: 0;
  max-width: 22rem;
  line-height: 1.65;
}

.landing-footer-socials {
  display: flex;
  gap: 0.65rem;
}

.landing-footer-socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7fbff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: lowercase;
}

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

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

@keyframes landing-marquee {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.mobile-nav-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  margin-top: 0.8rem;
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .workflow-hero-panel,
  .workflow-main-grid,
  .landing-hero-grid,
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow-output-shell {
    position: static;
    top: auto;
  }

  .workflow-hero-side {
    align-items: stretch;
  }

  .landing-nav-row {
    grid-template-columns: auto 1fr auto;
  }

  .landing-auth-slot {
    display: none;
  }

  .landing-menu-toggle {
    display: inline-flex;
  }

  .landing-carousel-nav,
  .landing-steps-grid,
  .landing-model-grid,
  .landing-mode-grid,
  .landing-example-grid,
  .landing-price-grid,
  .landing-price-grid-two,
  .credits-model-grid,
  .account-main-grid {
    grid-template-columns: 1fr;
  }

  .landing-proof-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .content-wrap {
    width: min(100% - 1rem, 100%);
  }

  .hero-title {
    font-size: 2.15rem;
  }

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

  .nav-links {
    display: none;
  }

  .auth-slot {
    display: none;
  }

  .asset-meta {
    grid-template-columns: 1fr;
  }

  .asset-progress-stats {
    grid-template-columns: 1fr;
  }

  body[data-page="workflow"] .content-wrap,
  body[data-page="home"] .content-wrap {
    width: min(100% - 1rem, 100%);
  }

  .workflow-page-shell {
    padding: 1.4rem 0 1.5rem;
  }

  .workflow-hero-panel,
  .workflow-form-shell,
  .workflow-output-shell,
  .landing-carousel-shell,
  .landing-step-card,
  .landing-model-card,
  .landing-mode-card,
  .landing-example-card,
  .landing-price-card,
  .landing-cta-shell {
    border-radius: 24px;
  }

  .workflow-hero-panel,
  .workflow-form-shell,
  .workflow-output-shell {
    padding: 1rem;
  }

  .workflow-form-block {
    padding: 0.9rem;
  }

  .workflow-form-intro h2,
  .workflow-output-intro h2,
  .account-section-title {
    font-size: 1.5rem;
  }

  .workflow-hero-title {
    font-size: 2.3rem;
  }

  .workflow-hero-step {
    padding: 0.8rem 0.9rem;
  }

  .workflow-hero-step span {
    font-size: 1.35rem;
  }

  .workflow-block-head {
    flex-direction: column;
    margin-bottom: 0.8rem;
  }

  .landing-site-header,
  body[data-page="workflow"] .site-header {
    padding: 0.75rem 0;
  }

  .landing-hero-title {
    font-size: 2.7rem;
  }

  .landing-section-title,
  .landing-cta-title {
    font-size: 2rem;
  }

  .landing-section-head-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-hero-actions,
  .landing-cta-actions {
    width: 100%;
  }

  .landing-primary-button,
  .landing-ghost-button,
  .landing-cta-button {
    width: 100%;
  }

  .account-page-shell,
  .credits-page-shell {
    padding: 1.4rem 0 1.5rem;
  }

  .account-hero-panel,
  .credits-hero-panel,
  .account-card-shell,
  .credits-card-shell,
  .credits-balance-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  .account-hero-title,
  .credits-hero-title {
    font-size: 2.2rem;
  }

  .workflow-top-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 0.9rem;
  }

  .workflow-top-copy {
    align-items: flex-start;
    gap: 0.55rem;
  }

  .workflow-top-text {
    font-size: 0.86rem;
  }
}

body[data-page="legal"] {
  --border: rgba(0, 212, 255, 0.15);
  --border-strong: rgba(0, 212, 255, 0.35);
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 212, 255, 0.1), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(108, 99, 255, 0.1), transparent 24%),
    radial-gradient(circle at 55% 75%, rgba(0, 212, 255, 0.05), transparent 32%),
    linear-gradient(180deg, #090a0f, #090b11 45%, #08090d 100%);
}

body[data-page="legal"] .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

body[data-page="legal"] .landing-site-header.is-scrolled {
  background: rgba(8, 10, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

body[data-page="legal"] .gradient-stroke::before {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.45), rgba(143, 241, 255, 0.12), rgba(0, 212, 255, 0.06));
}

body[data-page="legal"] .eyebrow {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.22);
  color: rgba(0, 212, 255, 0.88);
}

body[data-page="legal"] .eyebrow-dot {
  background: linear-gradient(180deg, #00d4ff, #66d9ff);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.65);
}

body[data-page="legal"] .text-indigo-400 {
  color: rgba(0, 212, 255, 0.78) !important;
}

body[data-page="legal"] .modal-input:focus {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

body[data-page="legal"] .modal-input {
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-page="legal"] .glass-panel {
  background: linear-gradient(180deg, rgba(14, 16, 22, 0.92), rgba(9, 12, 18, 0.88));
}

body[data-page="legal"] .glass-panel-soft {
  background: rgba(14, 16, 22, 0.7);
  border-color: rgba(255, 255, 255, 0.07);
}
