:root {
  --bg: #040816;
  --bg-2: #09111f;
  --panel: rgba(13, 19, 34, 0.72);
  --panel-strong: rgba(12, 18, 31, 0.9);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7ff;
  --muted: #97a3c2;
  --blue: #6ed0ff;
  --blue-2: #8a7dff;
  --pink: #ff5478;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(110, 208, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(138, 125, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom center, rgba(255, 84, 120, 0.1), transparent 22%),
    linear-gradient(180deg, #030712 0%, #06101d 48%, #040816 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 18%, transparent 82%, rgba(255,255,255,0.04)),
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.08), transparent 18%);
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.34);
}
.brand span {
  font-size: 1.05rem;
}
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #eaf2ff;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}

.portal-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 34px;
}
.portal-hero {
  width: 100%;
  padding: 24px 0 10px;
}
.portal-copy {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 820px;
}
.portal-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #dbe8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(16px);
}
.portal-copy h1 {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.portal-copy p {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(13, 20, 35, 0.94), rgba(8, 13, 24, 0.98));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.service-tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03), rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  z-index: -1;
}
.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 38px 95px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.08);
}
.tile-growth::after {
  background: radial-gradient(circle, rgba(110,208,255,0.22), transparent 64%);
}
.tile-editing::after {
  background: radial-gradient(circle, rgba(255,84,120,0.22), transparent 64%);
}
.tile-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #eef6ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tile-icon-wrap {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.tile-icon-wrap img {
  width: 118px;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.38));
}
.tile-body {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.tile-body h2 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.tile-body p {
  margin: 0 0 22px;
  max-width: 360px;
  color: #b4c0dc;
  font-size: 1rem;
  line-height: 1.7;
}
.tile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tile-points span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #ebf2ff;
  font-size: 0.9rem;
}
.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #ffffff;
}
.tile-cta::after {
  content: "→";
  font-size: 1.15rem;
}
.portal-footnote {
  margin-top: 18px;
  text-align: center;
  color: #7d8aaa;
  font-size: 0.9rem;
}

.service-page {
  padding: 0 0 36px;
}
.service-hero {
  min-height: calc(100vh - 20px);
  display: grid;
  place-items: center;
  padding: 14px 0 34px;
}
.service-panel {
  position: relative;
  overflow: hidden;
  width: min(980px, 100%);
  padding: 36px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(11, 17, 30, 0.96), rgba(8, 12, 22, 0.98));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.service-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(10px);
  z-index: 0;
}
.service-panel.growth-panel::after {
  background: radial-gradient(circle, rgba(110,208,255,0.22), transparent 64%);
}
.service-panel.editing-panel::after {
  background: radial-gradient(circle, rgba(255,84,120,0.22), transparent 64%);
}
.service-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 240px;
  gap: 28px;
  align-items: center;
}
.service-panel h1 {
  margin: 14px 0 10px;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.service-panel p {
  margin: 0;
  color: #b1bdd8;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #03101d;
  background: linear-gradient(135deg, #ffffff, #dcecff 54%, #baf4ff 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}
.btn-secondary {
  color: #eef4ff;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.service-visual {
  display: grid;
  place-items: center;
}
.service-visual-shell {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-visual img {
  width: 150px;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.44));
}
.service-mini-note {
  margin-top: 22px;
  color: #7d89a8;
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-tile { min-height: 420px; }
  .tile-icon-wrap { width: 140px; height: 140px; }
  .tile-icon-wrap img { width: 92px; }
  .service-panel-inner { grid-template-columns: 1fr; }
  .service-visual { justify-content: start; }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 20px, 1180px); }
  .topbar { padding: 14px 0; }
  .mini-link { min-height: 40px; padding: 0 14px; font-size: 0.88rem; }
  .portal-copy { margin-bottom: 24px; }
  .portal-copy p { font-size: 0.95rem; }
  .service-tile { min-height: 390px; padding: 22px; }
  .tile-icon-wrap { right: 18px; top: 18px; width: 116px; height: 116px; border-radius: 24px; }
  .tile-icon-wrap img { width: 78px; }
  .tile-body { left: 22px; right: 22px; bottom: 22px; }
  .tile-body h2 { max-width: 230px; }
  .service-panel { padding: 24px; border-radius: 28px; }
  .service-visual-shell { width: 170px; height: 170px; border-radius: 28px; }
  .service-visual img { width: 120px; }
}

/* === services-premium-redesign:start === */
.services-redesign.portal-home {
  min-height: auto;
  display: block;
  padding: 0 0 84px;
}
.services-redesign .portal-hero-expanded {
  width: 100%;
  margin: 22px 0 32px;
  padding: 34px 34px 40px;
  min-height: auto;
}
.services-redesign .topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-redesign .portal-copy-wide {
  max-width: 760px;
  margin-bottom: 22px;
}
.services-redesign .portal-copy-wide h1 {
  max-width: 880px;
}
.services-redesign .portal-copy-wide p {
  max-width: 680px;
}
.services-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.services-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
  color: #e7efff;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.section-block {
  position: relative;
  margin: 26px 0;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.92), rgba(10, 16, 28, 0.88));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(110, 208, 255, 0.10), transparent 22%), radial-gradient(circle at top right, rgba(138, 125, 255, 0.12), transparent 24%);
}
.section-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 26px;
}
.section-head-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(110, 208, 255, 0.12);
  border: 1px solid rgba(110, 208, 255, 0.16);
  color: #9fe7ff;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-head p {
  margin: 0;
  color: #a2aec8;
  font-size: 1rem;
  line-height: 1.72;
}
.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.proof-card {
  padding: 24px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.proof-value {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #f6fbff;
  margin-bottom: 10px;
}
.proof-label {
  color: #a8b4cf;
  font-size: 0.95rem;
}
.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.detail-panel {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.detail-panel-growth {
  background: linear-gradient(180deg, rgba(14, 25, 35, 0.92), rgba(9, 17, 27, 0.92));
}
.detail-panel-editing {
  background: linear-gradient(180deg, rgba(21, 18, 36, 0.92), rgba(10, 15, 30, 0.92));
}
.detail-topline {
  color: #8bdfff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.detail-panel h3 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.detail-intro {
  margin: 0 0 18px;
  color: #b8c4db;
  line-height: 1.72;
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}
.detail-list li {
  position: relative;
  padding-left: 18px;
  color: #edf3ff;
  line-height: 1.65;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #72ffad, #6ed0ff);
  box-shadow: 0 0 0 6px rgba(114,255,173,0.08);
}
.detail-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.detail-meta span {
  display: block;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #aab5cd;
  font-size: 0.93rem;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.detail-link,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.detail-link:hover,
.cta-button:hover,
.process-card:hover,
.proof-card:hover {
  transform: translateY(-3px);
}
.detail-link {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #f4f8ff;
}
.detail-link-primary,
.cta-button-primary {
  border-color: rgba(110,208,255,0.25);
  background: linear-gradient(135deg, rgba(114,255,173,0.98) 0%, rgba(76,201,255,0.95) 44%, rgba(143,124,255,0.96) 100%);
  color: #04121e;
  box-shadow: 0 18px 38px rgba(76, 201, 255, 0.22);
}
.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-card {
  padding: 24px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(110,208,255,0.10);
  border: 1px solid rgba(110,208,255,0.18);
  color: #9fe7ff;
  font-weight: 800;
}
.process-card h3 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.3rem;
}
.process-card p {
  margin: 0;
  color: #a9b4cb;
  line-height: 1.68;
}
.compare-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.compare-column {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}
.compare-generic {
  background: linear-gradient(180deg, rgba(27, 20, 28, 0.92), rgba(17, 14, 22, 0.92));
}
.compare-premium {
  background: linear-gradient(180deg, rgba(15, 25, 34, 0.92), rgba(11, 18, 31, 0.94));
  box-shadow: 0 24px 46px rgba(76, 201, 255, 0.12);
}
.compare-title {
  margin-bottom: 14px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.compare-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.compare-column li {
  position: relative;
  padding-left: 18px;
  color: #c8d2e8;
  line-height: 1.68;
}
.compare-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}
.compare-premium li::before {
  background: linear-gradient(135deg, #72ffad, #6ed0ff);
}
.cta-shell {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.cta-shell h2 {
  margin: 0 0 12px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.cta-shell p {
  margin: 0 0 22px;
  color: #a9b4cb;
  line-height: 1.72;
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-button-secondary {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #f4f8ff;
}
.section-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .proof-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .services-redesign .portal-hero-expanded,
  .section-block { padding: 26px; border-radius: 28px; }
  .detail-grid,
  .compare-shell,
  .proof-grid,
  .process-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-redesign.portal-home { padding-bottom: 48px; }
  .services-redesign .topbar-actions { gap: 8px; }
  .services-redesign .topbar-actions .mini-link { padding: 0 14px; }
  .services-redesign .portal-hero-expanded,
  .section-block { padding: 22px; border-radius: 24px; }
  .services-trust-row span { width: 100%; justify-content: center; }
  .detail-panel,
  .compare-column,
  .process-card,
  .proof-card { padding: 22px; border-radius: 22px; }
  .detail-actions,
  .cta-actions { flex-direction: column; }
  .detail-link,
  .cta-button { width: 100%; }
}
/* === services-premium-redesign:end === */

/* === video-editing-clean-refresh:start === */
.ve-clean-shell {
  width: min(1180px, calc(100% - 32px));
  padding: 28px 0 86px;
}
.ve-intro-active {
  overflow: hidden;
}
.ve-intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(110,208,255,0.14), transparent 24%),
    radial-gradient(circle at 65% 32%, rgba(138,125,255,0.18), transparent 22%),
    linear-gradient(180deg, rgba(3,7,18,0.96), rgba(3,7,18,0.995));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.ve-intro-screen.is-visible { opacity: 1; visibility: visible; }
.ve-intro-screen.is-fading { opacity: 0; }
.ve-intro-screen.is-hidden { display: none; }
.ve-intro-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(circle at bottom right, rgba(110,208,255,0.12), transparent 18%);
  pointer-events: none;
}
.ve-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.ve-intro-kicker {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #dce8ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.ve-intro-inner h1 {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #f7fbff;
  text-shadow: 0 18px 48px rgba(0,0,0,0.34);
}
.ve-clean-hero,
.ve-clean-strip,
.ve-clean-section,
.ve-clean-final {
  position: relative;
  margin: 0 0 24px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.94), rgba(8, 13, 24, 0.90));
  box-shadow: 0 28px 72px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
.ve-clean-hero::before,
.ve-clean-strip::before,
.ve-clean-section::before,
.ve-clean-final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(110,208,255,0.10), transparent 24%), radial-gradient(circle at top right, rgba(138,125,255,0.10), transparent 26%);
}
.ve-clean-topbar { position: relative; z-index: 2; padding-top: 0; }
.ve-clean-topbar-actions { display: flex; align-items: center; gap: 12px; }
.ve-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 6px 0 28px;
}
.ve-hero-copy h2 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.ve-hero-copy p {
  margin: 0;
  max-width: 560px;
  color: #a8b4cf;
  line-height: 1.72;
  font-size: 1rem;
}
.ve-hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
}
.ve-clean-photo-card,
.ve-clean-video-stage {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(0,0,0,0.32);
}
.ve-clean-photo-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
}
.ve-clean-photo-card-large .ve-clean-photo {
  width: 100%;
  height: 100%;
  min-height: 528px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
}
.ve-clean-photo-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(6,12,24,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f4f8ff;
  font-weight: 700;
  font-size: 0.92rem;
}
.ve-clean-video-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(145deg, rgba(10,16,30,0.98), rgba(6,10,20,0.98));
  isolation: isolate;
}
.ve-clean-video-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(76,201,255,0.14), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(143,124,255,0.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.ve-clean-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: inherit;
  pointer-events: none;
}
.ve-clean-video-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #eef5ff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ve-clean-video-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 412px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(18,24,38,0.94), rgba(10,15,26,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 50px rgba(0,0,0,0.26);
}
.ve-clean-video-topline,
.ve-clean-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #8ea1bf;
  font-size: 0.84rem;
}
.ve-clean-video-topline { text-transform: uppercase; letter-spacing: 0.08em; }
.ve-clean-video-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6ed0ff;
  box-shadow: 0 0 0 8px rgba(110,208,255,0.08);
}
.ve-clean-video-center {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  flex: 1;
}
.ve-clean-video-play {
  width: 94px;
  height: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 1.95rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.18);
}
.ve-clean-video-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #f7fbff;
  font-weight: 700;
}
.ve-clean-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}
.ve-clean-strip-item {
  position: relative;
  z-index: 1;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.ve-clean-card,
.ve-clean-showcase {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.ve-clean-strip-item strong,
.ve-clean-card h3,
.ve-clean-showcase h3 {
  display: block;
  margin: 0 0 8px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.ve-clean-strip-item span,
.ve-clean-card p,
.ve-clean-showcase span {
  color: #aab5cd;
  line-height: 1.62;
  margin: 0;
}
.ve-clean-head { position: relative; z-index: 1; max-width: 680px; margin-bottom: 22px; }
.ve-clean-head-centered { margin-left: auto; margin-right: auto; text-align: center; }
.ve-clean-head h2,
.ve-clean-final h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 12px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.ve-clean-head p { margin: 0; color: #a8b4cf; line-height: 1.72; }
.ve-clean-grid,
.ve-clean-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
.ve-clean-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ve-clean-grid-3,
.ve-clean-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ve-clean-showcase {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(18, 28, 46, 0.52), rgba(12, 18, 31, 0.94));
}
.ve-clean-play {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}
.ve-clean-final { text-align: center; }
.ve-clean-actions,
.ve-clean-actions-center { display: flex; flex-wrap: wrap; gap: 12px; }
.ve-clean-actions-center { justify-content: center; }
.section-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.section-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) {
  .ve-clean-strip, .ve-clean-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .ve-hero-stage { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .ve-clean-shell { width: min(100% - 20px, 1200px); }
  .ve-clean-hero, .ve-clean-strip, .ve-clean-section, .ve-clean-final { padding: 24px; border-radius: 24px; }
  .ve-clean-grid-3, .ve-clean-showcase-grid, .ve-clean-strip, .ve-clean-grid-4 { grid-template-columns: 1fr; }
  .ve-clean-photo-card,
  .ve-clean-video-stage { min-height: 420px; }
  .ve-clean-photo-card-large .ve-clean-photo { min-height: 388px; }
  .ve-clean-video-screen { min-height: 320px; }
}
@media (max-width: 640px) {
  .ve-intro-inner h1 { font-size: 2.2rem; }
  .ve-clean-topbar-actions { gap: 8px; }
  .ve-clean-topbar-actions .mini-link { min-height: 40px; padding: 0 14px; font-size: 0.86rem; }
  .ve-hero-copy p { font-size: 0.95rem; }
  .ve-clean-actions .btn { width: 100%; justify-content: center; }
  .ve-clean-actions { flex-direction: column; }
  .ve-clean-photo-card,
  .ve-clean-video-stage { min-height: 340px; }
  .ve-clean-photo-card-large .ve-clean-photo { min-height: 320px; }
  .ve-clean-photo-tag { left: 18px; bottom: 18px; }
  .ve-clean-video-badge { top: 18px; left: 18px; }
  .ve-clean-video-screen { min-height: 248px; padding: 20px; }
  .ve-clean-video-play { width: 78px; height: 78px; font-size: 1.6rem; }
  .ve-clean-video-topline,
  .ve-clean-video-meta { flex-direction: column; align-items: flex-start; }
}
/* === video-editing-clean-refresh:end === */
