:root {
  --bg: #121212;
  --panel: #0e0e0e;
  --text: #f4f7fb;
  --muted: #9ca3af;
  --accent: #3ec5f0;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 0 80px rgba(62, 197, 240, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top center, rgba(62, 197, 240, 0.08), transparent 28%),
    linear-gradient(180deg, #161616 0%, #121212 28%, #111111 100%);
  color: var(--text);
  font-family: "Outfit", "Segoe UI", sans-serif;
}

button,
input { font: inherit; }

.page {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 28px 16px 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.topbar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.navbar {
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-item {
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-item:hover,
.nav-item.is-active {
  color: #fff;
  background: rgba(62, 197, 240, 0.12);
  box-shadow: 0 0 30px rgba(62, 197, 240, 0.18);
}

.hero,
.product,
.features-main,
.benefits,
.carousel-section,
.pricing { padding-inline: 24px; }

.hero {
  position: relative;
  min-height: 65vh;
  padding-top: 112px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(16, 16, 16, 0.98));
  overflow: hidden;
}

.brand-mark {
  position: absolute;
  top: -80px;
  left: 8px;
  width: min(240px, 36vw);
  pointer-events: none;
}

.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(62, 197, 240, 0.3);
  border-radius: 999px;
  background: rgba(62, 197, 240, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: "Playfair Display", Georgia, serif;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.7rem, 7vw, 4.25rem);
  font-weight: 700;
}

.hero-title-line-italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 0.82em;
  margin-left: 2px;
  border-radius: 2px;
  background: var(--accent);
  vertical-align: middle;
}

.typed-cursor.is-hidden { opacity: 0; }

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 24px auto 0;
  color: #9da3af;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.search-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.create-button,
.search-collapsed,
.search-expanded,
.search-submit {
  position: relative;
  border: 1px solid rgba(62, 197, 240, 0.3);
  background: linear-gradient(180deg, rgba(8, 8, 8, 1), rgba(0, 0, 0, 1));
  box-shadow: 0 0 20px rgba(62, 197, 240, 0.2);
}

.create-button {
  width: 128px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.create-button::before,
.search-collapsed::before,
.search-expanded::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 120deg, transparent, rgba(62, 197, 240, 0.85), transparent 28%, transparent 55%, rgba(62, 197, 240, 0.85), transparent 78%);
  filter: blur(8px);
  animation: spin 6s linear infinite;
  opacity: 0.7;
}

.search-shell { width: 48px; transition: width 0.7s ease; }
.search-shell.is-expanded { width: 301px; }

.search-collapsed {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.search-shell.is-expanded .search-collapsed {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.search-collapsed svg,
.search-submit svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-expanded {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 301px;
  height: 56px;
  padding: 0 8px 0 14px;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.search-shell.is-expanded .search-expanded {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.youtube-badge svg {
  width: 26px;
  height: 26px;
  fill: rgba(62, 197, 240, 0.15);
  stroke: rgba(62, 197, 240, 0.4);
  stroke-width: 1;
}

.youtube-badge polygon { fill: var(--accent); stroke: none; }

.search-expanded input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.92rem;
}

.search-expanded input::placeholder { color: rgba(255, 255, 255, 0.3); }

.search-submit {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  cursor: pointer;
}

.hero-proof {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: #6b7280;
  font-size: 0.76rem;
}

.hero-proof strong { color: var(--accent); }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 163, 175, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 163, 175, 0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, rgba(255, 255, 255, 1), transparent 72%);
  opacity: 0.22;
}

.product {
  padding-top: 64px;
  padding-bottom: 80px;
}

.mockup-shell {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lights { display: flex; gap: 6px; }
.light { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ef4444; }
.yellow { background: #facc15; }
.green { background: #22c55e; }

.titlebar-text {
  color: rgba(255, 255, 255, 0.22);
  font: 500 0.72rem/1.2 Consolas, monospace;
}

.mockup-body {
  display: grid;
  grid-template-columns: 64px 200px minmax(0, 1fr) 200px;
  min-height: 420px;
}

.side-icons,
.clips-panel,
.viewer-panel,
.schedule-panel { border-right: 1px solid rgba(255, 255, 255, 0.05); }

.side-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
}

.icon-button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.icon-button.is-active,
.icon-button:hover {
  background: rgba(62, 197, 240, 0.15);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(62, 197, 240, 0.2);
}

.clips-panel {
  display: flex;
  flex-direction: column;
}

.panel-heading {
  width: 96px;
  height: 8px;
  margin: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.clip-card {
  margin: 0 10px 10px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
}

.clip-card.is-active,
.clip-card:hover {
  border-color: rgba(62, 197, 240, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.clip-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(62, 197, 240, 0.2);
  border-radius: 10px;
  background: rgba(62, 197, 240, 0.06);
}

.clip-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
}

.viewer-panel { display: flex; flex-direction: column; }

.video-stage {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: rgba(0, 0, 0, 0.4);
}

.video-stage video {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.video-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.25rem;
  backdrop-filter: blur(6px);
  transition: opacity 0.2s ease;
}

.video-play-indicator.is-hidden { opacity: 0; }

.timeline {
  position: relative;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0a0a0a;
}

.timeline-time,
.track-row,
.score-row,
.price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-time {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.2);
  font: 500 0.64rem/1 Consolas, monospace;
}

.track-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-row { gap: 10px; }

.track-label {
  width: 56px;
  color: rgba(255, 255, 255, 0.2);
  text-align: right;
  font: 500 0.58rem/1 Consolas, monospace;
}

.track-bar {
  position: relative;
  flex: 1;
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.track-bar-video {
  background: linear-gradient(90deg, rgba(62, 197, 240, 0.3) 0 20%, rgba(255, 255, 255, 0.05) 20% 28%, rgba(62, 197, 240, 0.3) 28% 58%, rgba(255, 255, 255, 0.05) 58% 64%, rgba(62, 197, 240, 0.3) 64% 88%, rgba(255, 255, 255, 0.05) 88% 100%);
}

.track-bar-audio {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 42%, rgba(255, 255, 255, 0.05) 42% 46%, rgba(255, 255, 255, 0.1) 46% 100%);
}

.track-bar-captions {
  background: linear-gradient(90deg, rgba(62, 197, 240, 0.2) 0 12%, transparent 12% 16%, rgba(62, 197, 240, 0.2) 16% 32%, transparent 32% 36%, rgba(62, 197, 240, 0.2) 36% 56%, transparent 56% 60%, rgba(62, 197, 240, 0.2) 60% 74%, transparent 74% 78%, rgba(62, 197, 240, 0.2) 78% 88%, transparent 88% 100%);
}

.playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(56px + 10px);
  width: 1px;
  background: rgba(62, 197, 240, 0.8);
  pointer-events: none;
}

.playhead::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(62, 197, 240, 0.9);
}

.timeline-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.timeline-actions button {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  cursor: pointer;
}

.timeline-toggle {
  width: 28px;
  padding: 0;
  font-size: 0.75rem;
}

.schedule-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 12px;
  border-right: 0;
}

.schedule-title,
.schedule-label {
  color: rgba(255, 255, 255, 0.22);
  font: 500 0.64rem/1.2 Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.schedule-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.platform-dot {
  width: 14px;
  height: 14px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.platform-dot.is-on {
  background: radial-gradient(circle, var(--accent) 36%, rgba(62, 197, 240, 0.15) 40%);
  border-color: rgba(62, 197, 240, 0.5);
}

.score-card {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.score-row {
  gap: 8px;
  margin-top: 10px;
}

.score-row span:first-child {
  width: 46px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.62rem;
}

.score-row strong {
  width: 26px;
  color: rgba(62, 197, 240, 0.75);
  text-align: right;
  font: 600 0.62rem/1 Consolas, monospace;
}

.score-bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: rgba(62, 197, 240, 0.75);
}

.score-bar.purple span { background: rgba(168, 85, 247, 0.7); }
.score-bar.green span { background: rgba(52, 211, 153, 0.7); }
.purple-text { color: rgba(168, 85, 247, 0.75) !important; }
.green-text { color: rgba(52, 211, 153, 0.75) !important; }

.schedule-button,
.price-button {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.schedule-button:hover,
.price-button:hover { transform: translateY(-1px); }

.schedule-button {
  margin-top: auto;
  padding: 12px;
  border-radius: 12px;
  background: var(--accent);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
}

.features-main {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 48px;
  align-items: center;
}

.features-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
}

.features-copy h2 span { color: var(--accent); }

.features-copy p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: #9ca3af;
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(62, 197, 240, 0.4);
  border-radius: 50%;
  background: rgba(62, 197, 240, 0.1);
  color: var(--accent);
  font-size: 0.7rem;
}

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

.feature-card {
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.feature-card h3 {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 1.2rem;
}

.cyan { background: #1a3a4a; color: #3ec5f0; }
.purple { background: #2d1f4a; color: #c084fc; }
.green { background: #1a3a2a; color: #34d399; }
.amber { background: #3a2a10; color: #fbbf24; }
.pink { background: #3a1a2a; color: #f472b6; }
.indigo { background: #1a1f3a; color: #818cf8; }

.benefits {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 80px;
}

.section-kicker {
  margin: 0 0 48px;
  color: #6b7280;
  text-align: center;
  font: 500 0.75rem/1.4 Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.benefit-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

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

.benefit-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(62, 197, 240, 0.3);
  background: rgba(62, 197, 240, 0.05);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(62, 197, 240, 0.2);
  border-radius: 12px;
  background: rgba(62, 197, 240, 0.1);
  color: var(--accent);
}

.benefit-card h3 { margin: 14px 0 8px; font-size: 0.98rem; }

.benefit-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.88rem;
}

.carousel-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.carousel-shell {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  perspective: 1000px;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 1800px;
  height: 500px;
  transform-style: preserve-3d;
  animation: rotate-carousel 20s linear infinite;
}

.carousel img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.carousel img:nth-child(1)  { transform: translate(-50%, -50%) rotateY(0deg) translateZ(286px); }
.carousel img:nth-child(2)  { transform: translate(-50%, -50%) rotateY(30deg) translateZ(286px); }
.carousel img:nth-child(3)  { transform: translate(-50%, -50%) rotateY(60deg) translateZ(286px); }
.carousel img:nth-child(4)  { transform: translate(-50%, -50%) rotateY(90deg) translateZ(286px); }
.carousel img:nth-child(5)  { transform: translate(-50%, -50%) rotateY(120deg) translateZ(286px); }
.carousel img:nth-child(6)  { transform: translate(-50%, -50%) rotateY(150deg) translateZ(286px); }
.carousel img:nth-child(7)  { transform: translate(-50%, -50%) rotateY(180deg) translateZ(286px); }
.carousel img:nth-child(8)  { transform: translate(-50%, -50%) rotateY(210deg) translateZ(286px); }
.carousel img:nth-child(9)  { transform: translate(-50%, -50%) rotateY(240deg) translateZ(286px); }
.carousel img:nth-child(10) { transform: translate(-50%, -50%) rotateY(270deg) translateZ(286px); }
.carousel img:nth-child(11) { transform: translate(-50%, -50%) rotateY(300deg) translateZ(286px); }
.carousel img:nth-child(12) { transform: translate(-50%, -50%) rotateY(330deg) translateZ(286px); }

.pricing {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 96px;
}

.pricing-copy {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.pricing-pill {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-family: Consolas, monospace;
}

.pricing-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.pricing-copy p {
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(18, 18, 18, 0.9);
  background-size: 32px 32px, 32px 32px, auto;
}

.price-card { padding: 22px 18px 18px; }

.price-card.featured {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(62, 197, 240, 0.18);
}

.price-card p,
.price-card small { color: var(--muted); }

.price-value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: 22px;
}

.currency { font-size: 1.2rem; }

.price-value strong {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(62, 197, 240, 0.16);
  color: #fff;
  font-size: 0.74rem;
}

.price-badge.muted { background: rgba(255, 255, 255, 0.08); }

.price-button {
  width: 100%;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
}

.price-button.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.secure-note {
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes rotate-carousel { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }

@media (max-width: 1100px) {
  .mockup-body { grid-template-columns: 56px 180px minmax(0, 1fr); }
  .schedule-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .schedule-button { margin-top: 0; grid-column: 1 / -1; }
  .features-main,
  .benefit-grid,
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .navbar { gap: 6px; }
  .nav-item { padding: 12px 14px; font-size: 0.82rem; }
  .search-wrap { flex-direction: column; }
  .mockup-body { grid-template-columns: 1fr; }
  .side-icons {
    flex-direction: row;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .clips-panel,
  .viewer-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .schedule-panel { grid-template-columns: 1fr; }
  .carousel { width: 1100px; }
  .carousel img { width: 112px; }
}

@media (max-width: 640px) {
  .hero,
  .product,
  .features-main,
  .benefits,
  .carousel-section,
  .pricing { padding-inline: 16px; }

  .topbar { padding-top: 16px; }
  .navbar { width: calc(100% - 24px); justify-content: space-between; }
  .nav-item { padding: 12px 10px; font-size: 0.74rem; }
  .brand-mark { width: 170px; top: -40px; }
  .search-shell.is-expanded,
  .search-expanded { width: min(301px, 86vw); }
  .search-expanded input { text-align: left; }
  .video-stage { min-height: 220px; }
  .timeline { overflow-x: auto; }
  .track-list { min-width: 420px; }
  .carousel-shell { min-height: 360px; }
  .carousel { height: 360px; }
}
