:root {
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.25);
  --page-bg: #020617;
  --surface: #0f172a;
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5f5;
}

.fabel-body {
  font-family: 'Inter', sans-serif;
  background-color: var(--page-bg);
  color: var(--text-primary);
  min-height: 100vh;
}

img {
  border-radius: 1.25rem;
}

.announcement-bar {
  background-color: rgba(248, 250, 252, 0.05);
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}

.announcement-text {
  letter-spacing: 0.3rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin: 0;
}

.navbar {
  background-color: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.6);
}

.navbar-light .navbar-toggler, .navbar-dark .navbar-toggler {
  background-color: #198754;
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary);
}

.navbar-actions .btn {
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
}

.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-pills-section {
  margin-top: 2rem;
  background-color: rgba(15, 23, 42, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-pills-section__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 2rem;
}

@media (max-width: 991.98px) {
  .hero-pills-section__inner {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-pills-section__inner {
    gap: 0.35rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-pills-section__inner .tag-pill {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-pills-section {
    background-color: var(--page-bg);
  }
}

.hero-pills-section.hero-pills-mobile {
  display: none;
}

@media (max-width: 575.98px) {
  .hero-pills-section {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-pills-section.hero-pills-desktop {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-pills-section.hero-pills-mobile {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-pills-section.hero-pills-mobile .hero-pills-section__inner {
    padding: 0.75rem 1rem;
  }
}

.hero-center {
  min-height: 40vh;
  border-radius: 32px;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.95));
  box-shadow: 0 35px 70px rgba(2, 6, 23, 0.6);
}

.hero-center h1 {
  letter-spacing: 0.4rem;
}

.hero-center p {
  color: rgba(248, 250, 252, 0.75);
  font-size: 1.25rem;
}

.hero-title {
  line-height: 1.2;
}

.hero-lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.hero-cta {
  justify-content: center;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .hero-primary-cta {
    padding: 0.45rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .hero-secondary-link {
    font-size: 0.95rem;
  }
}

.hero-actions .text-link {
  color: var(--text-secondary);
}

.text-link {
  color: var(--accent);
  text-decoration: none;
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  /*border-radius: 999px;*/
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.35);
}

.btn-accent:hover {
  background-color: #312ed8;
  color: #fff;
}

.hero-highlights .highlight-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
  font-size: 0.85rem;
  text-align: center;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  padding: 2.25rem;
  min-height: 430px;
  color: #f8fafc;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.8)), url('/phone-screen.avif');
  background-size: cover;
  background-position: center;
  box-shadow: 0 35px 65px rgba(15, 23, 42, 0.4);
}

.hero-visual__badge {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(148, 163, 184, 0.3);
  font-size: 0.75rem;
}

.hero-visual__pane {
  margin-top: 1.75rem;
  background-color: rgba(2, 6, 23, 0.5);
  border-radius: 24px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-visual__row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.hero-visual__time {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  color: rgba(248, 250, 252, 0.7);
}

.hero-visual__speaker {
  font-weight: 600;
  color: #f8fafc;
}

.hero-visual__text {
  color: rgba(248, 250, 252, 0.9);
  flex: 1;
}

.hero-visual__chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(79, 70, 229, 0.2);
  color: #e0e7ff;
}

.hero-placeholder {
  background-color: rgba(15, 23, 42, 0.95);
  border-radius: 32px;
  padding: 1.75rem;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 65px rgba(2, 6, 23, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
}

#navigation .hero-placeholder img {
  width: calc(100% + 2px);
  margin-left: -1px;
}

@media (max-width: 767.98px) {
  #hero_2 img {
    width: 100%;
    max-width: none;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-placeholder__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-placeholder__status {
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(248, 250, 252, 0.7);
}

.hero-placeholder__line {
  margin-top: 1.25rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 0.85rem 1.1rem;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-placeholder__speaker {
  font-size: 0.75rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.hero-placeholder__text {
  margin: 0;
  color: rgba(248, 250, 252, 0.85);
  font-size: 0.95rem;
}

.hero-placeholder__highlight {
  display: inline-flex;
  padding: 0.05rem 0.5rem;
  border-radius: 0.75rem;
  background-color: rgba(139, 92, 246, 0.25);
  color: #fff;
  font-weight: 600;
}

.hero-placeholder__timeline {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-placeholder__timeline-block {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(248, 250, 252, 0.2);
}

.hero-placeholder__timeline-block--active {
  flex: 2;
  background: linear-gradient(90deg, #c084fc, #6366f1 60%, #4f46e5);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

#image_1 {
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.5);
}

#image_1 img {
  border-radius: 32px;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 45px rgba(2, 6, 23, 0.55);
}

.quick-value-strip {
  background-color: rgba(15, 23, 42, 0.9);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  margin-top: 1.75rem;
  box-shadow: 0 22px 45px rgba(2, 6, 23, 0.55);
}

.quick-value-strip .row {
  margin: 0;
}

.quick-value-item {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 90px;
}

.quick-value-strip .row > div:last-child .quick-value-item {
  border-right: none;
}

.quick-value-item p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.95);
  text-align: center;
}

#para3 {
  align-self: flex-start;
}

@media (max-width: 991.98px) {
  .quick-value-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 991.98px) {
  .quick-value-strip .row > div:last-child .quick-value-item {
    border-bottom: none;
  }
}

.visual-feature-section {
  background-color: rgba(15, 23, 42, 0.8);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1.75rem;
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.55);
  padding: 3rem 0;
}

#navigation {
  margin-bottom: 3rem;
}

#navigation .hero-placeholder {
  min-height: 320px;
  padding: 1.35rem;
}

#clip-selection .hero-placeholder {
  justify-content: flex-start;
  padding-top: 1rem;
  padding-bottom: 0;
  gap: 0.5rem;
  min-height: 280px;
}

#hero_4 {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  gap: 0.75rem;
  min-height: 260px;
}

#hero_4 .hero-placeholder__timeline {
  margin-top: 1rem;
}

#hero_4_div {
  padding-top: 0.6rem;
}

#hero_4_div .editor-screenshot__header {
  margin-bottom: 0 !important;
}

#Clip-selection {
  margin-top: 0;
  margin-bottom: 3rem;
}

#clip-selection .hero-placeholder__timeline {
  margin-top: 1rem;
}

#clip-selection .btn-primary {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

.visual-feature-heading {
  max-width: 460px;
}

.visual-feature-heading h2 {
  font-size: 2.5rem;
}

#clip-selection .visual-feature-heading h2 {
  font-size: 2.8rem;
}

#clip-selection .visual-feature-heading .btn-primary {
  margin-top: 1.5rem;
}

.clip-selection-callout {
  margin-top: 1.5rem;
  max-width: 420px;
}

.clip-selection-callout__lead {
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.clip-selection-callout__subtext {
  font-size: 0.95rem;
}

.clip-selection-cta {
  border-radius: 999px;
  padding: 0.35rem 1.45rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  border-color: rgba(255, 255, 255, 0.4);
}

.visual-placeholder {
  background-color: rgba(2, 6, 23, 0.85);
  border-radius: 28px;
  padding: 2.5rem;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 45px rgba(2, 6, 23, 0.55);
}

.visual-placeholder__badge-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.visual-placeholder__badge {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(248, 250, 252, 0.08);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.75);
}

.visual-placeholder__badge--muted {
  background-color: rgba(248, 250, 252, 0.03);
}

.visual-placeholder__line {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.95rem 1.2rem;
  margin-top: 1rem;
  min-height: 82px;
}

.visual-placeholder__speaker {
  font-size: 0.75rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.visual-placeholder__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.85);
}

.visual-placeholder__highlight {
  display: inline-flex;
  padding: 0.05rem 0.5rem;
  background-color: rgba(139, 92, 246, 0.35);
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
}

.visual-placeholder__timeline {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.visual-placeholder__timeline-block {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(248, 250, 252, 0.25);
}

.visual-placeholder__timeline-block--active {
  background: linear-gradient(90deg, #c084fc, #6366f1 60%, #4f46e5);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

@media (max-width: 991.98px) {
  .visual-placeholder {
    padding: 1.75rem;
    min-height: auto;
  }
}

.hero-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.timeline-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.7);
}

.timeline-mark.active .timeline-time, .timeline-mark.active .timeline-label {
  color: #fff;
}

.feature-section {
  background-color: var(--page-bg);
}

.section-heading h2 {
  font-size: 2.25rem;
  font-family: 'Inter', sans-serif;
}

#comparison {
  background-color: var(--page-bg);
}

#comparison th, #comparison td {
  background-color: transparent;
  padding: 16px 12px;
}

#comparison th:nth-child(2), #comparison td:nth-child(2) {
  background-color: rgba(15, 23, 42, 0.85);
  background-image: linear-gradient(180deg, rgba(79, 70, 229, 0.14), rgba(15, 23, 42, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.feature-card {
  background-color: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  min-height: 200px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.feature-card h3 {
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
}

#items_list {
  margin-top: 2.5rem;
}

#items_list .feature-card {
  padding: 1.25rem;
  min-height: 160px;
  border-radius: 22px;
  background: rgba(7, 11, 27, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 12px 35px rgba(2, 6, 23, 0.55);
  transition: transform 0.3s ease, border-color 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

#items_list .feature-card p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1rem;
  margin: 0;
}

#items_list .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.5);
}

.core-benefits-section {
  background-color: var(--surface);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.6);
  margin-bottom: 3rem;
}

.core-benefits-section .section-heading h2 {
  font-size: 2rem;
}

.use-cases-section {
  background-color: var(--page-bg);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
  box-shadow: 0 25px 45px rgba(2, 6, 23, 0.6);
  margin-bottom: 3rem;
}

@media (max-width: 767.98px) {
  #uses + .editor-section {
    padding-top: 0.75rem !important;
  }
}

.use-case-card {
  background-color: #0d111f;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  min-height: 200px;
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.use-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
}

.use-case-card h3 {
  color: var(--text-primary);
}

.use-case-card p {
  color: var(--text-secondary);
}

.benefit-card {
  min-height: 190px;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #0d111f;
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.6);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.3);
}

.benefit-card h3 {
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
}

.how-it-works-section {
  background-color: var(--surface);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
  box-shadow: 0 30px 55px rgba(2, 6, 23, 0.6);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.how-it-works-section .section-heading h2 {
  font-size: 2.1rem;
}

.step-card {
  background-color: var(--surface);
  border-radius: 24px;
  padding: 1.8rem;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.3);
}

.step-index {
  font-size: 0.85rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.workflow-section {
  background-color: var(--page-bg);
}

.workflow-list {
  list-style: none;
  color: var(--text-secondary);
  padding: 0;
  margin-bottom: 0;
}

.workflow-list li {
  margin-bottom: 0.6rem;
}

.workflow-card {
  background-color: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 25px 45px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.workflow-step:last-child {
  margin-bottom: 0;
}

.step-index {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.editor-panel {
  background-color: var(--surface);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.editor-tags {
  margin-top: 1rem;
}

.tag-pill {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.editor-screenshot {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.4);
}

.editor-screenshot__timeline {
  margin-top: 1rem;
}

.editor-screenshot__timeline-bar {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c084fc, #6366f1 60%, #4f46e5);
}

.cta-panel {
  background-color: var(--surface);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#waitlist {
  max-width: 880px;
  margin: 0 auto 3rem;
  padding: 3rem;
  text-align: center;
  background-color: var(--surface);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#waitlist h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

#waitlist p {
  max-width: 620px;
  margin: 0 auto 1.75rem;
  color: var(--text-secondary);
}

#waitlist .btn {
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
}

#waitlist .btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.35);
}

#waitlist .btn-primary:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}

.privacy-section {
  background-color: var(--surface);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.6);
  margin-top: 2.5rem;
}

.privacy-section__text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pricing-teaser-section {
  background-color: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
  margin-bottom: 1.5rem;
}

.final-cta-section {
  background: linear-gradient(135deg, #0b112a, #181c34);
  color: #fff;
  border-radius: 32px;
  padding: 3.5rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 35px 65px rgba(2, 6, 23, 0.35);
}

.final-cta-section h2 {
  color: #fff;
}

.final-cta-section .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.final-cta-section .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.final-cta-section .btn-accent {
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.footer {
  background-color: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  padding: 0;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 991.98px) {
  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 991.98px) {
  .navbar-actions .btn {
    width: 100%;
    padding: 0.5rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .hero-timeline {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-ui {
  border-radius: 32px;
  padding: 2.25rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.9)), #0f172a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.35);
}

.hero-ui__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-ui__status {
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-ui__body {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-ui__row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.hero-ui__speaker {
  width: 70px;
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-ui__text {
  flex: 1;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.4;
}

.hero-ui__highlight {
  color: var(--accent);
  font-weight: 600;
}

.hero-ui__timeline {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.hero-ui__segment {
  flex: 1;
  padding: 0.45rem 0;
  border-radius: 999px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.hero-ui__segment--active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.pricing-section {
  margin-top: 2rem;
}

.pricing-card-simple {
  background-color: var(--surface);
  border-radius: 28px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(2, 6, 23, 0.6);
  display: flex;
  flex-direction: column;
}

.pricing-card-simple--accent {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 25px 55px rgba(79, 46, 229, 0.2);
}

.pricing-card-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}

.pricing-card-simple ul {
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .hero-ui {
    padding: 1.7rem;
  }

  .hero-ui__timeline {
    flex-direction: column;
    gap: 0.5rem;
  }
  :root {
    --section-stack: 1.25rem;
    --section-padding: 2rem;
    --section-gutter: 1.25rem;
    --card-padding: 1.5rem;
  }

  .navbar {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .navbar-actions {
    margin-top: 1rem;
  }

  main > section {
    margin-bottom: 0;
  }

  main > section + section {
    margin-top: var(--section-stack);
  }

  .hero-section {
    padding-top: 2.75rem;
    padding-bottom: 2.25rem;
  }

  .hero-section .container,
  .visual-feature-section .container,
  .how-it-works-section .container,
  .use-cases-section .container,
  .editor-section .container,
  .pricing-section .container,
  .cta-section .container,
  .privacy-section .container,
  .footer .container {
    padding-left: var(--section-gutter);
    padding-right: var(--section-gutter);
  }

  .visual-feature-section,
  .how-it-works-section,
  .use-cases-section,
  .editor-section,
  .pricing-section,
  .cta-section,
  .privacy-section,
  #waitlist {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    border-radius: 28px;
  }

  .section-heading {
    margin-bottom: 1rem !important;
  }

  #navigation,
  #Clip-selection {
    margin-bottom: 0;
  }

  #home .row.gx-5,
  #workflow .row,
  #clip-selection-1 .row,
  #clip-selection .row,
  #how-it-works .row,
  #uses .row,
  .pricing-section .row,
  #workspace {
    --bs-gutter-y: 1.5rem;
  }

  .feature-card,
  .use-case-card,
  .step-card,
  .pricing-card-simple,
  .cta-panel,
  .editor-panel,
  #waitlist {
    padding: var(--card-padding);
  }

  .hero-placeholder,
  .editor-screenshot {
    width: 100%;
    margin: 0;
    padding: 1rem;
    min-height: auto;
    gap: 1rem;
  }

  .hero-placeholder img,
  .editor-screenshot img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-placeholder__timeline,
  .editor-screenshot__timeline {
    width: 100%;
  }

  .hero-pills-section {
    margin-top: 1.25rem;
  }

  .pricing-section .row {
    --bs-gutter-x: 1rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-stack: 0.9rem;
    --section-padding: 1.5rem;
    --section-gutter: 0.95rem;
    --card-padding: 1rem;
  }

  .hero-section {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .hero-lead {
    margin-bottom: 1rem !important;
  }

  .hero-cta {
    gap: 0.75rem;
    flex-direction: column;
  }

  .hero-primary-cta {
    width: auto;
    align-self: center;
  }

  #built_for {
    margin-top: 0.75rem !important;
  }

  .section-heading {
    margin-bottom: 0.75rem !important;
  }

  .section-heading h2 {
    margin-bottom: 0.35rem;
  }

  #features {
    padding-bottom: 0.75rem;
  }

  .visual-feature-section,
  .how-it-works-section,
  .use-cases-section,
  .editor-section,
  .pricing-section,
  .cta-section,
  .privacy-section,
  #waitlist {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    border-radius: 22px;
  }

  .hero-pills-section {
    margin-top: 0.75rem;
    margin-bottom: 0;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
  }

  .hero-pills-section.hero-pills-mobile {
    display: block;
    margin-top: 0.75rem;
  }

  .hero-pills-section__inner {
    justify-content: center;
    gap: 0.4rem;
    padding: 0;
  }

  .hero-pills-section__inner .tag-pill {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }

  .hero-section > .container:last-child {
    display: none;
  }

  #home .row.gx-5,
  #workflow .row,
  #clip-selection-1 .row,
  #clip-selection .row,
  #how-it-works .row,
  #features .row,
  #uses .row,
  .pricing-section .row,
  #workspace {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .feature-card,
  .use-case-card,
  .step-card,
  .pricing-card-simple,
  .cta-panel,
  .editor-panel {
    padding: var(--card-padding);
  }

  .hero-placeholder,
  .editor-screenshot {
    padding: 0;
    gap: 0.75rem;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .hero-placeholder img,
  .editor-screenshot img {
    border-radius: 0;
  }

  .hero-placeholder__timeline,
  .editor-screenshot__timeline {
    margin-top: 0.75rem;
  }

  #features .col-sm-6,
  .use-cases-section .col-sm-6,
  .pricing-section .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pricing-card-actions {
    flex-direction: column;
  }

  .pricing-card-actions .btn,
  .cta-panel .btn-accent {
    width: 100%;
  }

  .cta-panel .btn-accent {
    margin-right: 0 !important;
    margin-bottom: 0.75rem;
  }

  .cta-panel .text-link {
    display: inline-flex;
    justify-content: center;
  }

  .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
