main {
  width: 100%;
}

.section.bg-squares {
  background: #fafafa;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.topbar-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wordmark {
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.topbar-desktop {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-nav__link {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.topbar-nav__link:hover {
  color: var(--text);
  background: rgba(66, 87, 138, 0.08);
}

.topbar-nav__link.is-active {
  color: var(--text);
  background: rgba(52, 84, 209, 0.12);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-inline-form,
.topbar-mobile-form {
  margin: 0;
}

.topbar-user {
  max-width: 220px;
  height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: rgba(52, 84, 209, 0.12);
  color: var(--primary);
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-topbar {
  height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-topbar--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-topbar--ghost {
  border-color: var(--line-soft);
  color: var(--text);
  background: var(--bg);
}

.btn-topbar--ghost:hover {
  background: rgba(66, 87, 138, 0.08);
}

.btn-topbar--primary:hover {
  filter: brightness(0.96);
}

.btn-topbar--ghost:focus-visible,
.btn-topbar--primary:focus-visible,
.topbar-menu-btn:focus-visible {
  outline: 2px solid rgba(52, 84, 209, 0.45);
  outline-offset: 2px;
}

.topbar-menu-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  flex-shrink: 0;
  cursor: pointer;
}

.topbar-menu-btn span {
  display: block;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-menu-open .topbar-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-menu-open .topbar-menu-btn span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .topbar-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar-mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 45;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 20px 30px -28px rgba(15, 23, 42, 0.5);
}

.topbar-mobile-panel__inner {
  padding: 14px 0 20px;
  display: grid;
  gap: 14px;
}

.topbar-mobile-nav {
  display: grid;
  gap: 6px;
}

.topbar-mobile-link {
  height: 42px;
  border-radius: 12px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.topbar-mobile-link:hover {
  color: var(--text);
  background: rgba(66, 87, 138, 0.08);
}

.topbar-mobile-link.is-active {
  color: var(--text);
  background: rgba(52, 84, 209, 0.12);
}

.topbar-mobile-actions {
  display: grid;
  gap: 10px;
}

.topbar-mobile-actions .btn-topbar {
  width: 100%;
}

.topbar-mobile-user {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar--dashboard {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line-soft);
}

.topbar--dashboard .topbar-inner {
  gap: 20px;
}

.topbar--dashboard .topbar-desktop {
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.topbar-nav--app {
  flex-shrink: 0;
  gap: 6px;
}

.topbar--dashboard .topbar-nav__link {
  padding-inline: 14px;
  font-weight: 600;
}

.topbar-actions--app {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  gap: 12px;
}

.topbar-app-search {
  flex: 1 1 360px;
  min-width: 180px;
  max-width: 440px;
  margin: 0;
}

.topbar-app-search .dashboard-search {
  width: 100%;
}

.topbar-create-btn {
  flex-shrink: 0;
  text-decoration: none;
}

.topbar-account {
  position: relative;
  flex-shrink: 0;
}

.topbar-account__trigger {
  max-width: 240px;
  min-width: 0;
  height: 3rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.topbar-account__trigger:hover,
.topbar-account.is-open .topbar-account__trigger {
  background: rgba(66, 87, 138, 0.06);
  border-color: rgba(52, 84, 209, 0.18);
}

.topbar-account__trigger.is-active {
  background: rgba(52, 84, 209, 0.1);
  border-color: rgba(52, 84, 209, 0.16);
  color: var(--primary);
}

.topbar-account__trigger:focus-visible {
  outline: 2px solid rgba(52, 84, 209, 0.45);
  outline-offset: 2px;
}

.topbar-account__email {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-account__chevron {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}

.topbar-account__chevron svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform 0.15s ease;
}

.topbar-account.is-open .topbar-account__chevron svg {
  transform: rotate(180deg);
}

.topbar-account__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: 220px;
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 40px -28px rgba(15, 23, 42, 0.45);
  display: grid;
  gap: 4px;
}

.topbar-account__menu[hidden] {
  display: none;
}

.topbar-account__menu-item {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.topbar-account__menu-item:hover,
.topbar-account__menu-item.is-active {
  background: rgba(52, 84, 209, 0.1);
  color: var(--primary);
}

.topbar-account__menu-item:focus-visible {
  outline: 2px solid rgba(52, 84, 209, 0.45);
  outline-offset: 2px;
}

.topbar-account__menu-item--danger {
  color: #b42318;
}

.topbar-account__menu-item--danger:hover {
  background: rgba(180, 35, 24, 0.08);
  color: #9f1f16;
}

.topbar-account__logout-form {
  margin: 0;
}

.topbar-mobile-cta {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.topbar-app-search--mobile {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.topbar-mobile-actions--account {
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.topbar-mobile-account {
  display: grid;
  gap: 4px;
  padding: 0 12px 6px;
}

.topbar-mobile-account__label {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-mobile-link--button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.topbar-mobile-link--danger {
  color: #b42318;
}

.topbar-mobile-link--danger:hover {
  color: #9f1f16;
  background: rgba(180, 35, 24, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  padding-block: 32px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  mix-blend-mode: multiply;
}

.hero::after {
  background-image: radial-gradient(
    130% 90% at 50% 8%,
    transparent 50%,
    var(--hero-vignette) 100%
  );
  mix-blend-mode: multiply;
}

.hero .container > * {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.hero h1 {
  font-family: "Lora", serif;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero h1 {
  font-size: 37px;
  line-height: 1.06;
  text-align: center;
}

.hero-copy {
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.62;
  text-align: center;
  max-width: 335px;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 41px;
  width: 267px;
  margin: 20px auto 0;
}

.btn-primary img {
  width: 16px;
  height: 16px;
}

.social-proof {
  margin: 20px auto 0;
  width: 266px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
}

.avatars img,
.avatars video {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-left: -8px;
}

.avatars > :first-child {
  margin-left: 0;
}

.social-proof strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.social-proof p {
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}

.hero-reel {
  margin-top: 32px;
  width: 100%;
  min-width: 0;
}

.hero-reel__scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 84, 209, 0.45) rgba(66, 87, 138, 0.12);
}

.hero-reel__scroller::-webkit-scrollbar {
  height: 8px;
}

.hero-reel__scroller::-webkit-scrollbar-track {
  background: rgba(66, 87, 138, 0.12);
  border-radius: var(--radius-pill);
}

.hero-reel__scroller::-webkit-scrollbar-thumb {
  background: rgba(52, 84, 209, 0.45);
  border-radius: var(--radius-pill);
}

.hero-reel__scroller::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 84, 209, 0.65);
}

.reel-card {
  flex: 0 0 148px;
  height: 257px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: var(--shadow-2);
}

.reel-card img,
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-video {
  display: block;
}

.reel-mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.45);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(2px);
}

.reel-mute-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.reel-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.reel-icon svg {
  width: 16px;
  height: 16px;
}

.reel-icon-unmuted {
  display: none;
}

.reel-mute-btn.is-muted .reel-icon-muted {
  display: inline-flex;
}

.reel-mute-btn.is-muted .reel-icon-unmuted {
  display: none;
}

.reel-mute-btn:not(.is-muted) .reel-icon-muted {
  display: none;
}

.reel-mute-btn:not(.is-muted) .reel-icon-unmuted {
  display: inline-flex;
}

.dashboard-mobile-copy h3,
.benefits h2,
.faq h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 110%;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: var(--text-soft);
}

.dashboard-tablist {
  margin-top: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.dashboard-tab {
  flex: 0 0 min(280px, 78vw);
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 9px;
  align-content: start;
  position: relative;
}

.dashboard-tab::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: background-color 0.2s ease;
}

.dashboard-tab:hover {
  border-color: rgba(52, 84, 209, 0.35);
}

.dashboard-tab:focus-visible {
  outline: 2px solid rgba(52, 84, 209, 0.7);
  outline-offset: 2px;
}

.dashboard-tab.is-active {
  border-color: rgba(52, 84, 209, 0.46);
}

.dashboard-tab.is-active::before {
  background: rgba(52, 84, 209, 0.75);
}

.dashboard-tab-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-tab-mobile-label {
  display: none;
}

.dashboard-tab-title {
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
}

.dashboard-tab-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
}

.dashboard-tab-meta {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.dashboard-tab-meta li {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-soft);
  padding-left: 14px;
  position: relative;
}

.dashboard-tab-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(52, 84, 209, 0.72);
}

.dashboard-preview-layout {
  display: grid;
  gap: 18px;
}

.dashboard-mobile-copy {
  display: none;
}

.dashboard-browser {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px -24px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.browser-chrome {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(248, 250, 252, 0.9);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.52);
}

.browser-url {
  font-size: 12px;
  line-height: 1;
  color: var(--text-soft);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  padding: 7px 12px;
}

.dashboard-shot-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dashboard-shot-wrap--banner {
  aspect-ratio: auto;
  background: #0b0b0f;
}

.dashboard-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.dashboard-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.dashboard-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-shot--banner {
  object-fit: cover;
  object-position: center;
}

.dashboard-chip {
  display: none;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 16px -14px rgba(15, 23, 42, 0.4);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
}

.chip-remix {
  top: 9%;
  left: 5%;
}

.chip-render {
  top: 14%;
  right: 4%;
}

.chip-avatars {
  bottom: 10%;
  left: 8%;
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-panel {
    transition: none;
  }
}

@media (max-width: 767px) {
  .hero-reel {
    width: calc(100% + 16px);
    margin-right: -16px;
  }

  .hero-reel__scroller {
    scroll-padding-right: 0;
  }

  .reel-mute-btn {
    top: 12px;
    right: 12px;
  }

  .benefits-grid--mobile .card-b {
    min-height: auto;
  }

  .benefits {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .faq {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .dashboard-preview {
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .dashboard-tablist {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .dashboard-tab {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 60px;
    border-radius: 14px;
    padding: 8px 6px;
    justify-items: center;
    text-align: center;
    gap: 4px;
  }

  .dashboard-tab::before {
    left: 10px;
    right: 10px;
  }

  .dashboard-tab-title,
  .dashboard-tab-desc,
  .dashboard-tab-meta {
    display: none;
  }

  .dashboard-tab-mobile-label {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    color: var(--text-soft);
  }

  .dashboard-tab.is-active .dashboard-tab-mobile-label {
    color: var(--text);
  }

  .dashboard-preview-layout {
    margin-top: 0;
    gap: 0;
  }

  .dashboard-mobile-copy {
    display: block;
    text-align: center;
    margin-top: 32px;
  }

  .dashboard-mobile-copy h3 {
    margin: 0;
    font-size: 1.75rem;
    line-height: 110%;
    font-weight: 500;
    letter-spacing: -0.64px;
    color: var(--text-soft);
  }

  .dashboard-mobile-copy p {
    margin: 12px auto 0;
    max-width: 32ch;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
  }

  .dashboard-browser {
    margin-top: 32px;
  }

  .browser-chrome {
    height: 42px;
  }

  .dashboard-preview-layout > * {
    min-width: 0;
  }
}

.benefits h2,
.faq h2 {
  text-align: center;
  padding-bottom: 15px;
}

.section-subtitle {
  margin: 12px auto 0;
  max-width: 313px;
  text-align: center;
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-soft);
}

.benefits-grid {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.benefits-layout-desktop {
  display: none;
}

.benefit-card {
  background: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.card-a {
  min-height: 417px;
}

.card-b {
  min-height: 555px;
}

.card-c {
  min-height: 465px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
}

.benefit-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.benefit-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.benefit-signup-btn {
  margin-top: 14px;
  width: 100%;
  height: 44px;
  font-size: 14px;
}

.benefit-card ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.benefit-image {
  margin-top: 16px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-2);
  object-fit: cover;
}

.card-a .benefit-image {
  height: 170px;
}

.card-b .benefit-image {
  height: 201px;
}

.card-c .benefit-image {
  height: 216px;
}

.card-d .benefit-image {
  height: 202px;
}

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

.faq details {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  margin-top: 14px;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-right: 52px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding: 41px 0 40px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-row img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.footer-logo-row p {
  margin: 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
}

.footer-copy {
  margin: 14px 0 0;
  max-width: 326px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.62;
}

.social-links {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: var(--muted);
  display: grid;
  place-items: center;
}

.social-links img {
  width: 14px;
  height: 14px;
}

.footer-columns {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-columns h4 {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
}

.footer-columns a {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.footer-legal {
  margin-top: 28px;
  border-top: 1px solid var(--line-soft);
  padding-top: 29px;
  text-align: center;
}

.footer-legal small {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal div {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero.section {
    padding-block: clamp(32px, 5vw, 64px);
  }

  .hero h1,
  .benefits h2,
  .faq h2 {
    font-size: 56px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-reel__scroller {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 981px) {
  .topbar-desktop {
    display: flex;
  }

  .topbar-menu-btn {
    display: none;
  }

  .topbar-mobile-panel {
    display: none !important;
  }

  .topbar--dashboard .topbar-inner {
    height: 72px;
  }
}

@media (min-width: 1024px) {
  .topbar-inner {
    height: 72px;
  }

  .brand-wordmark {
    font-size: 17px;
  }

  .section {
    padding: 40px 0;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 40px;
    row-gap: 16px;
    align-items: center;
  }

  .hero h1 {
    grid-column: 1;
    font-size: 56px;
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-align: left;
    max-width: 560px;
    margin-bottom: 4px;
  }

  .hero-copy {
    grid-column: 1;
    margin: 0;
    max-width: 520px;
    font-size: 18px;
    line-height: 1.55;
    text-align: left;
    margin-bottom: 4px;
  }

  .hero .btn-primary {
    grid-column: 1;
    margin: 0;
    width: 300px;
    height: 56px;
    font-size: 16px;
    margin-top: 0;
  }

  .hero .social-proof {
    grid-column: 1;
    margin: 0;
    width: 300px;
    min-height: 64px;
    border-color: var(--line);
    background: var(--bg);
    margin-top: -6px;
  }

  .hero-reel {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 4px;
    width: calc(100% + 24px);
    margin-left: -24px;
  }

  .hero-reel__scroller {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    max-height: 440px;
    gap: 16px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .reel-card {
    height: 100%;
    min-height: 0;
    border-radius: var(--radius-md);
    aspect-ratio: 9 / 16;
  }

  .hero-reel__scroller .reel-card:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .hero-reel__scroller .reel-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-reel__scroller .reel-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .dashboard-tablist {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: hidden;
    height: 100%;
  }

  .dashboard-tab {
    min-width: 0;
    flex: 1 1 auto;
    padding: 18px 18px 16px;
    height: 100%;
  }

  .dashboard-tab-title {
    font-size: 20px;
  }

  .dashboard-tab-desc {
    font-size: 14px;
  }

  .dashboard-tab-meta {
    margin-top: 6px;
    gap: 8px;
  }

  .dashboard-tab-meta li {
    font-size: 13px;
  }

  .dashboard-preview-layout {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    align-items: stretch;
    gap: 32px;
  }

  .dashboard-shot-wrap {
    min-height: 520px;
  }

  .dashboard-shot-wrap--banner {
    min-height: 0;
  }

  .dashboard-chip {
    display: inline-flex;
  }

  .benefits h2,
  .faq h2 {
    font-size: 56px;
    line-height: 1.05;
  }

  .section-subtitle {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.55;
    margin-top: 16px;
  }

  .benefits {
    overflow-x: clip;
  }

  .benefits-grid--mobile {
    display: none;
  }

  .benefits-layout-desktop {
    margin-top: 44px;
    display: grid;
    gap: 112px;
  }

  .benefit-row {
    display: flex;
    align-items: center;
    gap: 64px;
  }

  .benefit-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .benefit-content {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .benefit-content h3 {
    margin-top: 18px;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 500;
  }

  .benefit-content p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-soft);
  }

  .benefit-content ul {
    margin-top: 14px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 8px;
  }

  .benefit-content li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.5;
  }

  .benefit-content li img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .benefit-media-frame {
    flex: 0 0 58%;
    max-width: 58%;
    background: rgba(52, 84, 209, 0.14);
    padding: 32px;
    border-radius: 28px;
  }

  .benefit-media-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line-soft);
    box-shadow: 0 10px 20px -16px rgba(0, 0, 0, 0.25);
  }

  .faq {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .faq details {
    max-width: none;
    margin-top: 16px;
    border-radius: var(--radius-md);
  }

  .faq summary {
    font-size: 20px;
    line-height: 1.35;
    padding: 24px;
    padding-right: 68px;
  }

  .faq p {
    padding: 0 24px 24px;
    font-size: 17px;
  }

  .footer-inner {
    padding: 72px 0 48px;
  }

  .footer-columns {
    margin-top: 32px;
    gap: 32px;
  }

  .footer-legal {
    margin-top: 40px;
    padding-top: 30px;
  }

  .btn,
  .reel-card,
  .benefit-card,
  .faq details,
  .social-links a {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.35);
  }

  .reel-card:hover,
  .benefit-card:hover,
  .faq details:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px -26px rgba(0, 0, 0, 0.42), 0 8px 14px -16px rgba(0, 0, 0, 0.35);
  }

  .social-links a:hover {
    transform: translateY(-1px);
    background: var(--muted);
  }

  .reel-mute-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(15, 23, 42, 0.62);
  }
}

.is-waitlist-modal-open {
  overflow: hidden;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 8, 24, 0.66);
  backdrop-filter: blur(3px);
}

.waitlist-dialog {
  width: min(100%, 430px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-2);
  padding: 24px 20px 20px;
  position: relative;
}

.waitlist-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  width: 32px;
  height: 32px;
  font-size: 22px;
  line-height: 1;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
}

.waitlist-dialog h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.waitlist-description {
  margin: 12px 0 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.waitlist-dialog label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

.waitlist-dialog input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: 12px;
  font-size: 15px;
}

.waitlist-dialog input:focus-visible {
  outline: 2px solid rgba(52, 84, 209, 0.55);
  outline-offset: 2px;
}

.waitlist-submit {
  width: 100%;
  margin-top: 12px;
}

.waitlist-submit[disabled] {
  opacity: 0.6;
}

.waitlist-feedback.is-error {
  color: #b42318;
}

.waitlist-feedback.is-success {
  color: #027a48;
}

@media (min-width: 768px) {
  .waitlist-dialog {
    padding: 28px 24px 24px;
  }
}
